-
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.
Introduced support for G6 instance types on Sagemaker Notebook Instan…
…ces and on SageMaker Studio for JupyterLab and CodeEditor applications. Mark ComponentVersion in ComponentDeploymentSpecification as required. Updated request parameters for PKCE support. add v2 smoke tests and smithy smokeTests trait for SDK testing
- Loading branch information
1 parent
2fedad7
commit 0097ac5
Showing
34 changed files
with
1,534 additions
and
255 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.325 | ||
1.11.326 |
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-greengrassv2/include/aws/greengrassv2/model/IotEndpointType.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/greengrassv2/GreengrassV2_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace GreengrassV2 | ||
{ | ||
namespace Model | ||
{ | ||
enum class IotEndpointType | ||
{ | ||
NOT_SET, | ||
fips, | ||
standard | ||
}; | ||
|
||
namespace IotEndpointTypeMapper | ||
{ | ||
AWS_GREENGRASSV2_API IotEndpointType GetIotEndpointTypeForName(const Aws::String& name); | ||
|
||
AWS_GREENGRASSV2_API Aws::String GetNameForIotEndpointType(IotEndpointType value); | ||
} // namespace IotEndpointTypeMapper | ||
} // namespace Model | ||
} // namespace GreengrassV2 | ||
} // 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
31 changes: 31 additions & 0 deletions
31
generated/src/aws-cpp-sdk-greengrassv2/include/aws/greengrassv2/model/S3EndpointType.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/greengrassv2/GreengrassV2_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace GreengrassV2 | ||
{ | ||
namespace Model | ||
{ | ||
enum class S3EndpointType | ||
{ | ||
NOT_SET, | ||
REGIONAL, | ||
GLOBAL | ||
}; | ||
|
||
namespace S3EndpointTypeMapper | ||
{ | ||
AWS_GREENGRASSV2_API S3EndpointType GetS3EndpointTypeForName(const Aws::String& name); | ||
|
||
AWS_GREENGRASSV2_API Aws::String GetNameForS3EndpointType(S3EndpointType value); | ||
} // namespace S3EndpointTypeMapper | ||
} // namespace Model | ||
} // namespace GreengrassV2 | ||
} // namespace Aws |
Oops, something went wrong.