-
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.
This release introduces support for Source Accounts to define which M…
…etrics and Logs to share with the Monitoring Account SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database. Releasing minor endpoint updates. Releasing minor endpoint updates. Add ability to manually and automatically roll back a pipeline stage to a previously successful execution. This release adds support for specifying if Answering Machine should wait for prompt sound. Add LimitExceededException to SignUp errors
- Loading branch information
1 parent
581789a
commit 5291172
Showing
107 changed files
with
4,502 additions
and
969 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.315 | ||
1.11.316 |
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
31 changes: 31 additions & 0 deletions
31
generated/src/aws-cpp-sdk-codepipeline/include/aws/codepipeline/model/ExecutionType.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,31 @@ | ||
/** | ||
* 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> | ||
|
||
namespace Aws | ||
{ | ||
namespace CodePipeline | ||
{ | ||
namespace Model | ||
{ | ||
enum class ExecutionType | ||
{ | ||
NOT_SET, | ||
STANDARD, | ||
ROLLBACK | ||
}; | ||
|
||
namespace ExecutionTypeMapper | ||
{ | ||
AWS_CODEPIPELINE_API ExecutionType GetExecutionTypeForName(const Aws::String& name); | ||
|
||
AWS_CODEPIPELINE_API Aws::String GetNameForExecutionType(ExecutionType value); | ||
} // namespace ExecutionTypeMapper | ||
} // namespace Model | ||
} // namespace CodePipeline | ||
} // namespace Aws |
85 changes: 85 additions & 0 deletions
85
generated/src/aws-cpp-sdk-codepipeline/include/aws/codepipeline/model/FailureConditions.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,85 @@ | ||
/** | ||
* 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/codepipeline/model/Result.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
class JsonView; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace CodePipeline | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
* <p>The configuration that specifies the result, such as rollback, to occur upon | ||
* stage failure. </p><p><h3>See Also:</h3> <a | ||
* href="http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/FailureConditions">AWS | ||
* API Reference</a></p> | ||
*/ | ||
class FailureConditions | ||
{ | ||
public: | ||
AWS_CODEPIPELINE_API FailureConditions(); | ||
AWS_CODEPIPELINE_API FailureConditions(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CODEPIPELINE_API FailureConditions& operator=(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CODEPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const; | ||
|
||
|
||
/** | ||
* <p>The specified result for when the failure conditions are met, such as rolling | ||
* back the stage.</p> | ||
*/ | ||
inline const Result& GetResult() const{ return m_result; } | ||
|
||
/** | ||
* <p>The specified result for when the failure conditions are met, such as rolling | ||
* back the stage.</p> | ||
*/ | ||
inline bool ResultHasBeenSet() const { return m_resultHasBeenSet; } | ||
|
||
/** | ||
* <p>The specified result for when the failure conditions are met, such as rolling | ||
* back the stage.</p> | ||
*/ | ||
inline void SetResult(const Result& value) { m_resultHasBeenSet = true; m_result = value; } | ||
|
||
/** | ||
* <p>The specified result for when the failure conditions are met, such as rolling | ||
* back the stage.</p> | ||
*/ | ||
inline void SetResult(Result&& value) { m_resultHasBeenSet = true; m_result = std::move(value); } | ||
|
||
/** | ||
* <p>The specified result for when the failure conditions are met, such as rolling | ||
* back the stage.</p> | ||
*/ | ||
inline FailureConditions& WithResult(const Result& value) { SetResult(value); return *this;} | ||
|
||
/** | ||
* <p>The specified result for when the failure conditions are met, such as rolling | ||
* back the stage.</p> | ||
*/ | ||
inline FailureConditions& WithResult(Result&& value) { SetResult(std::move(value)); return *this;} | ||
|
||
private: | ||
|
||
Result m_result; | ||
bool m_resultHasBeenSet = 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
Oops, something went wrong.