-
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.
Adds observation and analyzer support to the GetDataQualityResult and…
… BatchGetDataQualityResult APIs. This release adds a new capability, zonal autoshift. You can configure zonal autoshift so that AWS shifts traffic for a resource away from an Availability Zone, on your behalf, when AWS determines that there is an issue that could potentially affect customers in the Availability Zone. This release adds support for 1/ Code Editor, based on Code-OSS, Visual Studio Code Open Source, a new fully managed IDE option in SageMaker Studio 2/ JupyterLab, a new fully managed JupyterLab IDE experience in SageMaker Studio
- Loading branch information
1 parent
a6f1ce8
commit f5fdbfa
Showing
148 changed files
with
14,338 additions
and
814 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.214 | ||
1.11.215 |
263 changes: 212 additions & 51 deletions
263
generated/src/aws-cpp-sdk-arc-zonal-shift/include/aws/arc-zonal-shift/ARCZonalShiftClient.h
Large diffs are not rendered by default.
Oops, something went wrong.
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
...rc/aws-cpp-sdk-arc-zonal-shift/include/aws/arc-zonal-shift/model/AutoshiftAppliedStatus.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/arc-zonal-shift/ARCZonalShift_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace ARCZonalShift | ||
{ | ||
namespace Model | ||
{ | ||
enum class AutoshiftAppliedStatus | ||
{ | ||
NOT_SET, | ||
APPLIED, | ||
NOT_APPLIED | ||
}; | ||
|
||
namespace AutoshiftAppliedStatusMapper | ||
{ | ||
AWS_ARCZONALSHIFT_API AutoshiftAppliedStatus GetAutoshiftAppliedStatusForName(const Aws::String& name); | ||
|
||
AWS_ARCZONALSHIFT_API Aws::String GetNameForAutoshiftAppliedStatus(AutoshiftAppliedStatus value); | ||
} // namespace AutoshiftAppliedStatusMapper | ||
} // namespace Model | ||
} // namespace ARCZonalShift | ||
} // namespace Aws |
31 changes: 31 additions & 0 deletions
31
.../aws-cpp-sdk-arc-zonal-shift/include/aws/arc-zonal-shift/model/AutoshiftExecutionStatus.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/arc-zonal-shift/ARCZonalShift_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace ARCZonalShift | ||
{ | ||
namespace Model | ||
{ | ||
enum class AutoshiftExecutionStatus | ||
{ | ||
NOT_SET, | ||
ACTIVE, | ||
COMPLETED | ||
}; | ||
|
||
namespace AutoshiftExecutionStatusMapper | ||
{ | ||
AWS_ARCZONALSHIFT_API AutoshiftExecutionStatus GetAutoshiftExecutionStatusForName(const Aws::String& name); | ||
|
||
AWS_ARCZONALSHIFT_API Aws::String GetNameForAutoshiftExecutionStatus(AutoshiftExecutionStatus value); | ||
} // namespace AutoshiftExecutionStatusMapper | ||
} // namespace Model | ||
} // namespace ARCZonalShift | ||
} // namespace Aws |
Oops, something went wrong.