-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add environment variables to codepipeline action declaration.
This release adds the ability for outbound email sent with SES to preserve emails to a Mail Manager archive. Documentation updates for Amazon Lightsail. Adds support for larger property maps for tracking and geofence positions changes. It increases the maximum number of items from 3 to 4, and the maximum value length from 40 to 150. This is a documentation only release for Amazon ECS that supports the CPU task limit increase. Adds r8g instance type support to SageMaker Realtime Endpoints This release adds additional metadata fields in Mail Manager archive searches to show email source and details about emails that were archived when being sent with SES. This release introduces Network Firewall's Automated Domain List feature. New APIs include UpdateFirewallAnalysisSettings, StartAnalysisReport, GetAnalysisReportResults, and ListAnalysisReports. These allow customers to enable analysis on firewalls to identify and report frequently accessed domain.
- Loading branch information
1 parent
cbc4a4d
commit 6c88b97
Showing
142 changed files
with
5,436 additions
and
1,319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.11.509 | ||
1.11.510 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
generated/src/aws-cpp-sdk-codepipeline/include/aws/codepipeline/model/EnvironmentVariable.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/codepipeline/CodePipeline_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
class JsonView; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace CodePipeline | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
* <p>The environment variables for the action.</p><p><h3>See Also:</h3> <a | ||
* href="http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/EnvironmentVariable">AWS | ||
* API Reference</a></p> | ||
*/ | ||
class EnvironmentVariable | ||
{ | ||
public: | ||
AWS_CODEPIPELINE_API EnvironmentVariable(); | ||
AWS_CODEPIPELINE_API EnvironmentVariable(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CODEPIPELINE_API EnvironmentVariable& operator=(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const; | ||
|
||
|
||
///@{ | ||
/** | ||
* <p>The environment variable name in the key-value pair.</p> | ||
*/ | ||
inline const Aws::String& GetName() const{ return m_name; } | ||
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } | ||
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } | ||
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } | ||
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } | ||
inline EnvironmentVariable& WithName(const Aws::String& value) { SetName(value); return *this;} | ||
inline EnvironmentVariable& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} | ||
inline EnvironmentVariable& WithName(const char* value) { SetName(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p>The environment variable value in the key-value pair.</p> | ||
*/ | ||
inline const Aws::String& GetValue() const{ return m_value; } | ||
inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } | ||
inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } | ||
inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } | ||
inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } | ||
inline EnvironmentVariable& WithValue(const Aws::String& value) { SetValue(value); return *this;} | ||
inline EnvironmentVariable& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} | ||
inline EnvironmentVariable& WithValue(const char* value) { SetValue(value); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::String m_name; | ||
bool m_nameHasBeenSet = false; | ||
|
||
Aws::String m_value; | ||
bool m_valueHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace CodePipeline | ||
} // namespace Aws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.