diff --git a/VERSION b/VERSION index 678e81fee2c..af8e25216d5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.11.470 \ No newline at end of file +1.11.471 \ No newline at end of file diff --git a/generated/smoke-tests/directory-service-data/DirectoryServiceDataSmokeTests.cpp b/generated/smoke-tests/directory-service-data/DirectoryServiceDataSmokeTests.cpp index e0a41d24c9e..92b3838f598 100644 --- a/generated/smoke-tests/directory-service-data/DirectoryServiceDataSmokeTests.cpp +++ b/generated/smoke-tests/directory-service-data/DirectoryServiceDataSmokeTests.cpp @@ -32,7 +32,7 @@ class DirectoryServiceDataSmokeTestSuite : public Aws::Testing::AwsCppSdkGTestSu static const char ALLOCATION_TAG[]; }; const char DirectoryServiceDataSmokeTestSuite::ALLOCATION_TAG[] = "DirectoryServiceDataSmokeTest"; -TEST_F(DirectoryServiceDataSmokeTestSuite, DescribeUserFailure ) +TEST_F(DirectoryServiceDataSmokeTestSuite, DescribeGroupFailure ) { Aws::DirectoryServiceData::DirectoryServiceDataClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -41,13 +41,13 @@ TEST_F(DirectoryServiceDataSmokeTestSuite, DescribeUserFailure ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - DescribeUserRequest input; + DescribeGroupRequest input; input.SetDirectoryId("d-1111111111"); - input.SetSAMAccountName("test-user"); - auto outcome = clientSp->DescribeUser(input); + input.SetSAMAccountName("test-group"); + auto outcome = clientSp->DescribeGroup(input); EXPECT_FALSE( outcome.IsSuccess()); } -TEST_F(DirectoryServiceDataSmokeTestSuite, DescribeGroupFailure ) +TEST_F(DirectoryServiceDataSmokeTestSuite, DescribeUserFailure ) { Aws::DirectoryServiceData::DirectoryServiceDataClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -56,10 +56,10 @@ TEST_F(DirectoryServiceDataSmokeTestSuite, DescribeGroupFailure ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - DescribeGroupRequest input; + DescribeUserRequest input; input.SetDirectoryId("d-1111111111"); - input.SetSAMAccountName("test-group"); - auto outcome = clientSp->DescribeGroup(input); + input.SetSAMAccountName("test-user"); + auto outcome = clientSp->DescribeUser(input); EXPECT_FALSE( outcome.IsSuccess()); } } diff --git a/generated/smoke-tests/elasticmapreduce/EMRSmokeTests.cpp b/generated/smoke-tests/elasticmapreduce/EMRSmokeTests.cpp index efb6b6a07be..44bf3dc7d5a 100644 --- a/generated/smoke-tests/elasticmapreduce/EMRSmokeTests.cpp +++ b/generated/smoke-tests/elasticmapreduce/EMRSmokeTests.cpp @@ -18,7 +18,6 @@ #include #include #include -#include namespace EMRSmokeTest{ using namespace Aws::Auth; @@ -32,7 +31,7 @@ class EMRSmokeTestSuite : public Aws::Testing::AwsCppSdkGTestSuite { static const char ALLOCATION_TAG[]; }; const char EMRSmokeTestSuite::ALLOCATION_TAG[] = "EMRSmokeTest"; -TEST_F(EMRSmokeTestSuite, ListClustersSuccess ) +TEST_F(EMRSmokeTestSuite, DescribeClusterFailure ) { Aws::EMR::EMRClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -41,11 +40,12 @@ TEST_F(EMRSmokeTestSuite, ListClustersSuccess ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - ListClustersRequest input; - auto outcome = clientSp->ListClusters(input); - EXPECT_TRUE( outcome.IsSuccess()); + DescribeClusterRequest input; + input.SetClusterId("fake_cluster"); + auto outcome = clientSp->DescribeCluster(input); + EXPECT_FALSE( outcome.IsSuccess()); } -TEST_F(EMRSmokeTestSuite, DescribeClusterFailure ) +TEST_F(EMRSmokeTestSuite, ListClustersSuccess ) { Aws::EMR::EMRClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -54,9 +54,8 @@ TEST_F(EMRSmokeTestSuite, DescribeClusterFailure ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - DescribeClusterRequest input; - input.SetClusterId("fake_cluster"); - auto outcome = clientSp->DescribeCluster(input); - EXPECT_FALSE( outcome.IsSuccess()); + ListClustersRequest input; + auto outcome = clientSp->ListClusters(input); + EXPECT_TRUE( outcome.IsSuccess()); } } diff --git a/generated/smoke-tests/eventbridge/EventBridgeSmokeTests.cpp b/generated/smoke-tests/eventbridge/EventBridgeSmokeTests.cpp index 719b51b1723..fa7bae0a813 100644 --- a/generated/smoke-tests/eventbridge/EventBridgeSmokeTests.cpp +++ b/generated/smoke-tests/eventbridge/EventBridgeSmokeTests.cpp @@ -18,7 +18,6 @@ #include #include #include -#include namespace EventBridgeSmokeTest{ using namespace Aws::Auth; @@ -32,7 +31,7 @@ class EventBridgeSmokeTestSuite : public Aws::Testing::AwsCppSdkGTestSuite { static const char ALLOCATION_TAG[]; }; const char EventBridgeSmokeTestSuite::ALLOCATION_TAG[] = "EventBridgeSmokeTest"; -TEST_F(EventBridgeSmokeTestSuite, ListRulesSuccess ) +TEST_F(EventBridgeSmokeTestSuite, DescribeRuleFailure ) { Aws::EventBridge::EventBridgeClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -41,11 +40,12 @@ TEST_F(EventBridgeSmokeTestSuite, ListRulesSuccess ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - ListRulesRequest input; - auto outcome = clientSp->ListRules(input); - EXPECT_TRUE( outcome.IsSuccess()); + DescribeRuleRequest input; + input.SetName("fake-rule"); + auto outcome = clientSp->DescribeRule(input); + EXPECT_FALSE( outcome.IsSuccess()); } -TEST_F(EventBridgeSmokeTestSuite, DescribeRuleFailure ) +TEST_F(EventBridgeSmokeTestSuite, ListRulesSuccess ) { Aws::EventBridge::EventBridgeClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -54,9 +54,8 @@ TEST_F(EventBridgeSmokeTestSuite, DescribeRuleFailure ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - DescribeRuleRequest input; - input.SetName("fake-rule"); - auto outcome = clientSp->DescribeRule(input); - EXPECT_FALSE( outcome.IsSuccess()); + ListRulesRequest input; + auto outcome = clientSp->ListRules(input); + EXPECT_TRUE( outcome.IsSuccess()); } } diff --git a/generated/smoke-tests/route53/Route53SmokeTests.cpp b/generated/smoke-tests/route53/Route53SmokeTests.cpp index 4ace8553a3a..1bdd4ecb39c 100644 --- a/generated/smoke-tests/route53/Route53SmokeTests.cpp +++ b/generated/smoke-tests/route53/Route53SmokeTests.cpp @@ -18,6 +18,7 @@ #include #include #include +#include namespace Route53SmokeTest{ using namespace Aws::Auth; @@ -31,7 +32,7 @@ class Route53SmokeTestSuite : public Aws::Testing::AwsCppSdkGTestSuite { static const char ALLOCATION_TAG[]; }; const char Route53SmokeTestSuite::ALLOCATION_TAG[] = "Route53SmokeTest"; -TEST_F(Route53SmokeTestSuite, GetHostedZoneFailure ) +TEST_F(Route53SmokeTestSuite, ListHostedZonesSuccess ) { Aws::Route53::Route53ClientConfiguration clientConfiguration; clientConfiguration.region = "us-east-1"; @@ -40,12 +41,11 @@ TEST_F(Route53SmokeTestSuite, GetHostedZoneFailure ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - GetHostedZoneRequest input; - input.SetId("fake-zone"); - auto outcome = clientSp->GetHostedZone(input); - EXPECT_FALSE( outcome.IsSuccess()); + ListHostedZonesRequest input; + auto outcome = clientSp->ListHostedZones(input); + EXPECT_TRUE( outcome.IsSuccess()); } -TEST_F(Route53SmokeTestSuite, ListHostedZonesSuccess ) +TEST_F(Route53SmokeTestSuite, GetHostedZoneFailure ) { Aws::Route53::Route53ClientConfiguration clientConfiguration; clientConfiguration.region = "us-east-1"; @@ -54,8 +54,9 @@ TEST_F(Route53SmokeTestSuite, ListHostedZonesSuccess ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - ListHostedZonesRequest input; - auto outcome = clientSp->ListHostedZones(input); - EXPECT_TRUE( outcome.IsSuccess()); + GetHostedZoneRequest input; + input.SetId("fake-zone"); + auto outcome = clientSp->GetHostedZone(input); + EXPECT_FALSE( outcome.IsSuccess()); } } diff --git a/generated/smoke-tests/secretsmanager/SecretsManagerSmokeTests.cpp b/generated/smoke-tests/secretsmanager/SecretsManagerSmokeTests.cpp index eaeee0e36ce..109df5d055f 100644 --- a/generated/smoke-tests/secretsmanager/SecretsManagerSmokeTests.cpp +++ b/generated/smoke-tests/secretsmanager/SecretsManagerSmokeTests.cpp @@ -18,7 +18,6 @@ #include #include #include -#include namespace SecretsManagerSmokeTest{ using namespace Aws::Auth; @@ -32,7 +31,7 @@ class SecretsManagerSmokeTestSuite : public Aws::Testing::AwsCppSdkGTestSuite { static const char ALLOCATION_TAG[]; }; const char SecretsManagerSmokeTestSuite::ALLOCATION_TAG[] = "SecretsManagerSmokeTest"; -TEST_F(SecretsManagerSmokeTestSuite, ListSecretsSuccess ) +TEST_F(SecretsManagerSmokeTestSuite, DescribeSecretFailure ) { Aws::SecretsManager::SecretsManagerClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -41,11 +40,12 @@ TEST_F(SecretsManagerSmokeTestSuite, ListSecretsSuccess ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - ListSecretsRequest input; - auto outcome = clientSp->ListSecrets(input); - EXPECT_TRUE( outcome.IsSuccess()); + DescribeSecretRequest input; + input.SetSecretId("fake-secret-id"); + auto outcome = clientSp->DescribeSecret(input); + EXPECT_FALSE( outcome.IsSuccess()); } -TEST_F(SecretsManagerSmokeTestSuite, DescribeSecretFailure ) +TEST_F(SecretsManagerSmokeTestSuite, ListSecretsSuccess ) { Aws::SecretsManager::SecretsManagerClientConfiguration clientConfiguration; clientConfiguration.region = "us-west-2"; @@ -54,9 +54,8 @@ TEST_F(SecretsManagerSmokeTestSuite, DescribeSecretFailure ) auto clientSp = Aws::MakeShared(ALLOCATION_TAG, clientConfiguration); //populate input params - DescribeSecretRequest input; - input.SetSecretId("fake-secret-id"); - auto outcome = clientSp->DescribeSecret(input); - EXPECT_FALSE( outcome.IsSuccess()); + ListSecretsRequest input; + auto outcome = clientSp->ListSecrets(input); + EXPECT_TRUE( outcome.IsSuccess()); } } diff --git a/generated/src/aws-cpp-sdk-appstream/include/aws/appstream/model/PlatformType.h b/generated/src/aws-cpp-sdk-appstream/include/aws/appstream/model/PlatformType.h index 02b2bf2d34c..586f9d2cdc0 100644 --- a/generated/src/aws-cpp-sdk-appstream/include/aws/appstream/model/PlatformType.h +++ b/generated/src/aws-cpp-sdk-appstream/include/aws/appstream/model/PlatformType.h @@ -21,7 +21,8 @@ namespace Model WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, AMAZON_LINUX2, - RHEL8 + RHEL8, + ROCKY_LINUX8 }; namespace PlatformTypeMapper diff --git a/generated/src/aws-cpp-sdk-appstream/source/model/PlatformType.cpp b/generated/src/aws-cpp-sdk-appstream/source/model/PlatformType.cpp index 807135646da..123d907628b 100644 --- a/generated/src/aws-cpp-sdk-appstream/source/model/PlatformType.cpp +++ b/generated/src/aws-cpp-sdk-appstream/source/model/PlatformType.cpp @@ -26,6 +26,7 @@ namespace Aws static const int WINDOWS_SERVER_2022_HASH = HashingUtils::HashString("WINDOWS_SERVER_2022"); static const int AMAZON_LINUX2_HASH = HashingUtils::HashString("AMAZON_LINUX2"); static const int RHEL8_HASH = HashingUtils::HashString("RHEL8"); + static const int ROCKY_LINUX8_HASH = HashingUtils::HashString("ROCKY_LINUX8"); PlatformType GetPlatformTypeForName(const Aws::String& name) @@ -55,6 +56,10 @@ namespace Aws { return PlatformType::RHEL8; } + else if (hashCode == ROCKY_LINUX8_HASH) + { + return PlatformType::ROCKY_LINUX8; + } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { @@ -83,6 +88,8 @@ namespace Aws return "AMAZON_LINUX2"; case PlatformType::RHEL8: return "RHEL8"; + case PlatformType::ROCKY_LINUX8: + return "ROCKY_LINUX8"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) diff --git a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/BurninDestinationSettings.h b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/BurninDestinationSettings.h index a9852d0346f..b3b64f85423 100644 --- a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/BurninDestinationSettings.h +++ b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/BurninDestinationSettings.h @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -305,6 +306,22 @@ When you do, you must also separately inline BurninDestinationSettings& WithOutlineSize(int value) { SetOutlineSize(value); return *this;} ///@} + ///@{ + /** + * Optionally remove any tts:rubyReserve attributes present in your input, that do + * not have a tts:ruby attribute in the same element, from your output. Use if your + * vertical Japanese output captions have alignment issues. To remove ruby reserve + * attributes when present: Choose Enabled. To not remove any ruby reserve + * attributes: Keep the default value, Disabled. + */ + inline const RemoveRubyReserveAttributes& GetRemoveRubyReserveAttributes() const{ return m_removeRubyReserveAttributes; } + inline bool RemoveRubyReserveAttributesHasBeenSet() const { return m_removeRubyReserveAttributesHasBeenSet; } + inline void SetRemoveRubyReserveAttributes(const RemoveRubyReserveAttributes& value) { m_removeRubyReserveAttributesHasBeenSet = true; m_removeRubyReserveAttributes = value; } + inline void SetRemoveRubyReserveAttributes(RemoveRubyReserveAttributes&& value) { m_removeRubyReserveAttributesHasBeenSet = true; m_removeRubyReserveAttributes = std::move(value); } + inline BurninDestinationSettings& WithRemoveRubyReserveAttributes(const RemoveRubyReserveAttributes& value) { SetRemoveRubyReserveAttributes(value); return *this;} + inline BurninDestinationSettings& WithRemoveRubyReserveAttributes(RemoveRubyReserveAttributes&& value) { SetRemoveRubyReserveAttributes(std::move(value)); return *this;} + ///@} + ///@{ /** * Specify the color of the shadow cast by the captions. Leave Shadow color blank @@ -471,6 +488,9 @@ When you do, you must also separately int m_outlineSize; bool m_outlineSizeHasBeenSet = false; + RemoveRubyReserveAttributes m_removeRubyReserveAttributes; + bool m_removeRubyReserveAttributesHasBeenSet = false; + BurninSubtitleShadowColor m_shadowColor; bool m_shadowColorHasBeenSet = false; diff --git a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobSettings.h b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobSettings.h index 18584ea05e2..d5f4f883e4a 100644 --- a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobSettings.h +++ b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobSettings.h @@ -124,7 +124,7 @@ namespace Model /** * Specify the input that MediaConvert references for your default output settings. * MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio - * for all outputs that you don't manually specify different output settings for. + * for all outputs that you don't manually specify different output settings for. * Enabling this setting will disable "Follow source" for all other inputs. If * MediaConvert cannot follow your source, for example if you specify an audio-only * input, MediaConvert uses the first followable input instead. In your JSON job diff --git a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobTemplateSettings.h b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobTemplateSettings.h index a5fda3da916..922b20ca0af 100644 --- a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobTemplateSettings.h +++ b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/JobTemplateSettings.h @@ -124,7 +124,7 @@ namespace Model /** * Specify the input that MediaConvert references for your default output settings. * MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio - * for all outputs that you don't manually specify different output settings for. + * for all outputs that you don't manually specify different output settings for. * Enabling this setting will disable "Follow source" for all other inputs. If * MediaConvert cannot follow your source, for example if you specify an audio-only * input, MediaConvert uses the first followable input instead. In your JSON job diff --git a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/RemoveRubyReserveAttributes.h b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/RemoveRubyReserveAttributes.h new file mode 100644 index 00000000000..03eaa140a78 --- /dev/null +++ b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/RemoveRubyReserveAttributes.h @@ -0,0 +1,31 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace MediaConvert +{ +namespace Model +{ + enum class RemoveRubyReserveAttributes + { + NOT_SET, + DISABLED, + ENABLED + }; + +namespace RemoveRubyReserveAttributesMapper +{ +AWS_MEDIACONVERT_API RemoveRubyReserveAttributes GetRemoveRubyReserveAttributesForName(const Aws::String& name); + +AWS_MEDIACONVERT_API Aws::String GetNameForRemoveRubyReserveAttributes(RemoveRubyReserveAttributes value); +} // namespace RemoveRubyReserveAttributesMapper +} // namespace Model +} // namespace MediaConvert +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/TimecodeTrack.h b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/TimecodeTrack.h new file mode 100644 index 00000000000..af358d03252 --- /dev/null +++ b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/TimecodeTrack.h @@ -0,0 +1,31 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace MediaConvert +{ +namespace Model +{ + enum class TimecodeTrack + { + NOT_SET, + DISABLED, + ENABLED + }; + +namespace TimecodeTrackMapper +{ +AWS_MEDIACONVERT_API TimecodeTrack GetTimecodeTrackForName(const Aws::String& name); + +AWS_MEDIACONVERT_API Aws::String GetNameForTimecodeTrack(TimecodeTrack value); +} // namespace TimecodeTrackMapper +} // namespace Model +} // namespace MediaConvert +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/VideoDescription.h b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/VideoDescription.h index aa7d6e62683..9169e118ba4 100644 --- a/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/VideoDescription.h +++ b/generated/src/aws-cpp-sdk-mediaconvert/include/aws/mediaconvert/model/VideoDescription.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include @@ -129,7 +130,7 @@ namespace Model * Applies only to 29.97 fps outputs. When this feature is enabled, the service * will use drop-frame timecode on outputs. If it is not possible to use drop-frame * timecode, the system will fall back to non-drop-frame. This setting is enabled - * by default when Timecode insertion is enabled. + * by default when Timecode insertion or Timecode track is enabled. */ inline const DropFrameTimecode& GetDropFrameTimecode() const{ return m_dropFrameTimecode; } inline bool DropFrameTimecodeHasBeenSet() const { return m_dropFrameTimecodeHasBeenSet; } @@ -244,6 +245,22 @@ namespace Model inline VideoDescription& WithTimecodeInsertion(VideoTimecodeInsertion&& value) { SetTimecodeInsertion(std::move(value)); return *this;} ///@} + ///@{ + /** + * To include a timecode track in your MP4 output: Choose Enabled. MediaConvert + * writes the timecode track in the Null Media Header box (NMHD), without any + * timecode text formatting information. You can also specify dropframe or + * non-dropframe timecode under the Drop Frame Timecode setting. To not include a + * timecode track: Keep the default value, Disabled. + */ + inline const TimecodeTrack& GetTimecodeTrack() const{ return m_timecodeTrack; } + inline bool TimecodeTrackHasBeenSet() const { return m_timecodeTrackHasBeenSet; } + inline void SetTimecodeTrack(const TimecodeTrack& value) { m_timecodeTrackHasBeenSet = true; m_timecodeTrack = value; } + inline void SetTimecodeTrack(TimecodeTrack&& value) { m_timecodeTrackHasBeenSet = true; m_timecodeTrack = std::move(value); } + inline VideoDescription& WithTimecodeTrack(const TimecodeTrack& value) { SetTimecodeTrack(value); return *this;} + inline VideoDescription& WithTimecodeTrack(TimecodeTrack&& value) { SetTimecodeTrack(std::move(value)); return *this;} + ///@} + ///@{ /** * Find additional transcoding features under Preprocessors. Enable the features at @@ -311,6 +328,9 @@ namespace Model VideoTimecodeInsertion m_timecodeInsertion; bool m_timecodeInsertionHasBeenSet = false; + TimecodeTrack m_timecodeTrack; + bool m_timecodeTrackHasBeenSet = false; + VideoPreprocessor m_videoPreprocessors; bool m_videoPreprocessorsHasBeenSet = false; diff --git a/generated/src/aws-cpp-sdk-mediaconvert/source/model/BurninDestinationSettings.cpp b/generated/src/aws-cpp-sdk-mediaconvert/source/model/BurninDestinationSettings.cpp index 95de6ed522c..a20b01180ce 100644 --- a/generated/src/aws-cpp-sdk-mediaconvert/source/model/BurninDestinationSettings.cpp +++ b/generated/src/aws-cpp-sdk-mediaconvert/source/model/BurninDestinationSettings.cpp @@ -48,6 +48,8 @@ BurninDestinationSettings::BurninDestinationSettings() : m_outlineColorHasBeenSet(false), m_outlineSize(0), m_outlineSizeHasBeenSet(false), + m_removeRubyReserveAttributes(RemoveRubyReserveAttributes::NOT_SET), + m_removeRubyReserveAttributesHasBeenSet(false), m_shadowColor(BurninSubtitleShadowColor::NOT_SET), m_shadowColorHasBeenSet(false), m_shadowOpacity(0), @@ -194,6 +196,13 @@ BurninDestinationSettings& BurninDestinationSettings::operator =(JsonView jsonVa m_outlineSizeHasBeenSet = true; } + if(jsonValue.ValueExists("removeRubyReserveAttributes")) + { + m_removeRubyReserveAttributes = RemoveRubyReserveAttributesMapper::GetRemoveRubyReserveAttributesForName(jsonValue.GetString("removeRubyReserveAttributes")); + + m_removeRubyReserveAttributesHasBeenSet = true; + } + if(jsonValue.ValueExists("shadowColor")) { m_shadowColor = BurninSubtitleShadowColorMapper::GetBurninSubtitleShadowColorForName(jsonValue.GetString("shadowColor")); @@ -352,6 +361,11 @@ JsonValue BurninDestinationSettings::Jsonize() const } + if(m_removeRubyReserveAttributesHasBeenSet) + { + payload.WithString("removeRubyReserveAttributes", RemoveRubyReserveAttributesMapper::GetNameForRemoveRubyReserveAttributes(m_removeRubyReserveAttributes)); + } + if(m_shadowColorHasBeenSet) { payload.WithString("shadowColor", BurninSubtitleShadowColorMapper::GetNameForBurninSubtitleShadowColor(m_shadowColor)); diff --git a/generated/src/aws-cpp-sdk-mediaconvert/source/model/RemoveRubyReserveAttributes.cpp b/generated/src/aws-cpp-sdk-mediaconvert/source/model/RemoveRubyReserveAttributes.cpp new file mode 100644 index 00000000000..76861879431 --- /dev/null +++ b/generated/src/aws-cpp-sdk-mediaconvert/source/model/RemoveRubyReserveAttributes.cpp @@ -0,0 +1,72 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include + +using namespace Aws::Utils; + + +namespace Aws +{ + namespace MediaConvert + { + namespace Model + { + namespace RemoveRubyReserveAttributesMapper + { + + static const int DISABLED_HASH = HashingUtils::HashString("DISABLED"); + static const int ENABLED_HASH = HashingUtils::HashString("ENABLED"); + + + RemoveRubyReserveAttributes GetRemoveRubyReserveAttributesForName(const Aws::String& name) + { + int hashCode = HashingUtils::HashString(name.c_str()); + if (hashCode == DISABLED_HASH) + { + return RemoveRubyReserveAttributes::DISABLED; + } + else if (hashCode == ENABLED_HASH) + { + return RemoveRubyReserveAttributes::ENABLED; + } + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + overflowContainer->StoreOverflow(hashCode, name); + return static_cast(hashCode); + } + + return RemoveRubyReserveAttributes::NOT_SET; + } + + Aws::String GetNameForRemoveRubyReserveAttributes(RemoveRubyReserveAttributes enumValue) + { + switch(enumValue) + { + case RemoveRubyReserveAttributes::NOT_SET: + return {}; + case RemoveRubyReserveAttributes::DISABLED: + return "DISABLED"; + case RemoveRubyReserveAttributes::ENABLED: + return "ENABLED"; + default: + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + return overflowContainer->RetrieveOverflow(static_cast(enumValue)); + } + + return {}; + } + } + + } // namespace RemoveRubyReserveAttributesMapper + } // namespace Model + } // namespace MediaConvert +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-mediaconvert/source/model/TimecodeTrack.cpp b/generated/src/aws-cpp-sdk-mediaconvert/source/model/TimecodeTrack.cpp new file mode 100644 index 00000000000..153337aa94c --- /dev/null +++ b/generated/src/aws-cpp-sdk-mediaconvert/source/model/TimecodeTrack.cpp @@ -0,0 +1,72 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include + +using namespace Aws::Utils; + + +namespace Aws +{ + namespace MediaConvert + { + namespace Model + { + namespace TimecodeTrackMapper + { + + static const int DISABLED_HASH = HashingUtils::HashString("DISABLED"); + static const int ENABLED_HASH = HashingUtils::HashString("ENABLED"); + + + TimecodeTrack GetTimecodeTrackForName(const Aws::String& name) + { + int hashCode = HashingUtils::HashString(name.c_str()); + if (hashCode == DISABLED_HASH) + { + return TimecodeTrack::DISABLED; + } + else if (hashCode == ENABLED_HASH) + { + return TimecodeTrack::ENABLED; + } + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + overflowContainer->StoreOverflow(hashCode, name); + return static_cast(hashCode); + } + + return TimecodeTrack::NOT_SET; + } + + Aws::String GetNameForTimecodeTrack(TimecodeTrack enumValue) + { + switch(enumValue) + { + case TimecodeTrack::NOT_SET: + return {}; + case TimecodeTrack::DISABLED: + return "DISABLED"; + case TimecodeTrack::ENABLED: + return "ENABLED"; + default: + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + return overflowContainer->RetrieveOverflow(static_cast(enumValue)); + } + + return {}; + } + } + + } // namespace TimecodeTrackMapper + } // namespace Model + } // namespace MediaConvert +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-mediaconvert/source/model/VideoDescription.cpp b/generated/src/aws-cpp-sdk-mediaconvert/source/model/VideoDescription.cpp index 71cdd94ccee..e64eb9c5082 100644 --- a/generated/src/aws-cpp-sdk-mediaconvert/source/model/VideoDescription.cpp +++ b/generated/src/aws-cpp-sdk-mediaconvert/source/model/VideoDescription.cpp @@ -42,6 +42,8 @@ VideoDescription::VideoDescription() : m_sharpnessHasBeenSet(false), m_timecodeInsertion(VideoTimecodeInsertion::NOT_SET), m_timecodeInsertionHasBeenSet(false), + m_timecodeTrack(TimecodeTrack::NOT_SET), + m_timecodeTrackHasBeenSet(false), m_videoPreprocessorsHasBeenSet(false), m_width(0), m_widthHasBeenSet(false) @@ -147,6 +149,13 @@ VideoDescription& VideoDescription::operator =(JsonView jsonValue) m_timecodeInsertionHasBeenSet = true; } + if(jsonValue.ValueExists("timecodeTrack")) + { + m_timecodeTrack = TimecodeTrackMapper::GetTimecodeTrackForName(jsonValue.GetString("timecodeTrack")); + + m_timecodeTrackHasBeenSet = true; + } + if(jsonValue.ValueExists("videoPreprocessors")) { m_videoPreprocessors = jsonValue.GetObject("videoPreprocessors"); @@ -239,6 +248,11 @@ JsonValue VideoDescription::Jsonize() const payload.WithString("timecodeInsertion", VideoTimecodeInsertionMapper::GetNameForVideoTimecodeInsertion(m_timecodeInsertion)); } + if(m_timecodeTrackHasBeenSet) + { + payload.WithString("timecodeTrack", TimecodeTrackMapper::GetNameForTimecodeTrack(m_timecodeTrack)); + } + if(m_videoPreprocessorsHasBeenSet) { payload.WithObject("videoPreprocessors", m_videoPreprocessors.Jsonize()); diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveClient.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveClient.h index be1205f1eaa..ef028f7f4d3 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveClient.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveClient.h @@ -2142,6 +2142,32 @@ namespace MediaLive return SubmitAsync(&MediaLiveClient::ListTagsForResource, request, handler, context); } + /** + * Retrieves an array of all the encoder engine versions that are available in this + * AWS account.

See Also:

AWS + * API Reference

+ */ + virtual Model::ListVersionsOutcome ListVersions(const Model::ListVersionsRequest& request = {}) const; + + /** + * A Callable wrapper for ListVersions that returns a future to the operation so that it can be executed in parallel to other requests. + */ + template + Model::ListVersionsOutcomeCallable ListVersionsCallable(const ListVersionsRequestT& request = {}) const + { + return SubmitCallable(&MediaLiveClient::ListVersions, request); + } + + /** + * An Async wrapper for ListVersions that queues the request into a thread executor and triggers associated callback when operation has finished. + */ + template + void ListVersionsAsync(const ListVersionsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr, const ListVersionsRequestT& request = {}) const + { + return SubmitAsync(&MediaLiveClient::ListVersions, request, handler, context); + } + /** * Purchase an offering and create a reservation.

See Also:

AWS diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveServiceClientModel.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveServiceClientModel.h index 14378ada468..fd0943df351 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveServiceClientModel.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/MediaLiveServiceClientModel.h @@ -92,6 +92,7 @@ #include #include #include +#include #include #include #include @@ -145,6 +146,7 @@ #include #include #include +#include #include #include #include @@ -272,6 +274,7 @@ namespace Aws class ListReservationsRequest; class ListSignalMapsRequest; class ListTagsForResourceRequest; + class ListVersionsRequest; class PurchaseOfferingRequest; class RebootInputDeviceRequest; class RejectInputDeviceTransferRequest; @@ -389,6 +392,7 @@ namespace Aws typedef Aws::Utils::Outcome ListReservationsOutcome; typedef Aws::Utils::Outcome ListSignalMapsOutcome; typedef Aws::Utils::Outcome ListTagsForResourceOutcome; + typedef Aws::Utils::Outcome ListVersionsOutcome; typedef Aws::Utils::Outcome PurchaseOfferingOutcome; typedef Aws::Utils::Outcome RebootInputDeviceOutcome; typedef Aws::Utils::Outcome RejectInputDeviceTransferOutcome; @@ -506,6 +510,7 @@ namespace Aws typedef std::future ListReservationsOutcomeCallable; typedef std::future ListSignalMapsOutcomeCallable; typedef std::future ListTagsForResourceOutcomeCallable; + typedef std::future ListVersionsOutcomeCallable; typedef std::future PurchaseOfferingOutcomeCallable; typedef std::future RebootInputDeviceOutcomeCallable; typedef std::future RejectInputDeviceTransferOutcomeCallable; @@ -626,6 +631,7 @@ namespace Aws typedef std::function&) > ListReservationsResponseReceivedHandler; typedef std::function&) > ListSignalMapsResponseReceivedHandler; typedef std::function&) > ListTagsForResourceResponseReceivedHandler; + typedef std::function&) > ListVersionsResponseReceivedHandler; typedef std::function&) > PurchaseOfferingResponseReceivedHandler; typedef std::function&) > RebootInputDeviceResponseReceivedHandler; typedef std::function&) > RejectInputDeviceTransferResponseReceivedHandler; diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/Channel.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/Channel.h index 68f1a33d0ce..1c1fac6becd 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/Channel.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/Channel.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -301,6 +302,18 @@ one destination per inline Channel& WithAnywhereSettings(const DescribeAnywhereSettings& value) { SetAnywhereSettings(value); return *this;} inline Channel& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + + ///@{ + /** + * Requested engine version for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline bool ChannelEngineVersionHasBeenSet() const { return m_channelEngineVersionHasBeenSet; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = std::move(value); } + inline Channel& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline Channel& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} private: Aws::String m_arn; @@ -359,6 +372,9 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; bool m_anywhereSettingsHasBeenSet = false; + + ChannelEngineVersionResponse m_channelEngineVersion; + bool m_channelEngineVersionHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelEngineVersionRequest.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelEngineVersionRequest.h new file mode 100644 index 00000000000..f9004253e4d --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelEngineVersionRequest.h @@ -0,0 +1,63 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include +#include + +namespace Aws +{ +namespace Utils +{ +namespace Json +{ + class JsonValue; + class JsonView; +} // namespace Json +} // namespace Utils +namespace MediaLive +{ +namespace Model +{ + + /** + * Placeholder documentation for ChannelEngineVersionRequest

See Also:

+ *
AWS + * API Reference

+ */ + class ChannelEngineVersionRequest + { + public: + AWS_MEDIALIVE_API ChannelEngineVersionRequest(); + AWS_MEDIALIVE_API ChannelEngineVersionRequest(Aws::Utils::Json::JsonView jsonValue); + AWS_MEDIALIVE_API ChannelEngineVersionRequest& operator=(Aws::Utils::Json::JsonView jsonValue); + AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; + + + ///@{ + /** + * The build identifier of the engine version to use for this channel. Specify + * 'DEFAULT' to reset to the default version. + */ + inline const Aws::String& GetVersion() const{ return m_version; } + inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } + inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } + inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } + inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } + inline ChannelEngineVersionRequest& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} + inline ChannelEngineVersionRequest& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} + inline ChannelEngineVersionRequest& WithVersion(const char* value) { SetVersion(value); return *this;} + ///@} + private: + + Aws::String m_version; + bool m_versionHasBeenSet = false; + }; + +} // namespace Model +} // namespace MediaLive +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelEngineVersionResponse.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelEngineVersionResponse.h new file mode 100644 index 00000000000..1e9674a7265 --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelEngineVersionResponse.h @@ -0,0 +1,78 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include +#include +#include + +namespace Aws +{ +namespace Utils +{ +namespace Json +{ + class JsonValue; + class JsonView; +} // namespace Json +} // namespace Utils +namespace MediaLive +{ +namespace Model +{ + + /** + * Placeholder documentation for ChannelEngineVersionResponse

See Also:

+ * AWS + * API Reference

+ */ + class ChannelEngineVersionResponse + { + public: + AWS_MEDIALIVE_API ChannelEngineVersionResponse(); + AWS_MEDIALIVE_API ChannelEngineVersionResponse(Aws::Utils::Json::JsonView jsonValue); + AWS_MEDIALIVE_API ChannelEngineVersionResponse& operator=(Aws::Utils::Json::JsonView jsonValue); + AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; + + + ///@{ + /** + * The UTC time when the version expires. + */ + inline const Aws::Utils::DateTime& GetExpirationDate() const{ return m_expirationDate; } + inline bool ExpirationDateHasBeenSet() const { return m_expirationDateHasBeenSet; } + inline void SetExpirationDate(const Aws::Utils::DateTime& value) { m_expirationDateHasBeenSet = true; m_expirationDate = value; } + inline void SetExpirationDate(Aws::Utils::DateTime&& value) { m_expirationDateHasBeenSet = true; m_expirationDate = std::move(value); } + inline ChannelEngineVersionResponse& WithExpirationDate(const Aws::Utils::DateTime& value) { SetExpirationDate(value); return *this;} + inline ChannelEngineVersionResponse& WithExpirationDate(Aws::Utils::DateTime&& value) { SetExpirationDate(std::move(value)); return *this;} + ///@} + + ///@{ + /** + * The build identifier for this version of the channel version. + */ + inline const Aws::String& GetVersion() const{ return m_version; } + inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } + inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } + inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } + inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } + inline ChannelEngineVersionResponse& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} + inline ChannelEngineVersionResponse& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} + inline ChannelEngineVersionResponse& WithVersion(const char* value) { SetVersion(value); return *this;} + ///@} + private: + + Aws::Utils::DateTime m_expirationDate; + bool m_expirationDateHasBeenSet = false; + + Aws::String m_version; + bool m_versionHasBeenSet = false; + }; + +} // namespace Model +} // namespace MediaLive +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelSummary.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelSummary.h index 96165cf8813..bb4f7a4284e 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelSummary.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ChannelSummary.h @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include @@ -275,6 +276,32 @@ one destination per inline ChannelSummary& WithAnywhereSettings(const DescribeAnywhereSettings& value) { SetAnywhereSettings(value); return *this;} inline ChannelSummary& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + + ///@{ + /** + * The engine version that you requested for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline bool ChannelEngineVersionHasBeenSet() const { return m_channelEngineVersionHasBeenSet; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = std::move(value); } + inline ChannelSummary& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline ChannelSummary& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + + ///@{ + /** + * The engine version that the running pipelines are using. + */ + inline const Aws::Vector& GetUsedChannelEngineVersions() const{ return m_usedChannelEngineVersions; } + inline bool UsedChannelEngineVersionsHasBeenSet() const { return m_usedChannelEngineVersionsHasBeenSet; } + inline void SetUsedChannelEngineVersions(const Aws::Vector& value) { m_usedChannelEngineVersionsHasBeenSet = true; m_usedChannelEngineVersions = value; } + inline void SetUsedChannelEngineVersions(Aws::Vector&& value) { m_usedChannelEngineVersionsHasBeenSet = true; m_usedChannelEngineVersions = std::move(value); } + inline ChannelSummary& WithUsedChannelEngineVersions(const Aws::Vector& value) { SetUsedChannelEngineVersions(value); return *this;} + inline ChannelSummary& WithUsedChannelEngineVersions(Aws::Vector&& value) { SetUsedChannelEngineVersions(std::move(value)); return *this;} + inline ChannelSummary& AddUsedChannelEngineVersions(const ChannelEngineVersionResponse& value) { m_usedChannelEngineVersionsHasBeenSet = true; m_usedChannelEngineVersions.push_back(value); return *this; } + inline ChannelSummary& AddUsedChannelEngineVersions(ChannelEngineVersionResponse&& value) { m_usedChannelEngineVersionsHasBeenSet = true; m_usedChannelEngineVersions.push_back(std::move(value)); return *this; } + ///@} private: Aws::String m_arn; @@ -327,6 +354,12 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; bool m_anywhereSettingsHasBeenSet = false; + + ChannelEngineVersionResponse m_channelEngineVersion; + bool m_channelEngineVersionHasBeenSet = false; + + Aws::Vector m_usedChannelEngineVersions; + bool m_usedChannelEngineVersionsHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/CreateChannelRequest.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/CreateChannelRequest.h index 9dd57ea86cb..7532f19db26 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/CreateChannelRequest.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/CreateChannelRequest.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -232,6 +233,26 @@ creating multiple resources. inline CreateChannelRequest& WithAnywhereSettings(const AnywhereSettings& value) { SetAnywhereSettings(value); return *this;} inline CreateChannelRequest& WithAnywhereSettings(AnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + + ///@{ + /** + * The desired engine version for this channel. + */ + inline const ChannelEngineVersionRequest& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline bool ChannelEngineVersionHasBeenSet() const { return m_channelEngineVersionHasBeenSet; } + inline void SetChannelEngineVersion(const ChannelEngineVersionRequest& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionRequest&& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = std::move(value); } + inline CreateChannelRequest& WithChannelEngineVersion(const ChannelEngineVersionRequest& value) { SetChannelEngineVersion(value); return *this;} + inline CreateChannelRequest& WithChannelEngineVersion(ChannelEngineVersionRequest&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + + ///@{ + + inline bool GetDryRun() const{ return m_dryRun; } + inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } + inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } + inline CreateChannelRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} + ///@} private: CdiInputSpecification m_cdiInputSpecification; @@ -275,6 +296,12 @@ creating multiple resources. AnywhereSettings m_anywhereSettings; bool m_anywhereSettingsHasBeenSet = false; + + ChannelEngineVersionRequest m_channelEngineVersion; + bool m_channelEngineVersionHasBeenSet = false; + + bool m_dryRun; + bool m_dryRunHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DeleteChannelResult.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DeleteChannelResult.h index 4b41debe641..950a7434dbe 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DeleteChannelResult.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DeleteChannelResult.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -283,6 +284,17 @@ one destination per inline DeleteChannelResult& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + ///@{ + /** + * Requested engine version for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersion = std::move(value); } + inline DeleteChannelResult& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline DeleteChannelResult& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } @@ -333,6 +345,8 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; + ChannelEngineVersionResponse m_channelEngineVersion; + Aws::String m_requestId; }; diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DescribeChannelResult.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DescribeChannelResult.h index ac6a31ce8a3..b7e1dec74f8 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DescribeChannelResult.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/DescribeChannelResult.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -283,6 +284,17 @@ one destination per inline DescribeChannelResult& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + ///@{ + /** + * Requested engine version for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersion = std::move(value); } + inline DescribeChannelResult& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline DescribeChannelResult& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } @@ -333,6 +345,8 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; + ChannelEngineVersionResponse m_channelEngineVersion; + Aws::String m_requestId; }; diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ListVersionsRequest.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ListVersionsRequest.h new file mode 100644 index 00000000000..00e5bc37a07 --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ListVersionsRequest.h @@ -0,0 +1,39 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace MediaLive +{ +namespace Model +{ + + /** + * Placeholder documentation for ListVersionsRequest

See Also:

AWS + * API Reference

+ */ + class ListVersionsRequest : public MediaLiveRequest + { + public: + AWS_MEDIALIVE_API ListVersionsRequest(); + + // Service request name is the Operation name which will send this request out, + // each operation should has unique request name, so that we can get operation's name from this request. + // Note: this is not true for response, multiple operations may have the same response name, + // so we can not get operation's name from response. + inline virtual const char* GetServiceRequestName() const override { return "ListVersions"; } + + AWS_MEDIALIVE_API Aws::String SerializePayload() const override; + + }; + +} // namespace Model +} // namespace MediaLive +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ListVersionsResult.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ListVersionsResult.h new file mode 100644 index 00000000000..71a4a0550fa --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/ListVersionsResult.h @@ -0,0 +1,74 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include +#include +#include +#include + +namespace Aws +{ +template +class AmazonWebServiceResult; + +namespace Utils +{ +namespace Json +{ + class JsonValue; +} // namespace Json +} // namespace Utils +namespace MediaLive +{ +namespace Model +{ + /** + * Placeholder documentation for ListVersionsResponse

See Also:

AWS + * API Reference

+ */ + class ListVersionsResult + { + public: + AWS_MEDIALIVE_API ListVersionsResult(); + AWS_MEDIALIVE_API ListVersionsResult(const Aws::AmazonWebServiceResult& result); + AWS_MEDIALIVE_API ListVersionsResult& operator=(const Aws::AmazonWebServiceResult& result); + + + ///@{ + /** + * List of engine versions that are available for this AWS account. + */ + inline const Aws::Vector& GetVersions() const{ return m_versions; } + inline void SetVersions(const Aws::Vector& value) { m_versions = value; } + inline void SetVersions(Aws::Vector&& value) { m_versions = std::move(value); } + inline ListVersionsResult& WithVersions(const Aws::Vector& value) { SetVersions(value); return *this;} + inline ListVersionsResult& WithVersions(Aws::Vector&& value) { SetVersions(std::move(value)); return *this;} + inline ListVersionsResult& AddVersions(const ChannelEngineVersionResponse& value) { m_versions.push_back(value); return *this; } + inline ListVersionsResult& AddVersions(ChannelEngineVersionResponse&& value) { m_versions.push_back(std::move(value)); return *this; } + ///@} + + ///@{ + + inline const Aws::String& GetRequestId() const{ return m_requestId; } + inline void SetRequestId(const Aws::String& value) { m_requestId = value; } + inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } + inline void SetRequestId(const char* value) { m_requestId.assign(value); } + inline ListVersionsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} + inline ListVersionsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} + inline ListVersionsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} + ///@} + private: + + Aws::Vector m_versions; + + Aws::String m_requestId; + }; + +} // namespace Model +} // namespace MediaLive +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/PipelineDetail.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/PipelineDetail.h index c6e884333ef..b23de1d8bb6 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/PipelineDetail.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/PipelineDetail.h @@ -6,6 +6,7 @@ #pragma once #include #include +#include #include namespace Aws @@ -110,6 +111,18 @@ namespace Model inline PipelineDetail& WithPipelineId(Aws::String&& value) { SetPipelineId(std::move(value)); return *this;} inline PipelineDetail& WithPipelineId(const char* value) { SetPipelineId(value); return *this;} ///@} + + ///@{ + /** + * Current engine version of the encoder for this pipeline. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline bool ChannelEngineVersionHasBeenSet() const { return m_channelEngineVersionHasBeenSet; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = std::move(value); } + inline PipelineDetail& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline PipelineDetail& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} private: Aws::String m_activeInputAttachmentName; @@ -126,6 +139,9 @@ namespace Model Aws::String m_pipelineId; bool m_pipelineIdHasBeenSet = false; + + ChannelEngineVersionResponse m_channelEngineVersion; + bool m_channelEngineVersionHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/RestartChannelPipelinesResult.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/RestartChannelPipelinesResult.h index e70fd464b07..60b44ad7d55 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/RestartChannelPipelinesResult.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/RestartChannelPipelinesResult.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -297,6 +298,17 @@ one destination per inline RestartChannelPipelinesResult& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + ///@{ + /** + * Requested engine version for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersion = std::move(value); } + inline RestartChannelPipelinesResult& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline RestartChannelPipelinesResult& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } @@ -349,6 +361,8 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; + ChannelEngineVersionResponse m_channelEngineVersion; + Aws::String m_requestId; }; diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StartChannelResult.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StartChannelResult.h index a88629eaab6..a579af36f81 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StartChannelResult.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StartChannelResult.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -283,6 +284,17 @@ one destination per inline StartChannelResult& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + ///@{ + /** + * Requested engine version for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersion = std::move(value); } + inline StartChannelResult& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline StartChannelResult& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } @@ -333,6 +345,8 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; + ChannelEngineVersionResponse m_channelEngineVersion; + Aws::String m_requestId; }; diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StopChannelResult.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StopChannelResult.h index 89f269d630d..79a78a21de0 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StopChannelResult.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/StopChannelResult.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -283,6 +284,17 @@ one destination per inline StopChannelResult& WithAnywhereSettings(DescribeAnywhereSettings&& value) { SetAnywhereSettings(std::move(value)); return *this;} ///@} + ///@{ + /** + * Requested engine version for this channel. + */ + inline const ChannelEngineVersionResponse& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline void SetChannelEngineVersion(const ChannelEngineVersionResponse& value) { m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionResponse&& value) { m_channelEngineVersion = std::move(value); } + inline StopChannelResult& WithChannelEngineVersion(const ChannelEngineVersionResponse& value) { SetChannelEngineVersion(value); return *this;} + inline StopChannelResult& WithChannelEngineVersion(ChannelEngineVersionResponse&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + ///@{ inline const Aws::String& GetRequestId() const{ return m_requestId; } @@ -333,6 +345,8 @@ one destination per DescribeAnywhereSettings m_anywhereSettings; + ChannelEngineVersionResponse m_channelEngineVersion; + Aws::String m_requestId; }; diff --git a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/UpdateChannelRequest.h b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/UpdateChannelRequest.h index c25d8650002..e541ec9891d 100644 --- a/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/UpdateChannelRequest.h +++ b/generated/src/aws-cpp-sdk-medialive/include/aws/medialive/model/UpdateChannelRequest.h @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -172,6 +173,26 @@ namespace Model inline UpdateChannelRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;} inline UpdateChannelRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;} ///@} + + ///@{ + /** + * Channel engine version for this channel + */ + inline const ChannelEngineVersionRequest& GetChannelEngineVersion() const{ return m_channelEngineVersion; } + inline bool ChannelEngineVersionHasBeenSet() const { return m_channelEngineVersionHasBeenSet; } + inline void SetChannelEngineVersion(const ChannelEngineVersionRequest& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = value; } + inline void SetChannelEngineVersion(ChannelEngineVersionRequest&& value) { m_channelEngineVersionHasBeenSet = true; m_channelEngineVersion = std::move(value); } + inline UpdateChannelRequest& WithChannelEngineVersion(const ChannelEngineVersionRequest& value) { SetChannelEngineVersion(value); return *this;} + inline UpdateChannelRequest& WithChannelEngineVersion(ChannelEngineVersionRequest&& value) { SetChannelEngineVersion(std::move(value)); return *this;} + ///@} + + ///@{ + + inline bool GetDryRun() const{ return m_dryRun; } + inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } + inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } + inline UpdateChannelRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} + ///@} private: CdiInputSpecification m_cdiInputSpecification; @@ -203,6 +224,12 @@ namespace Model Aws::String m_roleArn; bool m_roleArnHasBeenSet = false; + + ChannelEngineVersionRequest m_channelEngineVersion; + bool m_channelEngineVersionHasBeenSet = false; + + bool m_dryRun; + bool m_dryRunHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-medialive/source/MediaLiveClient.cpp b/generated/src/aws-cpp-sdk-medialive/source/MediaLiveClient.cpp index 353a447634b..816e4d1566a 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/MediaLiveClient.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/MediaLiveClient.cpp @@ -102,6 +102,7 @@ #include #include #include +#include #include #include #include @@ -2847,6 +2848,33 @@ ListTagsForResourceOutcome MediaLiveClient::ListTagsForResource(const ListTagsFo {{TracingUtils::SMITHY_METHOD_DIMENSION, request.GetServiceRequestName()}, {TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}}); } +ListVersionsOutcome MediaLiveClient::ListVersions(const ListVersionsRequest& request) const +{ + AWS_OPERATION_GUARD(ListVersions); + AWS_OPERATION_CHECK_PTR(m_endpointProvider, ListVersions, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE); + AWS_OPERATION_CHECK_PTR(m_telemetryProvider, ListVersions, CoreErrors, CoreErrors::NOT_INITIALIZED); + auto tracer = m_telemetryProvider->getTracer(this->GetServiceClientName(), {}); + auto meter = m_telemetryProvider->getMeter(this->GetServiceClientName(), {}); + AWS_OPERATION_CHECK_PTR(meter, ListVersions, CoreErrors, CoreErrors::NOT_INITIALIZED); + auto span = tracer->CreateSpan(Aws::String(this->GetServiceClientName()) + ".ListVersions", + {{ TracingUtils::SMITHY_METHOD_DIMENSION, request.GetServiceRequestName() }, { TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName() }, { TracingUtils::SMITHY_SYSTEM_DIMENSION, TracingUtils::SMITHY_METHOD_AWS_VALUE }}, + smithy::components::tracing::SpanKind::CLIENT); + return TracingUtils::MakeCallWithTiming( + [&]()-> ListVersionsOutcome { + auto endpointResolutionOutcome = TracingUtils::MakeCallWithTiming( + [&]() -> ResolveEndpointOutcome { return m_endpointProvider->ResolveEndpoint(request.GetEndpointContextParams()); }, + TracingUtils::SMITHY_CLIENT_ENDPOINT_RESOLUTION_METRIC, + *meter, + {{TracingUtils::SMITHY_METHOD_DIMENSION, request.GetServiceRequestName()}, {TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}}); + AWS_OPERATION_CHECK_SUCCESS(endpointResolutionOutcome, ListVersions, CoreErrors, CoreErrors::ENDPOINT_RESOLUTION_FAILURE, endpointResolutionOutcome.GetError().GetMessage()); + endpointResolutionOutcome.GetResult().AddPathSegments("/prod/versions"); + return ListVersionsOutcome(MakeRequest(request, endpointResolutionOutcome.GetResult(), Aws::Http::HttpMethod::HTTP_GET, Aws::Auth::SIGV4_SIGNER)); + }, + TracingUtils::SMITHY_CLIENT_DURATION_METRIC, + *meter, + {{TracingUtils::SMITHY_METHOD_DIMENSION, request.GetServiceRequestName()}, {TracingUtils::SMITHY_SERVICE_DIMENSION, this->GetServiceClientName()}}); +} + PurchaseOfferingOutcome MediaLiveClient::PurchaseOffering(const PurchaseOfferingRequest& request) const { AWS_OPERATION_GUARD(PurchaseOffering); diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/Channel.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/Channel.cpp index 1e3bb6e2a8e..07e4bcf6779 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/Channel.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/Channel.cpp @@ -41,7 +41,8 @@ Channel::Channel() : m_stateHasBeenSet(false), m_tagsHasBeenSet(false), m_vpcHasBeenSet(false), - m_anywhereSettingsHasBeenSet(false) + m_anywhereSettingsHasBeenSet(false), + m_channelEngineVersionHasBeenSet(false) { } @@ -201,6 +202,13 @@ Channel& Channel::operator =(JsonView jsonValue) m_anywhereSettingsHasBeenSet = true; } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + m_channelEngineVersionHasBeenSet = true; + } + return *this; } @@ -344,6 +352,12 @@ JsonValue Channel::Jsonize() const } + if(m_channelEngineVersionHasBeenSet) + { + payload.WithObject("channelEngineVersion", m_channelEngineVersion.Jsonize()); + + } + return payload; } diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/ChannelEngineVersionRequest.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/ChannelEngineVersionRequest.cpp new file mode 100644 index 00000000000..3eacc85d01a --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/source/model/ChannelEngineVersionRequest.cpp @@ -0,0 +1,59 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include + +#include + +using namespace Aws::Utils::Json; +using namespace Aws::Utils; + +namespace Aws +{ +namespace MediaLive +{ +namespace Model +{ + +ChannelEngineVersionRequest::ChannelEngineVersionRequest() : + m_versionHasBeenSet(false) +{ +} + +ChannelEngineVersionRequest::ChannelEngineVersionRequest(JsonView jsonValue) + : ChannelEngineVersionRequest() +{ + *this = jsonValue; +} + +ChannelEngineVersionRequest& ChannelEngineVersionRequest::operator =(JsonView jsonValue) +{ + if(jsonValue.ValueExists("version")) + { + m_version = jsonValue.GetString("version"); + + m_versionHasBeenSet = true; + } + + return *this; +} + +JsonValue ChannelEngineVersionRequest::Jsonize() const +{ + JsonValue payload; + + if(m_versionHasBeenSet) + { + payload.WithString("version", m_version); + + } + + return payload; +} + +} // namespace Model +} // namespace MediaLive +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/ChannelEngineVersionResponse.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/ChannelEngineVersionResponse.cpp new file mode 100644 index 00000000000..436445f0b7c --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/source/model/ChannelEngineVersionResponse.cpp @@ -0,0 +1,72 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include + +#include + +using namespace Aws::Utils::Json; +using namespace Aws::Utils; + +namespace Aws +{ +namespace MediaLive +{ +namespace Model +{ + +ChannelEngineVersionResponse::ChannelEngineVersionResponse() : + m_expirationDateHasBeenSet(false), + m_versionHasBeenSet(false) +{ +} + +ChannelEngineVersionResponse::ChannelEngineVersionResponse(JsonView jsonValue) + : ChannelEngineVersionResponse() +{ + *this = jsonValue; +} + +ChannelEngineVersionResponse& ChannelEngineVersionResponse::operator =(JsonView jsonValue) +{ + if(jsonValue.ValueExists("expirationDate")) + { + m_expirationDate = jsonValue.GetString("expirationDate"); + + m_expirationDateHasBeenSet = true; + } + + if(jsonValue.ValueExists("version")) + { + m_version = jsonValue.GetString("version"); + + m_versionHasBeenSet = true; + } + + return *this; +} + +JsonValue ChannelEngineVersionResponse::Jsonize() const +{ + JsonValue payload; + + if(m_expirationDateHasBeenSet) + { + payload.WithString("expirationDate", m_expirationDate.ToGmtString(Aws::Utils::DateFormat::ISO_8601)); + } + + if(m_versionHasBeenSet) + { + payload.WithString("version", m_version); + + } + + return payload; +} + +} // namespace Model +} // namespace MediaLive +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/ChannelSummary.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/ChannelSummary.cpp index b226a65974a..7b12522059f 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/ChannelSummary.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/ChannelSummary.cpp @@ -39,7 +39,9 @@ ChannelSummary::ChannelSummary() : m_stateHasBeenSet(false), m_tagsHasBeenSet(false), m_vpcHasBeenSet(false), - m_anywhereSettingsHasBeenSet(false) + m_anywhereSettingsHasBeenSet(false), + m_channelEngineVersionHasBeenSet(false), + m_usedChannelEngineVersionsHasBeenSet(false) { } @@ -182,6 +184,23 @@ ChannelSummary& ChannelSummary::operator =(JsonView jsonValue) m_anywhereSettingsHasBeenSet = true; } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + m_channelEngineVersionHasBeenSet = true; + } + + if(jsonValue.ValueExists("usedChannelEngineVersions")) + { + Aws::Utils::Array usedChannelEngineVersionsJsonList = jsonValue.GetArray("usedChannelEngineVersions"); + for(unsigned usedChannelEngineVersionsIndex = 0; usedChannelEngineVersionsIndex < usedChannelEngineVersionsJsonList.GetLength(); ++usedChannelEngineVersionsIndex) + { + m_usedChannelEngineVersions.push_back(usedChannelEngineVersionsJsonList[usedChannelEngineVersionsIndex].AsObject()); + } + m_usedChannelEngineVersionsHasBeenSet = true; + } + return *this; } @@ -308,6 +327,23 @@ JsonValue ChannelSummary::Jsonize() const } + if(m_channelEngineVersionHasBeenSet) + { + payload.WithObject("channelEngineVersion", m_channelEngineVersion.Jsonize()); + + } + + if(m_usedChannelEngineVersionsHasBeenSet) + { + Aws::Utils::Array usedChannelEngineVersionsJsonList(m_usedChannelEngineVersions.size()); + for(unsigned usedChannelEngineVersionsIndex = 0; usedChannelEngineVersionsIndex < usedChannelEngineVersionsJsonList.GetLength(); ++usedChannelEngineVersionsIndex) + { + usedChannelEngineVersionsJsonList[usedChannelEngineVersionsIndex].AsObject(m_usedChannelEngineVersions[usedChannelEngineVersionsIndex].Jsonize()); + } + payload.WithArray("usedChannelEngineVersions", std::move(usedChannelEngineVersionsJsonList)); + + } + return payload; } diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/CreateChannelRequest.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/CreateChannelRequest.cpp index 45822960a43..3a3fc9bf4d8 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/CreateChannelRequest.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/CreateChannelRequest.cpp @@ -29,7 +29,10 @@ CreateChannelRequest::CreateChannelRequest() : m_roleArnHasBeenSet(false), m_tagsHasBeenSet(false), m_vpcHasBeenSet(false), - m_anywhereSettingsHasBeenSet(false) + m_anywhereSettingsHasBeenSet(false), + m_channelEngineVersionHasBeenSet(false), + m_dryRun(false), + m_dryRunHasBeenSet(false) { } @@ -134,6 +137,18 @@ Aws::String CreateChannelRequest::SerializePayload() const } + if(m_channelEngineVersionHasBeenSet) + { + payload.WithObject("channelEngineVersion", m_channelEngineVersion.Jsonize()); + + } + + if(m_dryRunHasBeenSet) + { + payload.WithBool("dryRun", m_dryRun); + + } + return payload.View().WriteReadable(); } diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/DeleteChannelResult.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/DeleteChannelResult.cpp index ea9b39cc9b3..c716fa8ab1b 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/DeleteChannelResult.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/DeleteChannelResult.cpp @@ -163,6 +163,12 @@ DeleteChannelResult& DeleteChannelResult::operator =(const Aws::AmazonWebService } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + } + const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/DescribeChannelResult.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/DescribeChannelResult.cpp index 2cfcbb60868..09f450897a8 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/DescribeChannelResult.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/DescribeChannelResult.cpp @@ -163,6 +163,12 @@ DescribeChannelResult& DescribeChannelResult::operator =(const Aws::AmazonWebSer } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + } + const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/ListVersionsRequest.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/ListVersionsRequest.cpp new file mode 100644 index 00000000000..f96c9ce2b22 --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/source/model/ListVersionsRequest.cpp @@ -0,0 +1,26 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include + +#include + +using namespace Aws::MediaLive::Model; +using namespace Aws::Utils::Json; +using namespace Aws::Utils; + +ListVersionsRequest::ListVersionsRequest() +{ +} + +Aws::String ListVersionsRequest::SerializePayload() const +{ + return {}; +} + + + + diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/ListVersionsResult.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/ListVersionsResult.cpp new file mode 100644 index 00000000000..e2444cd90d0 --- /dev/null +++ b/generated/src/aws-cpp-sdk-medialive/source/model/ListVersionsResult.cpp @@ -0,0 +1,51 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include +#include +#include + +#include + +using namespace Aws::MediaLive::Model; +using namespace Aws::Utils::Json; +using namespace Aws::Utils; +using namespace Aws; + +ListVersionsResult::ListVersionsResult() +{ +} + +ListVersionsResult::ListVersionsResult(const Aws::AmazonWebServiceResult& result) +{ + *this = result; +} + +ListVersionsResult& ListVersionsResult::operator =(const Aws::AmazonWebServiceResult& result) +{ + JsonView jsonValue = result.GetPayload().View(); + if(jsonValue.ValueExists("versions")) + { + Aws::Utils::Array versionsJsonList = jsonValue.GetArray("versions"); + for(unsigned versionsIndex = 0; versionsIndex < versionsJsonList.GetLength(); ++versionsIndex) + { + m_versions.push_back(versionsJsonList[versionsIndex].AsObject()); + } + } + + + const auto& headers = result.GetHeaderValueCollection(); + const auto& requestIdIter = headers.find("x-amzn-requestid"); + if(requestIdIter != headers.end()) + { + m_requestId = requestIdIter->second; + } + + + return *this; +} diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/PipelineDetail.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/PipelineDetail.cpp index 1a5c3495380..0d94e18863c 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/PipelineDetail.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/PipelineDetail.cpp @@ -23,7 +23,8 @@ PipelineDetail::PipelineDetail() : m_activeInputSwitchActionNameHasBeenSet(false), m_activeMotionGraphicsActionNameHasBeenSet(false), m_activeMotionGraphicsUriHasBeenSet(false), - m_pipelineIdHasBeenSet(false) + m_pipelineIdHasBeenSet(false), + m_channelEngineVersionHasBeenSet(false) { } @@ -70,6 +71,13 @@ PipelineDetail& PipelineDetail::operator =(JsonView jsonValue) m_pipelineIdHasBeenSet = true; } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + m_channelEngineVersionHasBeenSet = true; + } + return *this; } @@ -107,6 +115,12 @@ JsonValue PipelineDetail::Jsonize() const } + if(m_channelEngineVersionHasBeenSet) + { + payload.WithObject("channelEngineVersion", m_channelEngineVersion.Jsonize()); + + } + return payload; } diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/RestartChannelPipelinesResult.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/RestartChannelPipelinesResult.cpp index 148e55d9cce..81eb4b1f298 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/RestartChannelPipelinesResult.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/RestartChannelPipelinesResult.cpp @@ -169,6 +169,12 @@ RestartChannelPipelinesResult& RestartChannelPipelinesResult::operator =(const A } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + } + const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/StartChannelResult.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/StartChannelResult.cpp index a42352f466f..71138523dd0 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/StartChannelResult.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/StartChannelResult.cpp @@ -163,6 +163,12 @@ StartChannelResult& StartChannelResult::operator =(const Aws::AmazonWebServiceRe } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + } + const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/StopChannelResult.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/StopChannelResult.cpp index fdc71104300..b91a5d16626 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/StopChannelResult.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/StopChannelResult.cpp @@ -163,6 +163,12 @@ StopChannelResult& StopChannelResult::operator =(const Aws::AmazonWebServiceResu } + if(jsonValue.ValueExists("channelEngineVersion")) + { + m_channelEngineVersion = jsonValue.GetObject("channelEngineVersion"); + + } + const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); diff --git a/generated/src/aws-cpp-sdk-medialive/source/model/UpdateChannelRequest.cpp b/generated/src/aws-cpp-sdk-medialive/source/model/UpdateChannelRequest.cpp index 5ef14cb7bf7..78ef1c36a98 100644 --- a/generated/src/aws-cpp-sdk-medialive/source/model/UpdateChannelRequest.cpp +++ b/generated/src/aws-cpp-sdk-medialive/source/model/UpdateChannelRequest.cpp @@ -23,7 +23,10 @@ UpdateChannelRequest::UpdateChannelRequest() : m_logLevelHasBeenSet(false), m_maintenanceHasBeenSet(false), m_nameHasBeenSet(false), - m_roleArnHasBeenSet(false) + m_roleArnHasBeenSet(false), + m_channelEngineVersionHasBeenSet(false), + m_dryRun(false), + m_dryRunHasBeenSet(false) { } @@ -94,6 +97,18 @@ Aws::String UpdateChannelRequest::SerializePayload() const } + if(m_channelEngineVersionHasBeenSet) + { + payload.WithObject("channelEngineVersion", m_channelEngineVersion.Jsonize()); + + } + + if(m_dryRunHasBeenSet) + { + payload.WithBool("dryRun", m_dryRun); + + } + return payload.View().WriteReadable(); } diff --git a/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/AnswerRecommendationAIAgentConfiguration.h b/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/AnswerRecommendationAIAgentConfiguration.h index 4aa55518324..0ea58d756cd 100644 --- a/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/AnswerRecommendationAIAgentConfiguration.h +++ b/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/AnswerRecommendationAIAgentConfiguration.h @@ -99,6 +99,25 @@ namespace Model inline AnswerRecommendationAIAgentConfiguration& WithIntentLabelingGenerationAIPromptId(const char* value) { SetIntentLabelingGenerationAIPromptId(value); return *this;} ///@} + ///@{ + /** + *

The locale to which specifies the language and region settings that determine + * the response language for QueryAssistant.

+ *

Changing this locale to anything other than en_US will + * turn off recommendations triggered by contact transcripts for agent assistance, + * as this feature is not supported in multiple languages.

+ */ + inline const Aws::String& GetLocale() const{ return m_locale; } + inline bool LocaleHasBeenSet() const { return m_localeHasBeenSet; } + inline void SetLocale(const Aws::String& value) { m_localeHasBeenSet = true; m_locale = value; } + inline void SetLocale(Aws::String&& value) { m_localeHasBeenSet = true; m_locale = std::move(value); } + inline void SetLocale(const char* value) { m_localeHasBeenSet = true; m_locale.assign(value); } + inline AnswerRecommendationAIAgentConfiguration& WithLocale(const Aws::String& value) { SetLocale(value); return *this;} + inline AnswerRecommendationAIAgentConfiguration& WithLocale(Aws::String&& value) { SetLocale(std::move(value)); return *this;} + inline AnswerRecommendationAIAgentConfiguration& WithLocale(const char* value) { SetLocale(value); return *this;} + ///@} + ///@{ /** *

The AI Prompt identifier for the Query Reformulation prompt used by the @@ -127,6 +146,9 @@ namespace Model Aws::String m_intentLabelingGenerationAIPromptId; bool m_intentLabelingGenerationAIPromptIdHasBeenSet = false; + Aws::String m_locale; + bool m_localeHasBeenSet = false; + Aws::String m_queryReformulationAIPromptId; bool m_queryReformulationAIPromptIdHasBeenSet = false; }; diff --git a/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/GuardrailPiiEntityConfig.h b/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/GuardrailPiiEntityConfig.h index 5018d629667..e8e13b441f8 100644 --- a/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/GuardrailPiiEntityConfig.h +++ b/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/GuardrailPiiEntityConfig.h @@ -84,7 +84,7 @@ namespace Model * Vehicle Identification Number (VIN) uniquely identifies a vehicle. VIN content * and format are defined in the ISO 3779 specification. Each country has * specific codes and formats for VINs.

  • - * Finance

    • REDIT_DEBIT_CARD_CVV

      A + * Finance

      • CREDIT_DEBIT_CARD_CVV

        A * three-digit card verification code (CVV) that is present on VISA, MasterCard, * and Discover credit and debit cards. For American Express credit or debit cards, * the CVV is a four-digit numeric code.

      • diff --git a/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/ManualSearchAIAgentConfiguration.h b/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/ManualSearchAIAgentConfiguration.h index 985dbe683ee..17fb0f0d3eb 100644 --- a/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/ManualSearchAIAgentConfiguration.h +++ b/generated/src/aws-cpp-sdk-qconnect/include/aws/qconnect/model/ManualSearchAIAgentConfiguration.h @@ -83,6 +83,22 @@ namespace Model inline ManualSearchAIAgentConfiguration& AddAssociationConfigurations(const AssociationConfiguration& value) { m_associationConfigurationsHasBeenSet = true; m_associationConfigurations.push_back(value); return *this; } inline ManualSearchAIAgentConfiguration& AddAssociationConfigurations(AssociationConfiguration&& value) { m_associationConfigurationsHasBeenSet = true; m_associationConfigurations.push_back(std::move(value)); return *this; } ///@} + + ///@{ + /** + *

        The locale to which specifies the language and region settings that determine + * the response language for QueryAssistant.

        + */ + inline const Aws::String& GetLocale() const{ return m_locale; } + inline bool LocaleHasBeenSet() const { return m_localeHasBeenSet; } + inline void SetLocale(const Aws::String& value) { m_localeHasBeenSet = true; m_locale = value; } + inline void SetLocale(Aws::String&& value) { m_localeHasBeenSet = true; m_locale = std::move(value); } + inline void SetLocale(const char* value) { m_localeHasBeenSet = true; m_locale.assign(value); } + inline ManualSearchAIAgentConfiguration& WithLocale(const Aws::String& value) { SetLocale(value); return *this;} + inline ManualSearchAIAgentConfiguration& WithLocale(Aws::String&& value) { SetLocale(std::move(value)); return *this;} + inline ManualSearchAIAgentConfiguration& WithLocale(const char* value) { SetLocale(value); return *this;} + ///@} private: Aws::String m_answerGenerationAIGuardrailId; @@ -93,6 +109,9 @@ namespace Model Aws::Vector m_associationConfigurations; bool m_associationConfigurationsHasBeenSet = false; + + Aws::String m_locale; + bool m_localeHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-qconnect/source/model/AnswerRecommendationAIAgentConfiguration.cpp b/generated/src/aws-cpp-sdk-qconnect/source/model/AnswerRecommendationAIAgentConfiguration.cpp index e2191aead14..6c99b582bd8 100644 --- a/generated/src/aws-cpp-sdk-qconnect/source/model/AnswerRecommendationAIAgentConfiguration.cpp +++ b/generated/src/aws-cpp-sdk-qconnect/source/model/AnswerRecommendationAIAgentConfiguration.cpp @@ -23,6 +23,7 @@ AnswerRecommendationAIAgentConfiguration::AnswerRecommendationAIAgentConfigurati m_answerGenerationAIPromptIdHasBeenSet(false), m_associationConfigurationsHasBeenSet(false), m_intentLabelingGenerationAIPromptIdHasBeenSet(false), + m_localeHasBeenSet(false), m_queryReformulationAIPromptIdHasBeenSet(false) { } @@ -66,6 +67,13 @@ AnswerRecommendationAIAgentConfiguration& AnswerRecommendationAIAgentConfigurati m_intentLabelingGenerationAIPromptIdHasBeenSet = true; } + if(jsonValue.ValueExists("locale")) + { + m_locale = jsonValue.GetString("locale"); + + m_localeHasBeenSet = true; + } + if(jsonValue.ValueExists("queryReformulationAIPromptId")) { m_queryReformulationAIPromptId = jsonValue.GetString("queryReformulationAIPromptId"); @@ -109,6 +117,12 @@ JsonValue AnswerRecommendationAIAgentConfiguration::Jsonize() const } + if(m_localeHasBeenSet) + { + payload.WithString("locale", m_locale); + + } + if(m_queryReformulationAIPromptIdHasBeenSet) { payload.WithString("queryReformulationAIPromptId", m_queryReformulationAIPromptId); diff --git a/generated/src/aws-cpp-sdk-qconnect/source/model/ManualSearchAIAgentConfiguration.cpp b/generated/src/aws-cpp-sdk-qconnect/source/model/ManualSearchAIAgentConfiguration.cpp index 86a3e3c0e64..0fa1303ba23 100644 --- a/generated/src/aws-cpp-sdk-qconnect/source/model/ManualSearchAIAgentConfiguration.cpp +++ b/generated/src/aws-cpp-sdk-qconnect/source/model/ManualSearchAIAgentConfiguration.cpp @@ -21,7 +21,8 @@ namespace Model ManualSearchAIAgentConfiguration::ManualSearchAIAgentConfiguration() : m_answerGenerationAIGuardrailIdHasBeenSet(false), m_answerGenerationAIPromptIdHasBeenSet(false), - m_associationConfigurationsHasBeenSet(false) + m_associationConfigurationsHasBeenSet(false), + m_localeHasBeenSet(false) { } @@ -57,6 +58,13 @@ ManualSearchAIAgentConfiguration& ManualSearchAIAgentConfiguration::operator =(J m_associationConfigurationsHasBeenSet = true; } + if(jsonValue.ValueExists("locale")) + { + m_locale = jsonValue.GetString("locale"); + + m_localeHasBeenSet = true; + } + return *this; } @@ -87,6 +95,12 @@ JsonValue ManualSearchAIAgentConfiguration::Jsonize() const } + if(m_localeHasBeenSet) + { + payload.WithString("locale", m_locale); + + } + return payload; } diff --git a/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/ComponentInfo.h b/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/ComponentInfo.h new file mode 100644 index 00000000000..92d96ffc791 --- /dev/null +++ b/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/ComponentInfo.h @@ -0,0 +1,98 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include +#include +#include + +namespace Aws +{ +namespace Utils +{ +namespace Json +{ + class JsonValue; + class JsonView; +} // namespace Json +} // namespace Utils +namespace SsmSap +{ +namespace Model +{ + + /** + *

        This is information about the component of your SAP application, such as Web + * Dispatcher.

        See Also:

        AWS + * API Reference

        + */ + class ComponentInfo + { + public: + AWS_SSMSAP_API ComponentInfo(); + AWS_SSMSAP_API ComponentInfo(Aws::Utils::Json::JsonView jsonValue); + AWS_SSMSAP_API ComponentInfo& operator=(Aws::Utils::Json::JsonView jsonValue); + AWS_SSMSAP_API Aws::Utils::Json::JsonValue Jsonize() const; + + + ///@{ + /** + *

        This string is the type of the component.

        Accepted value is + * WD.

        + */ + inline const ComponentType& GetComponentType() const{ return m_componentType; } + inline bool ComponentTypeHasBeenSet() const { return m_componentTypeHasBeenSet; } + inline void SetComponentType(const ComponentType& value) { m_componentTypeHasBeenSet = true; m_componentType = value; } + inline void SetComponentType(ComponentType&& value) { m_componentTypeHasBeenSet = true; m_componentType = std::move(value); } + inline ComponentInfo& WithComponentType(const ComponentType& value) { SetComponentType(value); return *this;} + inline ComponentInfo& WithComponentType(ComponentType&& value) { SetComponentType(std::move(value)); return *this;} + ///@} + + ///@{ + /** + *

        This string is the SAP System ID of the component.

        Accepted values are + * alphanumeric.

        + */ + inline const Aws::String& GetSid() const{ return m_sid; } + inline bool SidHasBeenSet() const { return m_sidHasBeenSet; } + inline void SetSid(const Aws::String& value) { m_sidHasBeenSet = true; m_sid = value; } + inline void SetSid(Aws::String&& value) { m_sidHasBeenSet = true; m_sid = std::move(value); } + inline void SetSid(const char* value) { m_sidHasBeenSet = true; m_sid.assign(value); } + inline ComponentInfo& WithSid(const Aws::String& value) { SetSid(value); return *this;} + inline ComponentInfo& WithSid(Aws::String&& value) { SetSid(std::move(value)); return *this;} + inline ComponentInfo& WithSid(const char* value) { SetSid(value); return *this;} + ///@} + + ///@{ + /** + *

        This is the Amazon EC2 instance on which your SAP component is running.

        + *

        Accepted values are alphanumeric.

        + */ + inline const Aws::String& GetEc2InstanceId() const{ return m_ec2InstanceId; } + inline bool Ec2InstanceIdHasBeenSet() const { return m_ec2InstanceIdHasBeenSet; } + inline void SetEc2InstanceId(const Aws::String& value) { m_ec2InstanceIdHasBeenSet = true; m_ec2InstanceId = value; } + inline void SetEc2InstanceId(Aws::String&& value) { m_ec2InstanceIdHasBeenSet = true; m_ec2InstanceId = std::move(value); } + inline void SetEc2InstanceId(const char* value) { m_ec2InstanceIdHasBeenSet = true; m_ec2InstanceId.assign(value); } + inline ComponentInfo& WithEc2InstanceId(const Aws::String& value) { SetEc2InstanceId(value); return *this;} + inline ComponentInfo& WithEc2InstanceId(Aws::String&& value) { SetEc2InstanceId(std::move(value)); return *this;} + inline ComponentInfo& WithEc2InstanceId(const char* value) { SetEc2InstanceId(value); return *this;} + ///@} + private: + + ComponentType m_componentType; + bool m_componentTypeHasBeenSet = false; + + Aws::String m_sid; + bool m_sidHasBeenSet = false; + + Aws::String m_ec2InstanceId; + bool m_ec2InstanceIdHasBeenSet = false; + }; + +} // namespace Model +} // namespace SsmSap +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/RegisterApplicationRequest.h b/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/RegisterApplicationRequest.h index 2f397bbe239..3f473486bc2 100644 --- a/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/RegisterApplicationRequest.h +++ b/generated/src/aws-cpp-sdk-ssm-sap/include/aws/ssm-sap/model/RegisterApplicationRequest.h @@ -11,6 +11,7 @@ #include #include #include +#include #include namespace Aws @@ -151,6 +152,22 @@ namespace Model inline RegisterApplicationRequest& WithDatabaseArn(Aws::String&& value) { SetDatabaseArn(std::move(value)); return *this;} inline RegisterApplicationRequest& WithDatabaseArn(const char* value) { SetDatabaseArn(value); return *this;} ///@} + + ///@{ + /** + *

        This is an optional parameter for component details to which the SAP ABAP + * application is attached, such as Web Dispatcher.

        This is an array of + * ApplicationComponent objects. You may input 0 to 5 items.

        + */ + inline const Aws::Vector& GetComponentsInfo() const{ return m_componentsInfo; } + inline bool ComponentsInfoHasBeenSet() const { return m_componentsInfoHasBeenSet; } + inline void SetComponentsInfo(const Aws::Vector& value) { m_componentsInfoHasBeenSet = true; m_componentsInfo = value; } + inline void SetComponentsInfo(Aws::Vector&& value) { m_componentsInfoHasBeenSet = true; m_componentsInfo = std::move(value); } + inline RegisterApplicationRequest& WithComponentsInfo(const Aws::Vector& value) { SetComponentsInfo(value); return *this;} + inline RegisterApplicationRequest& WithComponentsInfo(Aws::Vector&& value) { SetComponentsInfo(std::move(value)); return *this;} + inline RegisterApplicationRequest& AddComponentsInfo(const ComponentInfo& value) { m_componentsInfoHasBeenSet = true; m_componentsInfo.push_back(value); return *this; } + inline RegisterApplicationRequest& AddComponentsInfo(ComponentInfo&& value) { m_componentsInfoHasBeenSet = true; m_componentsInfo.push_back(std::move(value)); return *this; } + ///@} private: Aws::String m_applicationId; @@ -176,6 +193,9 @@ namespace Model Aws::String m_databaseArn; bool m_databaseArnHasBeenSet = false; + + Aws::Vector m_componentsInfo; + bool m_componentsInfoHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-ssm-sap/source/model/ComponentInfo.cpp b/generated/src/aws-cpp-sdk-ssm-sap/source/model/ComponentInfo.cpp new file mode 100644 index 00000000000..3058b757aed --- /dev/null +++ b/generated/src/aws-cpp-sdk-ssm-sap/source/model/ComponentInfo.cpp @@ -0,0 +1,87 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include + +#include + +using namespace Aws::Utils::Json; +using namespace Aws::Utils; + +namespace Aws +{ +namespace SsmSap +{ +namespace Model +{ + +ComponentInfo::ComponentInfo() : + m_componentType(ComponentType::NOT_SET), + m_componentTypeHasBeenSet(false), + m_sidHasBeenSet(false), + m_ec2InstanceIdHasBeenSet(false) +{ +} + +ComponentInfo::ComponentInfo(JsonView jsonValue) + : ComponentInfo() +{ + *this = jsonValue; +} + +ComponentInfo& ComponentInfo::operator =(JsonView jsonValue) +{ + if(jsonValue.ValueExists("ComponentType")) + { + m_componentType = ComponentTypeMapper::GetComponentTypeForName(jsonValue.GetString("ComponentType")); + + m_componentTypeHasBeenSet = true; + } + + if(jsonValue.ValueExists("Sid")) + { + m_sid = jsonValue.GetString("Sid"); + + m_sidHasBeenSet = true; + } + + if(jsonValue.ValueExists("Ec2InstanceId")) + { + m_ec2InstanceId = jsonValue.GetString("Ec2InstanceId"); + + m_ec2InstanceIdHasBeenSet = true; + } + + return *this; +} + +JsonValue ComponentInfo::Jsonize() const +{ + JsonValue payload; + + if(m_componentTypeHasBeenSet) + { + payload.WithString("ComponentType", ComponentTypeMapper::GetNameForComponentType(m_componentType)); + } + + if(m_sidHasBeenSet) + { + payload.WithString("Sid", m_sid); + + } + + if(m_ec2InstanceIdHasBeenSet) + { + payload.WithString("Ec2InstanceId", m_ec2InstanceId); + + } + + return payload; +} + +} // namespace Model +} // namespace SsmSap +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-ssm-sap/source/model/RegisterApplicationRequest.cpp b/generated/src/aws-cpp-sdk-ssm-sap/source/model/RegisterApplicationRequest.cpp index 83cdf1ed97b..30c9e6c21ac 100644 --- a/generated/src/aws-cpp-sdk-ssm-sap/source/model/RegisterApplicationRequest.cpp +++ b/generated/src/aws-cpp-sdk-ssm-sap/source/model/RegisterApplicationRequest.cpp @@ -21,7 +21,8 @@ RegisterApplicationRequest::RegisterApplicationRequest() : m_sidHasBeenSet(false), m_tagsHasBeenSet(false), m_credentialsHasBeenSet(false), - m_databaseArnHasBeenSet(false) + m_databaseArnHasBeenSet(false), + m_componentsInfoHasBeenSet(false) { } @@ -91,6 +92,17 @@ Aws::String RegisterApplicationRequest::SerializePayload() const } + if(m_componentsInfoHasBeenSet) + { + Aws::Utils::Array componentsInfoJsonList(m_componentsInfo.size()); + for(unsigned componentsInfoIndex = 0; componentsInfoIndex < componentsInfoJsonList.GetLength(); ++componentsInfoIndex) + { + componentsInfoJsonList[componentsInfoIndex].AsObject(m_componentsInfo[componentsInfoIndex].Jsonize()); + } + payload.WithArray("ComponentsInfo", std::move(componentsInfoJsonList)); + + } + return payload.View().WriteReadable(); } diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAModeForDirectoryEnum.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAModeForDirectoryEnum.h new file mode 100644 index 00000000000..9666c72ffed --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAModeForDirectoryEnum.h @@ -0,0 +1,31 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace WorkSpaces +{ +namespace Model +{ + enum class AGAModeForDirectoryEnum + { + NOT_SET, + ENABLED_AUTO, + DISABLED + }; + +namespace AGAModeForDirectoryEnumMapper +{ +AWS_WORKSPACES_API AGAModeForDirectoryEnum GetAGAModeForDirectoryEnumForName(const Aws::String& name); + +AWS_WORKSPACES_API Aws::String GetNameForAGAModeForDirectoryEnum(AGAModeForDirectoryEnum value); +} // namespace AGAModeForDirectoryEnumMapper +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAModeForWorkSpaceEnum.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAModeForWorkSpaceEnum.h new file mode 100644 index 00000000000..70b71b2228a --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAModeForWorkSpaceEnum.h @@ -0,0 +1,32 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace WorkSpaces +{ +namespace Model +{ + enum class AGAModeForWorkSpaceEnum + { + NOT_SET, + ENABLED_AUTO, + DISABLED, + INHERITED + }; + +namespace AGAModeForWorkSpaceEnumMapper +{ +AWS_WORKSPACES_API AGAModeForWorkSpaceEnum GetAGAModeForWorkSpaceEnumForName(const Aws::String& name); + +AWS_WORKSPACES_API Aws::String GetNameForAGAModeForWorkSpaceEnum(AGAModeForWorkSpaceEnum value); +} // namespace AGAModeForWorkSpaceEnumMapper +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAPreferredProtocolForDirectory.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAPreferredProtocolForDirectory.h new file mode 100644 index 00000000000..cdf0057347b --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAPreferredProtocolForDirectory.h @@ -0,0 +1,31 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace WorkSpaces +{ +namespace Model +{ + enum class AGAPreferredProtocolForDirectory + { + NOT_SET, + TCP, + NONE + }; + +namespace AGAPreferredProtocolForDirectoryMapper +{ +AWS_WORKSPACES_API AGAPreferredProtocolForDirectory GetAGAPreferredProtocolForDirectoryForName(const Aws::String& name); + +AWS_WORKSPACES_API Aws::String GetNameForAGAPreferredProtocolForDirectory(AGAPreferredProtocolForDirectory value); +} // namespace AGAPreferredProtocolForDirectoryMapper +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAPreferredProtocolForWorkSpace.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAPreferredProtocolForWorkSpace.h new file mode 100644 index 00000000000..b9716558fe7 --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/AGAPreferredProtocolForWorkSpace.h @@ -0,0 +1,32 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include + +namespace Aws +{ +namespace WorkSpaces +{ +namespace Model +{ + enum class AGAPreferredProtocolForWorkSpace + { + NOT_SET, + TCP, + NONE, + INHERITED + }; + +namespace AGAPreferredProtocolForWorkSpaceMapper +{ +AWS_WORKSPACES_API AGAPreferredProtocolForWorkSpace GetAGAPreferredProtocolForWorkSpaceForName(const Aws::String& name); + +AWS_WORKSPACES_API Aws::String GetNameForAGAPreferredProtocolForWorkSpace(AGAPreferredProtocolForWorkSpace value); +} // namespace AGAPreferredProtocolForWorkSpaceMapper +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/GlobalAcceleratorForDirectory.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/GlobalAcceleratorForDirectory.h new file mode 100644 index 00000000000..03559373a5b --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/GlobalAcceleratorForDirectory.h @@ -0,0 +1,75 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include +#include +#include + +namespace Aws +{ +namespace Utils +{ +namespace Json +{ + class JsonValue; + class JsonView; +} // namespace Json +} // namespace Utils +namespace WorkSpaces +{ +namespace Model +{ + + /** + *

        Describes the Global Accelerator for directory

        See Also:

        AWS + * API Reference

        + */ + class GlobalAcceleratorForDirectory + { + public: + AWS_WORKSPACES_API GlobalAcceleratorForDirectory(); + AWS_WORKSPACES_API GlobalAcceleratorForDirectory(Aws::Utils::Json::JsonView jsonValue); + AWS_WORKSPACES_API GlobalAcceleratorForDirectory& operator=(Aws::Utils::Json::JsonView jsonValue); + AWS_WORKSPACES_API Aws::Utils::Json::JsonValue Jsonize() const; + + + ///@{ + /** + *

        Indicates if Global Accelerator for directory is enabled or disabled.

        + */ + inline const AGAModeForDirectoryEnum& GetMode() const{ return m_mode; } + inline bool ModeHasBeenSet() const { return m_modeHasBeenSet; } + inline void SetMode(const AGAModeForDirectoryEnum& value) { m_modeHasBeenSet = true; m_mode = value; } + inline void SetMode(AGAModeForDirectoryEnum&& value) { m_modeHasBeenSet = true; m_mode = std::move(value); } + inline GlobalAcceleratorForDirectory& WithMode(const AGAModeForDirectoryEnum& value) { SetMode(value); return *this;} + inline GlobalAcceleratorForDirectory& WithMode(AGAModeForDirectoryEnum&& value) { SetMode(std::move(value)); return *this;} + ///@} + + ///@{ + /** + *

        Indicates the preferred protocol for Global Accelerator.

        + */ + inline const AGAPreferredProtocolForDirectory& GetPreferredProtocol() const{ return m_preferredProtocol; } + inline bool PreferredProtocolHasBeenSet() const { return m_preferredProtocolHasBeenSet; } + inline void SetPreferredProtocol(const AGAPreferredProtocolForDirectory& value) { m_preferredProtocolHasBeenSet = true; m_preferredProtocol = value; } + inline void SetPreferredProtocol(AGAPreferredProtocolForDirectory&& value) { m_preferredProtocolHasBeenSet = true; m_preferredProtocol = std::move(value); } + inline GlobalAcceleratorForDirectory& WithPreferredProtocol(const AGAPreferredProtocolForDirectory& value) { SetPreferredProtocol(value); return *this;} + inline GlobalAcceleratorForDirectory& WithPreferredProtocol(AGAPreferredProtocolForDirectory&& value) { SetPreferredProtocol(std::move(value)); return *this;} + ///@} + private: + + AGAModeForDirectoryEnum m_mode; + bool m_modeHasBeenSet = false; + + AGAPreferredProtocolForDirectory m_preferredProtocol; + bool m_preferredProtocolHasBeenSet = false; + }; + +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/GlobalAcceleratorForWorkSpace.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/GlobalAcceleratorForWorkSpace.h new file mode 100644 index 00000000000..d0a1615d56f --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/GlobalAcceleratorForWorkSpace.h @@ -0,0 +1,77 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#pragma once +#include +#include +#include +#include + +namespace Aws +{ +namespace Utils +{ +namespace Json +{ + class JsonValue; + class JsonView; +} // namespace Json +} // namespace Utils +namespace WorkSpaces +{ +namespace Model +{ + + /** + *

        Describes the Global Accelerator for WorkSpaces.

        See Also:

        + * AWS + * API Reference

        + */ + class GlobalAcceleratorForWorkSpace + { + public: + AWS_WORKSPACES_API GlobalAcceleratorForWorkSpace(); + AWS_WORKSPACES_API GlobalAcceleratorForWorkSpace(Aws::Utils::Json::JsonView jsonValue); + AWS_WORKSPACES_API GlobalAcceleratorForWorkSpace& operator=(Aws::Utils::Json::JsonView jsonValue); + AWS_WORKSPACES_API Aws::Utils::Json::JsonValue Jsonize() const; + + + ///@{ + /** + *

        Indicates if Global Accelerator for WorkSpaces is enabled, disabled, or the + * same mode as the associated directory.

        + */ + inline const AGAModeForWorkSpaceEnum& GetMode() const{ return m_mode; } + inline bool ModeHasBeenSet() const { return m_modeHasBeenSet; } + inline void SetMode(const AGAModeForWorkSpaceEnum& value) { m_modeHasBeenSet = true; m_mode = value; } + inline void SetMode(AGAModeForWorkSpaceEnum&& value) { m_modeHasBeenSet = true; m_mode = std::move(value); } + inline GlobalAcceleratorForWorkSpace& WithMode(const AGAModeForWorkSpaceEnum& value) { SetMode(value); return *this;} + inline GlobalAcceleratorForWorkSpace& WithMode(AGAModeForWorkSpaceEnum&& value) { SetMode(std::move(value)); return *this;} + ///@} + + ///@{ + /** + *

        Indicates the preferred protocol for Global Accelerator.

        + */ + inline const AGAPreferredProtocolForWorkSpace& GetPreferredProtocol() const{ return m_preferredProtocol; } + inline bool PreferredProtocolHasBeenSet() const { return m_preferredProtocolHasBeenSet; } + inline void SetPreferredProtocol(const AGAPreferredProtocolForWorkSpace& value) { m_preferredProtocolHasBeenSet = true; m_preferredProtocol = value; } + inline void SetPreferredProtocol(AGAPreferredProtocolForWorkSpace&& value) { m_preferredProtocolHasBeenSet = true; m_preferredProtocol = std::move(value); } + inline GlobalAcceleratorForWorkSpace& WithPreferredProtocol(const AGAPreferredProtocolForWorkSpace& value) { SetPreferredProtocol(value); return *this;} + inline GlobalAcceleratorForWorkSpace& WithPreferredProtocol(AGAPreferredProtocolForWorkSpace&& value) { SetPreferredProtocol(std::move(value)); return *this;} + ///@} + private: + + AGAModeForWorkSpaceEnum m_mode; + bool m_modeHasBeenSet = false; + + AGAPreferredProtocolForWorkSpace m_preferredProtocol; + bool m_preferredProtocolHasBeenSet = false; + }; + +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/StreamingProperties.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/StreamingProperties.h index 165a1d6ea6e..b8b718cc4e5 100644 --- a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/StreamingProperties.h +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/StreamingProperties.h @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include @@ -79,6 +80,18 @@ namespace Model inline StreamingProperties& AddStorageConnectors(const StorageConnector& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(value); return *this; } inline StreamingProperties& AddStorageConnectors(StorageConnector&& value) { m_storageConnectorsHasBeenSet = true; m_storageConnectors.push_back(std::move(value)); return *this; } ///@} + + ///@{ + /** + *

        Indicates the Global Accelerator properties.

        + */ + inline const GlobalAcceleratorForDirectory& GetGlobalAccelerator() const{ return m_globalAccelerator; } + inline bool GlobalAcceleratorHasBeenSet() const { return m_globalAcceleratorHasBeenSet; } + inline void SetGlobalAccelerator(const GlobalAcceleratorForDirectory& value) { m_globalAcceleratorHasBeenSet = true; m_globalAccelerator = value; } + inline void SetGlobalAccelerator(GlobalAcceleratorForDirectory&& value) { m_globalAcceleratorHasBeenSet = true; m_globalAccelerator = std::move(value); } + inline StreamingProperties& WithGlobalAccelerator(const GlobalAcceleratorForDirectory& value) { SetGlobalAccelerator(value); return *this;} + inline StreamingProperties& WithGlobalAccelerator(GlobalAcceleratorForDirectory&& value) { SetGlobalAccelerator(std::move(value)); return *this;} + ///@} private: StreamingExperiencePreferredProtocolEnum m_streamingExperiencePreferredProtocol; @@ -89,6 +102,9 @@ namespace Model Aws::Vector m_storageConnectors; bool m_storageConnectorsHasBeenSet = false; + + GlobalAcceleratorForDirectory m_globalAccelerator; + bool m_globalAcceleratorHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/WorkspaceProperties.h b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/WorkspaceProperties.h index de792dd1a26..c5c3485860f 100644 --- a/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/WorkspaceProperties.h +++ b/generated/src/aws-cpp-sdk-workspaces/include/aws/workspaces/model/WorkspaceProperties.h @@ -9,6 +9,7 @@ #include #include #include +#include #include #include @@ -147,6 +148,18 @@ namespace Model inline WorkspaceProperties& WithOperatingSystemName(const OperatingSystemName& value) { SetOperatingSystemName(value); return *this;} inline WorkspaceProperties& WithOperatingSystemName(OperatingSystemName&& value) { SetOperatingSystemName(std::move(value)); return *this;} ///@} + + ///@{ + /** + *

        Indicates the Global Accelerator properties.

        + */ + inline const GlobalAcceleratorForWorkSpace& GetGlobalAccelerator() const{ return m_globalAccelerator; } + inline bool GlobalAcceleratorHasBeenSet() const { return m_globalAcceleratorHasBeenSet; } + inline void SetGlobalAccelerator(const GlobalAcceleratorForWorkSpace& value) { m_globalAcceleratorHasBeenSet = true; m_globalAccelerator = value; } + inline void SetGlobalAccelerator(GlobalAcceleratorForWorkSpace&& value) { m_globalAcceleratorHasBeenSet = true; m_globalAccelerator = std::move(value); } + inline WorkspaceProperties& WithGlobalAccelerator(const GlobalAcceleratorForWorkSpace& value) { SetGlobalAccelerator(value); return *this;} + inline WorkspaceProperties& WithGlobalAccelerator(GlobalAcceleratorForWorkSpace&& value) { SetGlobalAccelerator(std::move(value)); return *this;} + ///@} private: RunningMode m_runningMode; @@ -169,6 +182,9 @@ namespace Model OperatingSystemName m_operatingSystemName; bool m_operatingSystemNameHasBeenSet = false; + + GlobalAcceleratorForWorkSpace m_globalAccelerator; + bool m_globalAcceleratorHasBeenSet = false; }; } // namespace Model diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/AGAModeForDirectoryEnum.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAModeForDirectoryEnum.cpp new file mode 100644 index 00000000000..36f56c64b58 --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAModeForDirectoryEnum.cpp @@ -0,0 +1,72 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include + +using namespace Aws::Utils; + + +namespace Aws +{ + namespace WorkSpaces + { + namespace Model + { + namespace AGAModeForDirectoryEnumMapper + { + + static const int ENABLED_AUTO_HASH = HashingUtils::HashString("ENABLED_AUTO"); + static const int DISABLED_HASH = HashingUtils::HashString("DISABLED"); + + + AGAModeForDirectoryEnum GetAGAModeForDirectoryEnumForName(const Aws::String& name) + { + int hashCode = HashingUtils::HashString(name.c_str()); + if (hashCode == ENABLED_AUTO_HASH) + { + return AGAModeForDirectoryEnum::ENABLED_AUTO; + } + else if (hashCode == DISABLED_HASH) + { + return AGAModeForDirectoryEnum::DISABLED; + } + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + overflowContainer->StoreOverflow(hashCode, name); + return static_cast(hashCode); + } + + return AGAModeForDirectoryEnum::NOT_SET; + } + + Aws::String GetNameForAGAModeForDirectoryEnum(AGAModeForDirectoryEnum enumValue) + { + switch(enumValue) + { + case AGAModeForDirectoryEnum::NOT_SET: + return {}; + case AGAModeForDirectoryEnum::ENABLED_AUTO: + return "ENABLED_AUTO"; + case AGAModeForDirectoryEnum::DISABLED: + return "DISABLED"; + default: + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + return overflowContainer->RetrieveOverflow(static_cast(enumValue)); + } + + return {}; + } + } + + } // namespace AGAModeForDirectoryEnumMapper + } // namespace Model + } // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/AGAModeForWorkSpaceEnum.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAModeForWorkSpaceEnum.cpp new file mode 100644 index 00000000000..d85dec6ed22 --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAModeForWorkSpaceEnum.cpp @@ -0,0 +1,79 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include + +using namespace Aws::Utils; + + +namespace Aws +{ + namespace WorkSpaces + { + namespace Model + { + namespace AGAModeForWorkSpaceEnumMapper + { + + static const int ENABLED_AUTO_HASH = HashingUtils::HashString("ENABLED_AUTO"); + static const int DISABLED_HASH = HashingUtils::HashString("DISABLED"); + static const int INHERITED_HASH = HashingUtils::HashString("INHERITED"); + + + AGAModeForWorkSpaceEnum GetAGAModeForWorkSpaceEnumForName(const Aws::String& name) + { + int hashCode = HashingUtils::HashString(name.c_str()); + if (hashCode == ENABLED_AUTO_HASH) + { + return AGAModeForWorkSpaceEnum::ENABLED_AUTO; + } + else if (hashCode == DISABLED_HASH) + { + return AGAModeForWorkSpaceEnum::DISABLED; + } + else if (hashCode == INHERITED_HASH) + { + return AGAModeForWorkSpaceEnum::INHERITED; + } + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + overflowContainer->StoreOverflow(hashCode, name); + return static_cast(hashCode); + } + + return AGAModeForWorkSpaceEnum::NOT_SET; + } + + Aws::String GetNameForAGAModeForWorkSpaceEnum(AGAModeForWorkSpaceEnum enumValue) + { + switch(enumValue) + { + case AGAModeForWorkSpaceEnum::NOT_SET: + return {}; + case AGAModeForWorkSpaceEnum::ENABLED_AUTO: + return "ENABLED_AUTO"; + case AGAModeForWorkSpaceEnum::DISABLED: + return "DISABLED"; + case AGAModeForWorkSpaceEnum::INHERITED: + return "INHERITED"; + default: + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + return overflowContainer->RetrieveOverflow(static_cast(enumValue)); + } + + return {}; + } + } + + } // namespace AGAModeForWorkSpaceEnumMapper + } // namespace Model + } // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/AGAPreferredProtocolForDirectory.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAPreferredProtocolForDirectory.cpp new file mode 100644 index 00000000000..a7b6a515244 --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAPreferredProtocolForDirectory.cpp @@ -0,0 +1,72 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include + +using namespace Aws::Utils; + + +namespace Aws +{ + namespace WorkSpaces + { + namespace Model + { + namespace AGAPreferredProtocolForDirectoryMapper + { + + static const int TCP_HASH = HashingUtils::HashString("TCP"); + static const int NONE_HASH = HashingUtils::HashString("NONE"); + + + AGAPreferredProtocolForDirectory GetAGAPreferredProtocolForDirectoryForName(const Aws::String& name) + { + int hashCode = HashingUtils::HashString(name.c_str()); + if (hashCode == TCP_HASH) + { + return AGAPreferredProtocolForDirectory::TCP; + } + else if (hashCode == NONE_HASH) + { + return AGAPreferredProtocolForDirectory::NONE; + } + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + overflowContainer->StoreOverflow(hashCode, name); + return static_cast(hashCode); + } + + return AGAPreferredProtocolForDirectory::NOT_SET; + } + + Aws::String GetNameForAGAPreferredProtocolForDirectory(AGAPreferredProtocolForDirectory enumValue) + { + switch(enumValue) + { + case AGAPreferredProtocolForDirectory::NOT_SET: + return {}; + case AGAPreferredProtocolForDirectory::TCP: + return "TCP"; + case AGAPreferredProtocolForDirectory::NONE: + return "NONE"; + default: + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + return overflowContainer->RetrieveOverflow(static_cast(enumValue)); + } + + return {}; + } + } + + } // namespace AGAPreferredProtocolForDirectoryMapper + } // namespace Model + } // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/AGAPreferredProtocolForWorkSpace.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAPreferredProtocolForWorkSpace.cpp new file mode 100644 index 00000000000..eec8ecfa953 --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/AGAPreferredProtocolForWorkSpace.cpp @@ -0,0 +1,79 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include +#include +#include + +using namespace Aws::Utils; + + +namespace Aws +{ + namespace WorkSpaces + { + namespace Model + { + namespace AGAPreferredProtocolForWorkSpaceMapper + { + + static const int TCP_HASH = HashingUtils::HashString("TCP"); + static const int NONE_HASH = HashingUtils::HashString("NONE"); + static const int INHERITED_HASH = HashingUtils::HashString("INHERITED"); + + + AGAPreferredProtocolForWorkSpace GetAGAPreferredProtocolForWorkSpaceForName(const Aws::String& name) + { + int hashCode = HashingUtils::HashString(name.c_str()); + if (hashCode == TCP_HASH) + { + return AGAPreferredProtocolForWorkSpace::TCP; + } + else if (hashCode == NONE_HASH) + { + return AGAPreferredProtocolForWorkSpace::NONE; + } + else if (hashCode == INHERITED_HASH) + { + return AGAPreferredProtocolForWorkSpace::INHERITED; + } + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + overflowContainer->StoreOverflow(hashCode, name); + return static_cast(hashCode); + } + + return AGAPreferredProtocolForWorkSpace::NOT_SET; + } + + Aws::String GetNameForAGAPreferredProtocolForWorkSpace(AGAPreferredProtocolForWorkSpace enumValue) + { + switch(enumValue) + { + case AGAPreferredProtocolForWorkSpace::NOT_SET: + return {}; + case AGAPreferredProtocolForWorkSpace::TCP: + return "TCP"; + case AGAPreferredProtocolForWorkSpace::NONE: + return "NONE"; + case AGAPreferredProtocolForWorkSpace::INHERITED: + return "INHERITED"; + default: + EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); + if(overflowContainer) + { + return overflowContainer->RetrieveOverflow(static_cast(enumValue)); + } + + return {}; + } + } + + } // namespace AGAPreferredProtocolForWorkSpaceMapper + } // namespace Model + } // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/GlobalAcceleratorForDirectory.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/GlobalAcceleratorForDirectory.cpp new file mode 100644 index 00000000000..3a7066038b3 --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/GlobalAcceleratorForDirectory.cpp @@ -0,0 +1,73 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include + +#include + +using namespace Aws::Utils::Json; +using namespace Aws::Utils; + +namespace Aws +{ +namespace WorkSpaces +{ +namespace Model +{ + +GlobalAcceleratorForDirectory::GlobalAcceleratorForDirectory() : + m_mode(AGAModeForDirectoryEnum::NOT_SET), + m_modeHasBeenSet(false), + m_preferredProtocol(AGAPreferredProtocolForDirectory::NOT_SET), + m_preferredProtocolHasBeenSet(false) +{ +} + +GlobalAcceleratorForDirectory::GlobalAcceleratorForDirectory(JsonView jsonValue) + : GlobalAcceleratorForDirectory() +{ + *this = jsonValue; +} + +GlobalAcceleratorForDirectory& GlobalAcceleratorForDirectory::operator =(JsonView jsonValue) +{ + if(jsonValue.ValueExists("Mode")) + { + m_mode = AGAModeForDirectoryEnumMapper::GetAGAModeForDirectoryEnumForName(jsonValue.GetString("Mode")); + + m_modeHasBeenSet = true; + } + + if(jsonValue.ValueExists("PreferredProtocol")) + { + m_preferredProtocol = AGAPreferredProtocolForDirectoryMapper::GetAGAPreferredProtocolForDirectoryForName(jsonValue.GetString("PreferredProtocol")); + + m_preferredProtocolHasBeenSet = true; + } + + return *this; +} + +JsonValue GlobalAcceleratorForDirectory::Jsonize() const +{ + JsonValue payload; + + if(m_modeHasBeenSet) + { + payload.WithString("Mode", AGAModeForDirectoryEnumMapper::GetNameForAGAModeForDirectoryEnum(m_mode)); + } + + if(m_preferredProtocolHasBeenSet) + { + payload.WithString("PreferredProtocol", AGAPreferredProtocolForDirectoryMapper::GetNameForAGAPreferredProtocolForDirectory(m_preferredProtocol)); + } + + return payload; +} + +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/GlobalAcceleratorForWorkSpace.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/GlobalAcceleratorForWorkSpace.cpp new file mode 100644 index 00000000000..6688041e49b --- /dev/null +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/GlobalAcceleratorForWorkSpace.cpp @@ -0,0 +1,73 @@ +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include +#include + +#include + +using namespace Aws::Utils::Json; +using namespace Aws::Utils; + +namespace Aws +{ +namespace WorkSpaces +{ +namespace Model +{ + +GlobalAcceleratorForWorkSpace::GlobalAcceleratorForWorkSpace() : + m_mode(AGAModeForWorkSpaceEnum::NOT_SET), + m_modeHasBeenSet(false), + m_preferredProtocol(AGAPreferredProtocolForWorkSpace::NOT_SET), + m_preferredProtocolHasBeenSet(false) +{ +} + +GlobalAcceleratorForWorkSpace::GlobalAcceleratorForWorkSpace(JsonView jsonValue) + : GlobalAcceleratorForWorkSpace() +{ + *this = jsonValue; +} + +GlobalAcceleratorForWorkSpace& GlobalAcceleratorForWorkSpace::operator =(JsonView jsonValue) +{ + if(jsonValue.ValueExists("Mode")) + { + m_mode = AGAModeForWorkSpaceEnumMapper::GetAGAModeForWorkSpaceEnumForName(jsonValue.GetString("Mode")); + + m_modeHasBeenSet = true; + } + + if(jsonValue.ValueExists("PreferredProtocol")) + { + m_preferredProtocol = AGAPreferredProtocolForWorkSpaceMapper::GetAGAPreferredProtocolForWorkSpaceForName(jsonValue.GetString("PreferredProtocol")); + + m_preferredProtocolHasBeenSet = true; + } + + return *this; +} + +JsonValue GlobalAcceleratorForWorkSpace::Jsonize() const +{ + JsonValue payload; + + if(m_modeHasBeenSet) + { + payload.WithString("Mode", AGAModeForWorkSpaceEnumMapper::GetNameForAGAModeForWorkSpaceEnum(m_mode)); + } + + if(m_preferredProtocolHasBeenSet) + { + payload.WithString("PreferredProtocol", AGAPreferredProtocolForWorkSpaceMapper::GetNameForAGAPreferredProtocolForWorkSpace(m_preferredProtocol)); + } + + return payload; +} + +} // namespace Model +} // namespace WorkSpaces +} // namespace Aws diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/StreamingProperties.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/StreamingProperties.cpp index 4445be0705e..b277f831c43 100644 --- a/generated/src/aws-cpp-sdk-workspaces/source/model/StreamingProperties.cpp +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/StreamingProperties.cpp @@ -22,7 +22,8 @@ StreamingProperties::StreamingProperties() : m_streamingExperiencePreferredProtocol(StreamingExperiencePreferredProtocolEnum::NOT_SET), m_streamingExperiencePreferredProtocolHasBeenSet(false), m_userSettingsHasBeenSet(false), - m_storageConnectorsHasBeenSet(false) + m_storageConnectorsHasBeenSet(false), + m_globalAcceleratorHasBeenSet(false) { } @@ -61,6 +62,13 @@ StreamingProperties& StreamingProperties::operator =(JsonView jsonValue) m_storageConnectorsHasBeenSet = true; } + if(jsonValue.ValueExists("GlobalAccelerator")) + { + m_globalAccelerator = jsonValue.GetObject("GlobalAccelerator"); + + m_globalAcceleratorHasBeenSet = true; + } + return *this; } @@ -95,6 +103,12 @@ JsonValue StreamingProperties::Jsonize() const } + if(m_globalAcceleratorHasBeenSet) + { + payload.WithObject("GlobalAccelerator", m_globalAccelerator.Jsonize()); + + } + return payload; } diff --git a/generated/src/aws-cpp-sdk-workspaces/source/model/WorkspaceProperties.cpp b/generated/src/aws-cpp-sdk-workspaces/source/model/WorkspaceProperties.cpp index 562c301208c..f40f2c008c2 100644 --- a/generated/src/aws-cpp-sdk-workspaces/source/model/WorkspaceProperties.cpp +++ b/generated/src/aws-cpp-sdk-workspaces/source/model/WorkspaceProperties.cpp @@ -31,7 +31,8 @@ WorkspaceProperties::WorkspaceProperties() : m_computeTypeNameHasBeenSet(false), m_protocolsHasBeenSet(false), m_operatingSystemName(OperatingSystemName::NOT_SET), - m_operatingSystemNameHasBeenSet(false) + m_operatingSystemNameHasBeenSet(false), + m_globalAcceleratorHasBeenSet(false) { } @@ -95,6 +96,13 @@ WorkspaceProperties& WorkspaceProperties::operator =(JsonView jsonValue) m_operatingSystemNameHasBeenSet = true; } + if(jsonValue.ValueExists("GlobalAccelerator")) + { + m_globalAccelerator = jsonValue.GetObject("GlobalAccelerator"); + + m_globalAcceleratorHasBeenSet = true; + } + return *this; } @@ -146,6 +154,12 @@ JsonValue WorkspaceProperties::Jsonize() const payload.WithString("OperatingSystemName", OperatingSystemNameMapper::GetNameForOperatingSystemName(m_operatingSystemName)); } + if(m_globalAcceleratorHasBeenSet) + { + payload.WithObject("GlobalAccelerator", m_globalAccelerator.Jsonize()); + + } + return payload; } diff --git a/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h b/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h index 85602d1e9f9..4f35d5a1785 100644 --- a/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h +++ b/src/aws-cpp-sdk-core/include/aws/core/VersionConfig.h @@ -4,7 +4,7 @@ */ #pragma once -#define AWS_SDK_VERSION_STRING "1.11.470" +#define AWS_SDK_VERSION_STRING "1.11.471" #define AWS_SDK_VERSION_MAJOR 1 #define AWS_SDK_VERSION_MINOR 11 -#define AWS_SDK_VERSION_PATCH 470 +#define AWS_SDK_VERSION_PATCH 471 diff --git a/tools/code-generation/api-descriptions/appstream-2016-12-01.normal.json b/tools/code-generation/api-descriptions/appstream-2016-12-01.normal.json index 03b7cf15a6f..04e2309b131 100644 --- a/tools/code-generation/api-descriptions/appstream-2016-12-01.normal.json +++ b/tools/code-generation/api-descriptions/appstream-2016-12-01.normal.json @@ -4533,7 +4533,8 @@ "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", - "RHEL8" + "RHEL8", + "ROCKY_LINUX8" ] }, "Platforms":{ diff --git a/tools/code-generation/api-descriptions/mediaconvert-2017-08-29.normal.json b/tools/code-generation/api-descriptions/mediaconvert-2017-08-29.normal.json index 55a0ff8e024..958f2056cbd 100644 --- a/tools/code-generation/api-descriptions/mediaconvert-2017-08-29.normal.json +++ b/tools/code-generation/api-descriptions/mediaconvert-2017-08-29.normal.json @@ -1842,7 +1842,7 @@ "documentation": "Advanced audio normalization settings. Ignore these settings unless you need to comply with a loudness standard." }, "AudioSourceName": { - "shape": "__string", + "shape": "__stringMax2048", "locationName": "audioSourceName", "documentation": "Specifies which audio data to use from each input. In the simplest case, specify an \"Audio Selector\":#inputs-audio_selector by name based on its order within each input. For example if you specify \"Audio Selector 3\", then the third audio selector will be used from each input. If an input does not have an \"Audio Selector 3\", then the audio selector marked as \"default\" in that input will be used. If there is no audio selector marked as \"default\", silence will be inserted for the duration of that input. Alternatively, an \"Audio Selector Group\":#inputs-audio_selector_group name may be specified, with similar default/silence behavior. If no audio_source_name is specified, then \"Audio Selector 1\" will be chosen automatically." }, @@ -2603,6 +2603,11 @@ "locationName": "outlineSize", "documentation": "Specify the Outline size of the caption text, in pixels. Leave Outline size blank and set Style passthrough to enabled to use the outline size data from your input captions, if present." }, + "RemoveRubyReserveAttributes": { + "shape": "RemoveRubyReserveAttributes", + "locationName": "removeRubyReserveAttributes", + "documentation": "Optionally remove any tts:rubyReserve attributes present in your input, that do not have a tts:ruby attribute in the same element, from your output. Use if your vertical Japanese output captions have alignment issues. To remove ruby reserve attributes when present: Choose Enabled. To not remove any ruby reserve attributes: Keep the default value, Disabled." + }, "ShadowColor": { "shape": "BurninSubtitleShadowColor", "locationName": "shadowColor", @@ -4645,7 +4650,7 @@ }, "DropFrameTimecode": { "type": "string", - "documentation": "Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion is enabled.", + "documentation": "Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion or Timecode track is enabled.", "enum": [ "DISABLED", "ENABLED" @@ -7635,7 +7640,7 @@ "documentation": "Use this setting only when your video source has Dolby Vision studio mastering metadata that is carried in a separate XML file. Specify the Amazon S3 location for the metadata XML file. MediaConvert uses this file to provide global and frame-level metadata for Dolby Vision preprocessing. When you specify a file here and your input also has interleaved global and frame level metadata, MediaConvert ignores the interleaved metadata and uses only the the metadata from this external XML file. Note that your IAM service role must grant MediaConvert read permissions to this file. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html." }, "FileInput": { - "shape": "__stringPatternS3Https", + "shape": "__stringMax2048PatternS3Https", "locationName": "fileInput", "documentation": "Specify the source file for your transcoding job. You can use multiple inputs in a single job. The service concatenates these inputs, in the order that you specify them in the job, to create the outputs. If your input format is IMF, specify your input by providing the path to your CPL. For example, \"s3://bucket/vf/cpl.xml\". If the CPL is in an incomplete IMP, make sure to use *Supplemental IMPs* to specify any supplemental IMPs that contain assets referenced by the CPL." }, @@ -8276,7 +8281,7 @@ "FollowSource": { "shape": "__integerMin1Max150", "locationName": "followSource", - "documentation": "Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable \"Follow source\" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs." + "documentation": "Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable \"Follow source\" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs." }, "Inputs": { "shape": "__listOfInput", @@ -8447,7 +8452,7 @@ "FollowSource": { "shape": "__integerMin1Max150", "locationName": "followSource", - "documentation": "Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable \"Follow source\" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs." + "documentation": "Specify the input that MediaConvert references for your default output settings. MediaConvert uses this input's Resolution, Frame rate, and Pixel aspect ratio for all outputs that you don't manually specify different output settings for. Enabling this setting will disable \"Follow source\" for all other inputs. If MediaConvert cannot follow your source, for example if you specify an audio-only input, MediaConvert uses the first followable input instead. In your JSON job specification, enter an integer from 1 to 150 corresponding to the order of your inputs." }, "Inputs": { "shape": "__listOfInputTemplate", @@ -10779,7 +10784,7 @@ "documentation": "Container specific settings." }, "Extension": { - "shape": "__string", + "shape": "__stringMax256", "locationName": "extension", "documentation": "Use Extension to specify the file extension for outputs in File output groups. If you do not specify a value, the service will use default extensions by container type as follows * MPEG-2 transport stream, m2ts * Quicktime, mov * MXF container, mxf * MPEG-4 container, mp4 * WebM container, webm * No Container, the service will use codec extensions (e.g. AAC, H265, H265, AC3)" }, @@ -10852,7 +10857,7 @@ "documentation": "Use Custom Group Name to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores." }, "Name": { - "shape": "__string", + "shape": "__stringMax2048", "locationName": "name", "documentation": "Name of the output group" }, @@ -11450,6 +11455,14 @@ }, "documentation": "Use Manual audio remixing to adjust audio levels for each audio channel in each output of your job. With audio remixing, you can output more or fewer audio channels than your input audio source provides." }, + "RemoveRubyReserveAttributes": { + "type": "string", + "documentation": "Optionally remove any tts:rubyReserve attributes present in your input, that do not have a tts:ruby attribute in the same element, from your output. Use if your vertical Japanese output captions have alignment issues. To remove ruby reserve attributes when present: Choose Enabled. To not remove any ruby reserve attributes: Keep the default value, Disabled.", + "enum": [ + "DISABLED", + "ENABLED" + ] + }, "RenewalType": { "type": "string", "documentation": "Specifies whether the term of your reserved queue pricing plan is automatically extended (AUTO_RENEW) or expires (EXPIRE) at the end of the term.", @@ -12053,6 +12066,14 @@ "SPECIFIEDSTART" ] }, + "TimecodeTrack": { + "type": "string", + "documentation": "To include a timecode track in your MP4 output: Choose Enabled. MediaConvert writes the timecode track in the Null Media Header box (NMHD), without any timecode text formatting information. You can also specify dropframe or non-dropframe timecode under the Drop Frame Timecode setting. To not include a timecode track: Keep the default value, Disabled.", + "enum": [ + "DISABLED", + "ENABLED" + ] + }, "TimedMetadata": { "type": "string", "documentation": "Set ID3 metadata to Passthrough to include ID3 metadata in this output. This includes ID3 metadata from the following features: ID3 timestamp period, and Custom ID3 metadata inserter. To exclude this ID3 metadata in this output: set ID3 metadata to None or leave blank.", @@ -12670,7 +12691,7 @@ "DropFrameTimecode": { "shape": "DropFrameTimecode", "locationName": "dropFrameTimecode", - "documentation": "Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion is enabled." + "documentation": "Applies only to 29.97 fps outputs. When this feature is enabled, the service will use drop-frame timecode on outputs. If it is not possible to use drop-frame timecode, the system will fall back to non-drop-frame. This setting is enabled by default when Timecode insertion or Timecode track is enabled." }, "FixedAfd": { "shape": "__integerMin0Max15", @@ -12707,6 +12728,11 @@ "locationName": "timecodeInsertion", "documentation": "Applies only to H.264, H.265, MPEG2, and ProRes outputs. Only enable Timecode insertion when the input frame rate is identical to the output frame rate. To include timecodes in this output, set Timecode insertion to PIC_TIMING_SEI. To leave them out, set it to DISABLED. Default is DISABLED. When the service inserts timecodes in an output, by default, it uses any embedded timecodes from the input. If none are present, the service will set the timecode for the first output frame to zero. To change this default behavior, adjust the settings under Timecode configuration. In the console, these settings are located under Job > Job settings > Timecode configuration. Note - Timecode source under input settings does not affect the timecodes that are inserted in the output. Source under Job settings > Timecode configuration does." }, + "TimecodeTrack": { + "shape": "TimecodeTrack", + "locationName": "timecodeTrack", + "documentation": "To include a timecode track in your MP4 output: Choose Enabled. MediaConvert writes the timecode track in the Null Media Header box (NMHD), without any timecode text formatting information. You can also specify dropframe or non-dropframe timecode under the Drop Frame Timecode setting. To not include a timecode track: Keep the default value, Disabled." + }, "VideoPreprocessors": { "shape": "VideoPreprocessor", "locationName": "videoPreprocessors", @@ -14621,6 +14647,19 @@ "type": "string", "max": 1000 }, + "__stringMax2048": { + "type": "string", + "max": 2048 + }, + "__stringMax2048PatternS3Https": { + "type": "string", + "max": 2048, + "pattern": "^s3://([^\\/]+\\/+)+((([^\\/]*)))|^https?://[^\\/].*[^&]$" + }, + "__stringMax256": { + "type": "string", + "max": 256 + }, "__stringMin0": { "type": "string", "min": 0 diff --git a/tools/code-generation/api-descriptions/medialive-2017-10-14.normal.json b/tools/code-generation/api-descriptions/medialive-2017-10-14.normal.json index a69a05153aa..6d768f3cfda 100644 --- a/tools/code-generation/api-descriptions/medialive-2017-10-14.normal.json +++ b/tools/code-generation/api-descriptions/medialive-2017-10-14.normal.json @@ -5162,6 +5162,56 @@ } ], "documentation": "Update the state of a node." + }, + "ListVersions": { + "name": "ListVersions", + "http": { + "method": "GET", + "requestUri": "/prod/versions", + "responseCode": 200 + }, + "input": { + "shape": "ListVersionsRequest" + }, + "output": { + "shape": "ListVersionsResponse", + "documentation": "List of encoder engine versions that are available in this AWS account." + }, + "errors": [ + { + "shape": "BadRequestException", + "documentation": "The service can't process your request because of a problem in the request. Verify that the syntax is correct." + }, + { + "shape": "InternalServerErrorException", + "documentation": "Internal Service Error" + }, + { + "shape": "ForbiddenException", + "documentation": "You don't have permissions for this action with the credentials that you sent." + }, + { + "shape": "BadGatewayException", + "documentation": "Bad Gateway Error" + }, + { + "shape": "NotFoundException", + "documentation": "The service could not complete your request." + }, + { + "shape": "GatewayTimeoutException", + "documentation": "Gateway Timeout" + }, + { + "shape": "TooManyRequestsException", + "documentation": "Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests." + }, + { + "shape": "ConflictException", + "documentation": "The service could not complete your request because there is a conflict with the current state of the resource." + } + ], + "documentation": "Retrieves an array of all the encoder engine versions that are available in this AWS account." } }, "shapes": { @@ -7020,6 +7070,11 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Requested engine version for this channel." } }, "documentation": "Placeholder documentation for Channel" @@ -7161,6 +7216,16 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "AnywhereSettings settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "The engine version that you requested for this channel." + }, + "UsedChannelEngineVersions": { + "shape": "__listOfChannelEngineVersionResponse", + "locationName": "usedChannelEngineVersions", + "documentation": "The engine version that the running pipelines are using." } }, "documentation": "Placeholder documentation for ChannelSummary" @@ -7329,6 +7394,15 @@ "shape": "AnywhereSettings", "locationName": "anywhereSettings", "documentation": "The Elemental Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionRequest", + "locationName": "channelEngineVersion", + "documentation": "The desired engine version for this channel." + }, + "DryRun": { + "shape": "__boolean", + "locationName": "dryRun" } }, "documentation": "Placeholder documentation for CreateChannel" @@ -7410,6 +7484,15 @@ "shape": "AnywhereSettings", "locationName": "anywhereSettings", "documentation": "The Elemental Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionRequest", + "locationName": "channelEngineVersion", + "documentation": "The desired engine version for this channel." + }, + "DryRun": { + "shape": "__boolean", + "locationName": "dryRun" } }, "documentation": "A request to create a channel" @@ -8012,6 +8095,11 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Requested engine version for this channel." } }, "documentation": "Placeholder documentation for DeleteChannelResponse" @@ -8476,6 +8564,11 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Requested engine version for this channel." } }, "documentation": "Placeholder documentation for DescribeChannelResponse" @@ -16008,6 +16101,11 @@ "shape": "__string", "locationName": "pipelineId", "documentation": "Pipeline ID" + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Current engine version of the encoder for this pipeline." } }, "documentation": "Runtime details of a pipeline when a channel is running." @@ -17397,6 +17495,11 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Requested engine version for this channel." } }, "documentation": "Placeholder documentation for StartChannelResponse" @@ -17818,6 +17921,11 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Requested engine version for this channel." } }, "documentation": "Placeholder documentation for StopChannelResponse" @@ -18478,6 +18586,15 @@ "shape": "__string", "locationName": "roleArn", "documentation": "An optional Amazon Resource Name (ARN) of the role to assume when running the Channel. If you do not specify this on an update call but the role was previously set that role will be removed." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionRequest", + "locationName": "channelEngineVersion", + "documentation": "Channel engine version for this channel" + }, + "DryRun": { + "shape": "__boolean", + "locationName": "dryRun" } }, "documentation": "Placeholder documentation for UpdateChannel" @@ -18589,6 +18706,15 @@ "shape": "__string", "locationName": "roleArn", "documentation": "An optional Amazon Resource Name (ARN) of the role to assume when running the Channel. If you do not specify this on an update call but the role was previously set that role will be removed." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionRequest", + "locationName": "channelEngineVersion", + "documentation": "Channel engine version for this channel" + }, + "DryRun": { + "shape": "__boolean", + "locationName": "dryRun" } }, "documentation": "A request to update a channel.", @@ -20522,6 +20648,11 @@ "shape": "DescribeAnywhereSettings", "locationName": "anywhereSettings", "documentation": "Anywhere settings for this channel." + }, + "ChannelEngineVersion": { + "shape": "ChannelEngineVersionResponse", + "locationName": "channelEngineVersion", + "documentation": "Requested engine version for this channel." } }, "documentation": "Placeholder documentation for RestartChannelPipelinesResponse" @@ -28137,6 +28268,57 @@ "type": "string", "max": 100, "documentation": "Placeholder documentation for __stringMax100" + }, + "ChannelEngineVersionRequest": { + "type": "structure", + "members": { + "Version": { + "shape": "__string", + "locationName": "version", + "documentation": "The build identifier of the engine version to use for this channel. Specify 'DEFAULT' to reset to the default version." + } + }, + "documentation": "Placeholder documentation for ChannelEngineVersionRequest" + }, + "ChannelEngineVersionResponse": { + "type": "structure", + "members": { + "ExpirationDate": { + "shape": "__timestampIso8601", + "locationName": "expirationDate", + "documentation": "The UTC time when the version expires." + }, + "Version": { + "shape": "__string", + "locationName": "version", + "documentation": "The build identifier for this version of the channel version." + } + }, + "documentation": "Placeholder documentation for ChannelEngineVersionResponse" + }, + "ListVersionsRequest": { + "type": "structure", + "members": { + }, + "documentation": "Placeholder documentation for ListVersionsRequest" + }, + "ListVersionsResponse": { + "type": "structure", + "members": { + "Versions": { + "shape": "__listOfChannelEngineVersionResponse", + "locationName": "versions", + "documentation": "List of engine versions that are available for this AWS account." + } + }, + "documentation": "Placeholder documentation for ListVersionsResponse" + }, + "__listOfChannelEngineVersionResponse": { + "type": "list", + "member": { + "shape": "ChannelEngineVersionResponse" + }, + "documentation": "Placeholder documentation for __listOfChannelEngineVersionResponse" } }, "documentation": "API for AWS Elemental MediaLive" diff --git a/tools/code-generation/api-descriptions/qconnect-2020-10-19.normal.json b/tools/code-generation/api-descriptions/qconnect-2020-10-19.normal.json index 60806587475..cd4e132a2e5 100644 --- a/tools/code-generation/api-descriptions/qconnect-2020-10-19.normal.json +++ b/tools/code-generation/api-descriptions/qconnect-2020-10-19.normal.json @@ -2368,6 +2368,10 @@ "shape":"UuidWithQualifier", "documentation":"

        The AI Prompt identifier for the Intent Labeling prompt used by the ANSWER_RECOMMENDATION AI Agent.

        " }, + "locale":{ + "shape":"NonEmptyString", + "documentation":"

        The locale to which specifies the language and region settings that determine the response language for QueryAssistant.

        Changing this locale to anything other than en_US will turn off recommendations triggered by contact transcripts for agent assistance, as this feature is not supported in multiple languages.

        " + }, "queryReformulationAIPromptId":{ "shape":"UuidWithQualifier", "documentation":"

        The AI Prompt identifier for the Query Reformulation prompt used by the ANSWER_RECOMMENDATION AI Agent.

        " @@ -5852,7 +5856,7 @@ }, "type":{ "shape":"GuardrailPiiEntityType", - "documentation":"

        Configure AI Guardrail type when the PII entity is detected.

        The following PIIs are used to block or mask sensitive information:

        • General

          • ADDRESS

            A physical address, such as \"100 Main Street, Anytown, USA\" or \"Suite #12, Building 123\". An address can include information such as the street, building, location, city, state, country, county, zip code, precinct, and neighborhood.

          • AGE

            An individual's age, including the quantity and unit of time. For example, in the phrase \"I am 40 years old,\" Guarrails recognizes \"40 years\" as an age.

          • NAME

            An individual's name. This entity type does not include titles, such as Dr., Mr., Mrs., or Miss. AI Guardrail doesn't apply this entity type to names that are part of organizations or addresses. For example, AI Guardrail recognizes the \"John Doe Organization\" as an organization, and it recognizes \"Jane Doe Street\" as an address.

          • EMAIL

            An email address, such as marymajor@email.com.

          • PHONE

            A phone number. This entity type also includes fax and pager numbers.

          • USERNAME

            A user name that identifies an account, such as a login name, screen name, nick name, or handle.

          • PASSWORD

            An alphanumeric string that is used as a password, such as \"* very20special#pass*\".

          • DRIVER_ID

            The number assigned to a driver's license, which is an official document permitting an individual to operate one or more motorized vehicles on a public road. A driver's license number consists of alphanumeric characters.

          • LICENSE_PLATE

            A license plate for a vehicle is issued by the state or country where the vehicle is registered. The format for passenger vehicles is typically five to eight digits, consisting of upper-case letters and numbers. The format varies depending on the location of the issuing state or country.

          • VEHICLE_IDENTIFICATION_NUMBER

            A Vehicle Identification Number (VIN) uniquely identifies a vehicle. VIN content and format are defined in the ISO 3779 specification. Each country has specific codes and formats for VINs.

        • Finance

          • REDIT_DEBIT_CARD_CVV

            A three-digit card verification code (CVV) that is present on VISA, MasterCard, and Discover credit and debit cards. For American Express credit or debit cards, the CVV is a four-digit numeric code.

          • CREDIT_DEBIT_CARD_EXPIRY

            The expiration date for a credit or debit card. This number is usually four digits long and is often formatted as month/year or MM/YY. AI Guardrail recognizes expiration dates such as 01/21, 01/2021, and Jan 2021.

          • CREDIT_DEBIT_CARD_NUMBER

            The number for a credit or debit card. These numbers can vary from 13 to 16 digits in length. However, Amazon Comprehend also recognizes credit or debit card numbers when only the last four digits are present.

          • PIN

            A four-digit personal identification number (PIN) with which you can access your bank account.

          • INTERNATIONAL_BANK_ACCOUNT_NUMBER

            An International Bank Account Number has specific formats in each country. For more information, see www.iban.com/structure.

          • SWIFT_CODE

            A SWIFT code is a standard format of Bank Identifier Code (BIC) used to specify a particular bank or branch. Banks use these codes for money transfers such as international wire transfers.

            SWIFT codes consist of eight or 11 characters. The 11-digit codes refer to specific branches, while eight-digit codes (or 11-digit codes ending in 'XXX') refer to the head or primary office.

        • IT

          • IP_ADDRESS

            An IPv4 address, such as 198.51.100.0.

          • MAC_ADDRESS

            A media access control (MAC) address is a unique identifier assigned to a network interface controller (NIC).

          • URL

            A web address, such as www.example.com.

          • AWS_ACCESS_KEY

            A unique identifier that's associated with a secret access key; you use the access key ID and secret access key to sign programmatic Amazon Web Services requests cryptographically.

          • AWS_SECRET_KEY

            A unique identifier that's associated with an access key. You use the access key ID and secret access key to sign programmatic Amazon Web Services requests cryptographically.

        • USA specific

          • US_BANK_ACCOUNT_NUMBER

            A US bank account number, which is typically 10 to 12 digits long.

          • US_BANK_ROUTING_NUMBER

            A US bank account routing number. These are typically nine digits long,

          • US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER

            A US Individual Taxpayer Identification Number (ITIN) is a nine-digit number that starts with a \"9\" and contain a \"7\" or \"8\" as the fourth digit. An ITIN can be formatted with a space or a dash after the third and forth digits.

          • US_PASSPORT_NUMBER

            A US passport number. Passport numbers range from six to nine alphanumeric characters.

          • US_SOCIAL_SECURITY_NUMBER

            A US Social Security Number (SSN) is a nine-digit number that is issued to US citizens, permanent residents, and temporary working residents.

        • Canada specific

          • CA_HEALTH_NUMBER

            A Canadian Health Service Number is a 10-digit unique identifier, required for individuals to access healthcare benefits.

          • CA_SOCIAL_INSURANCE_NUMBER

            A Canadian Social Insurance Number (SIN) is a nine-digit unique identifier, required for individuals to access government programs and benefits.

            The SIN is formatted as three groups of three digits, such as 123-456-789. A SIN can be validated through a simple check-digit process called the Luhn algorithm .

        • UK Specific

          • UK_NATIONAL_HEALTH_SERVICE_NUMBER

            A UK National Health Service Number is a 10-17 digit number, such as 485 555 3456. The current system formats the 10-digit number with spaces after the third and sixth digits. The final digit is an error-detecting checksum.

          • UK_NATIONAL_INSURANCE_NUMBER

            A UK National Insurance Number (NINO) provides individuals with access to National Insurance (social security) benefits. It is also used for some purposes in the UK tax system.

            The number is nine digits long and starts with two letters, followed by six numbers and one letter. A NINO can be formatted with a space or a dash after the two letters and after the second, forth, and sixth digits.

          • UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER

            A UK Unique Taxpayer Reference (UTR) is a 10-digit number that identifies a taxpayer or a business.

        • Custom

          • Regex filter - You can use a regular expressions to define patterns for an AI Guardrail to recognize and act upon such as serial number, booking ID etc..

        " + "documentation":"

        Configure AI Guardrail type when the PII entity is detected.

        The following PIIs are used to block or mask sensitive information:

        • General

          • ADDRESS

            A physical address, such as \"100 Main Street, Anytown, USA\" or \"Suite #12, Building 123\". An address can include information such as the street, building, location, city, state, country, county, zip code, precinct, and neighborhood.

          • AGE

            An individual's age, including the quantity and unit of time. For example, in the phrase \"I am 40 years old,\" Guarrails recognizes \"40 years\" as an age.

          • NAME

            An individual's name. This entity type does not include titles, such as Dr., Mr., Mrs., or Miss. AI Guardrail doesn't apply this entity type to names that are part of organizations or addresses. For example, AI Guardrail recognizes the \"John Doe Organization\" as an organization, and it recognizes \"Jane Doe Street\" as an address.

          • EMAIL

            An email address, such as marymajor@email.com.

          • PHONE

            A phone number. This entity type also includes fax and pager numbers.

          • USERNAME

            A user name that identifies an account, such as a login name, screen name, nick name, or handle.

          • PASSWORD

            An alphanumeric string that is used as a password, such as \"* very20special#pass*\".

          • DRIVER_ID

            The number assigned to a driver's license, which is an official document permitting an individual to operate one or more motorized vehicles on a public road. A driver's license number consists of alphanumeric characters.

          • LICENSE_PLATE

            A license plate for a vehicle is issued by the state or country where the vehicle is registered. The format for passenger vehicles is typically five to eight digits, consisting of upper-case letters and numbers. The format varies depending on the location of the issuing state or country.

          • VEHICLE_IDENTIFICATION_NUMBER

            A Vehicle Identification Number (VIN) uniquely identifies a vehicle. VIN content and format are defined in the ISO 3779 specification. Each country has specific codes and formats for VINs.

        • Finance

          • CREDIT_DEBIT_CARD_CVV

            A three-digit card verification code (CVV) that is present on VISA, MasterCard, and Discover credit and debit cards. For American Express credit or debit cards, the CVV is a four-digit numeric code.

          • CREDIT_DEBIT_CARD_EXPIRY

            The expiration date for a credit or debit card. This number is usually four digits long and is often formatted as month/year or MM/YY. AI Guardrail recognizes expiration dates such as 01/21, 01/2021, and Jan 2021.

          • CREDIT_DEBIT_CARD_NUMBER

            The number for a credit or debit card. These numbers can vary from 13 to 16 digits in length. However, Amazon Comprehend also recognizes credit or debit card numbers when only the last four digits are present.

          • PIN

            A four-digit personal identification number (PIN) with which you can access your bank account.

          • INTERNATIONAL_BANK_ACCOUNT_NUMBER

            An International Bank Account Number has specific formats in each country. For more information, see www.iban.com/structure.

          • SWIFT_CODE

            A SWIFT code is a standard format of Bank Identifier Code (BIC) used to specify a particular bank or branch. Banks use these codes for money transfers such as international wire transfers.

            SWIFT codes consist of eight or 11 characters. The 11-digit codes refer to specific branches, while eight-digit codes (or 11-digit codes ending in 'XXX') refer to the head or primary office.

        • IT

          • IP_ADDRESS

            An IPv4 address, such as 198.51.100.0.

          • MAC_ADDRESS

            A media access control (MAC) address is a unique identifier assigned to a network interface controller (NIC).

          • URL

            A web address, such as www.example.com.

          • AWS_ACCESS_KEY

            A unique identifier that's associated with a secret access key; you use the access key ID and secret access key to sign programmatic Amazon Web Services requests cryptographically.

          • AWS_SECRET_KEY

            A unique identifier that's associated with an access key. You use the access key ID and secret access key to sign programmatic Amazon Web Services requests cryptographically.

        • USA specific

          • US_BANK_ACCOUNT_NUMBER

            A US bank account number, which is typically 10 to 12 digits long.

          • US_BANK_ROUTING_NUMBER

            A US bank account routing number. These are typically nine digits long,

          • US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER

            A US Individual Taxpayer Identification Number (ITIN) is a nine-digit number that starts with a \"9\" and contain a \"7\" or \"8\" as the fourth digit. An ITIN can be formatted with a space or a dash after the third and forth digits.

          • US_PASSPORT_NUMBER

            A US passport number. Passport numbers range from six to nine alphanumeric characters.

          • US_SOCIAL_SECURITY_NUMBER

            A US Social Security Number (SSN) is a nine-digit number that is issued to US citizens, permanent residents, and temporary working residents.

        • Canada specific

          • CA_HEALTH_NUMBER

            A Canadian Health Service Number is a 10-digit unique identifier, required for individuals to access healthcare benefits.

          • CA_SOCIAL_INSURANCE_NUMBER

            A Canadian Social Insurance Number (SIN) is a nine-digit unique identifier, required for individuals to access government programs and benefits.

            The SIN is formatted as three groups of three digits, such as 123-456-789. A SIN can be validated through a simple check-digit process called the Luhn algorithm .

        • UK Specific

          • UK_NATIONAL_HEALTH_SERVICE_NUMBER

            A UK National Health Service Number is a 10-17 digit number, such as 485 555 3456. The current system formats the 10-digit number with spaces after the third and sixth digits. The final digit is an error-detecting checksum.

          • UK_NATIONAL_INSURANCE_NUMBER

            A UK National Insurance Number (NINO) provides individuals with access to National Insurance (social security) benefits. It is also used for some purposes in the UK tax system.

            The number is nine digits long and starts with two letters, followed by six numbers and one letter. A NINO can be formatted with a space or a dash after the two letters and after the second, forth, and sixth digits.

          • UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER

            A UK Unique Taxpayer Reference (UTR) is a 10-digit number that identifies a taxpayer or a business.

        • Custom

          • Regex filter - You can use a regular expressions to define patterns for an AI Guardrail to recognize and act upon such as serial number, booking ID etc..

        " } }, "documentation":"

        The PII entity to configure for the AI Guardrail.

        " @@ -7207,6 +7211,10 @@ "associationConfigurations":{ "shape":"AssociationConfigurationList", "documentation":"

        The association configurations for overriding behavior on this AI Agent.

        " + }, + "locale":{ + "shape":"NonEmptyString", + "documentation":"

        The locale to which specifies the language and region settings that determine the response language for QueryAssistant.

        " } }, "documentation":"

        The configuration for the MANUAL_SEARCH AI Agent type.

        " diff --git a/tools/code-generation/api-descriptions/ssm-sap-2018-05-10.normal.json b/tools/code-generation/api-descriptions/ssm-sap-2018-05-10.normal.json index 817565f36f3..09b9095bdc2 100644 --- a/tools/code-generation/api-descriptions/ssm-sap-2018-05-10.normal.json +++ b/tools/code-generation/api-descriptions/ssm-sap-2018-05-10.normal.json @@ -680,6 +680,35 @@ "type":"list", "member":{"shape":"ComponentId"} }, + "ComponentInfo":{ + "type":"structure", + "required":[ + "ComponentType", + "Sid", + "Ec2InstanceId" + ], + "members":{ + "ComponentType":{ + "shape":"ComponentType", + "documentation":"

        This string is the type of the component.

        Accepted value is WD.

        " + }, + "Sid":{ + "shape":"SID", + "documentation":"

        This string is the SAP System ID of the component.

        Accepted values are alphanumeric.

        " + }, + "Ec2InstanceId":{ + "shape":"InstanceId", + "documentation":"

        This is the Amazon EC2 instance on which your SAP component is running.

        Accepted values are alphanumeric.

        " + } + }, + "documentation":"

        This is information about the component of your SAP application, such as Web Dispatcher.

        " + }, + "ComponentInfoList":{ + "type":"list", + "member":{"shape":"ComponentInfo"}, + "max":5, + "min":0 + }, "ComponentStatus":{ "type":"string", "enum":[ @@ -1612,6 +1641,10 @@ "DatabaseArn":{ "shape":"SsmSapArn", "documentation":"

        The Amazon Resource Name of the SAP HANA database.

        " + }, + "ComponentsInfo":{ + "shape":"ComponentInfoList", + "documentation":"

        This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.

        This is an array of ApplicationComponent objects. You may input 0 to 5 items.

        " } } }, diff --git a/tools/code-generation/api-descriptions/workspaces-2015-04-08.normal.json b/tools/code-generation/api-descriptions/workspaces-2015-04-08.normal.json index 02d25845319..ebc4fada5dc 100644 --- a/tools/code-generation/api-descriptions/workspaces-2015-04-08.normal.json +++ b/tools/code-generation/api-descriptions/workspaces-2015-04-08.normal.json @@ -1421,6 +1421,36 @@ } }, "shapes":{ + "AGAModeForDirectoryEnum":{ + "type":"string", + "enum":[ + "ENABLED_AUTO", + "DISABLED" + ] + }, + "AGAModeForWorkSpaceEnum":{ + "type":"string", + "enum":[ + "ENABLED_AUTO", + "DISABLED", + "INHERITED" + ] + }, + "AGAPreferredProtocolForDirectory":{ + "type":"string", + "enum":[ + "TCP", + "NONE" + ] + }, + "AGAPreferredProtocolForWorkSpace":{ + "type":"string", + "enum":[ + "TCP", + "NONE", + "INHERITED" + ] + }, "ARN":{ "type":"string", "pattern":"^arn:aws[a-z-]{0,7}:[A-Za-z0-9][A-za-z0-9_/.-]{0,62}:[A-za-z0-9_/.-]{0,63}:[A-za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.\\\\-]{0,1023}$" @@ -4050,6 +4080,36 @@ } } }, + "GlobalAcceleratorForDirectory":{ + "type":"structure", + "required":["Mode"], + "members":{ + "Mode":{ + "shape":"AGAModeForDirectoryEnum", + "documentation":"

        Indicates if Global Accelerator for directory is enabled or disabled.

        " + }, + "PreferredProtocol":{ + "shape":"AGAPreferredProtocolForDirectory", + "documentation":"

        Indicates the preferred protocol for Global Accelerator.

        " + } + }, + "documentation":"

        Describes the Global Accelerator for directory

        " + }, + "GlobalAcceleratorForWorkSpace":{ + "type":"structure", + "required":["Mode"], + "members":{ + "Mode":{ + "shape":"AGAModeForWorkSpaceEnum", + "documentation":"

        Indicates if Global Accelerator for WorkSpaces is enabled, disabled, or the same mode as the associated directory.

        " + }, + "PreferredProtocol":{ + "shape":"AGAPreferredProtocolForWorkSpace", + "documentation":"

        Indicates the preferred protocol for Global Accelerator.

        " + } + }, + "documentation":"

        Describes the Global Accelerator for WorkSpaces.

        " + }, "IDCConfig":{ "type":"structure", "members":{ @@ -5602,6 +5662,10 @@ "StorageConnectors":{ "shape":"StorageConnectors", "documentation":"

        Indicates the storage connector used

        " + }, + "GlobalAccelerator":{ + "shape":"GlobalAcceleratorForDirectory", + "documentation":"

        Indicates the Global Accelerator properties.

        " } }, "documentation":"

        Describes the streaming properties.

        " @@ -6731,6 +6795,10 @@ "OperatingSystemName":{ "shape":"OperatingSystemName", "documentation":"

        The name of the operating system.

        " + }, + "GlobalAccelerator":{ + "shape":"GlobalAcceleratorForWorkSpace", + "documentation":"

        Indicates the Global Accelerator properties.

        " } }, "documentation":"

        Describes a WorkSpace.

        " diff --git a/tools/code-generation/smithy/codegen/cpp-smoke-tests/smithy-build.json b/tools/code-generation/smithy/codegen/cpp-smoke-tests/smithy-build.json index ee6319e26d4..28fe75116c0 100644 --- a/tools/code-generation/smithy/codegen/cpp-smoke-tests/smithy-build.json +++ b/tools/code-generation/smithy/codegen/cpp-smoke-tests/smithy-build.json @@ -1,9 +1,9 @@ { "version": "1.0", "projections": { - "codeguruprofiler.2019-07-18": { + "pca-connector-scep.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeguruprofiler.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pca-connector-scep.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -12,9 +12,9 @@ } } }, - "connectparticipant.2018-09-07": { + "route53-recovery-cluster.2019-12-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectparticipant.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53-recovery-cluster.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -23,9 +23,9 @@ } } }, - "iot-data-plane.2015-05-28": { + "chatbot.2017-10-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-data-plane.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chatbot.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -34,9 +34,9 @@ } } }, - "route53resolver.2018-04-01": { + "appconfigdata.2021-11-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53resolver.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appconfigdata.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -45,9 +45,9 @@ } } }, - "cloudformation.2010-05-15": { + "license-manager-linux-subscriptions.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudformation.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/license-manager-linux-subscriptions.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -56,9 +56,9 @@ } } }, - "pca-connector-ad.2018-05-10": { + "cloudhsm-v2.2017-04-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pca-connector-ad.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudhsm-v2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -67,9 +67,9 @@ } } }, - "inspector-scan.2023-08-08": { + "neptunedata.2023-08-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/inspector-scan.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/neptunedata.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -78,9 +78,9 @@ } } }, - "glacier.2012-06-01": { + "repostspace.2022-05-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/glacier.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/repostspace.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -89,9 +89,9 @@ } } }, - "waf-regional.2016-11-28": { + "inspector-scan.2023-08-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/waf-regional.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/inspector-scan.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -100,9 +100,9 @@ } } }, - "mq.2017-11-27": { + "dynamodb-streams.2012-08-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mq.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dynamodb-streams.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -111,9 +111,9 @@ } } }, - "cost-optimization-hub.2022-07-26": { + "migrationhubstrategy.2020-02-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cost-optimization-hub.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migrationhubstrategy.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -122,9 +122,9 @@ } } }, - "application-auto-scaling.2016-02-06": { + "cognito-identity.2014-06-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-auto-scaling.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cognito-identity.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -133,9 +133,9 @@ } } }, - "emr-serverless.2021-07-13": { + "payment-cryptography.2021-09-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/emr-serverless.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/payment-cryptography.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -144,9 +144,9 @@ } } }, - "forecast.2018-06-26": { + "lookoutmetrics.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/forecast.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lookoutmetrics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -155,9 +155,9 @@ } } }, - "dynamodb-streams.2012-08-10": { + "database-migration-service.2016-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dynamodb-streams.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/database-migration-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -166,9 +166,9 @@ } } }, - "glue.2017-03-31": { + "shield.2016-06-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/glue.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/shield.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -177,9 +177,9 @@ } } }, - "cost-explorer.2017-10-25": { + "iotfleethub.2020-11-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cost-explorer.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotfleethub.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -188,9 +188,9 @@ } } }, - "bedrock.2023-04-20": { + "identitystore.2020-06-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/identitystore.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -199,9 +199,9 @@ } } }, - "route-53-domains.2014-05-15": { + "ssm-incidents.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route-53-domains.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-incidents.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -210,9 +210,9 @@ } } }, - "wafv2.2019-07-29": { + "simspaceweaver.2022-10-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/wafv2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/simspaceweaver.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -221,9 +221,9 @@ } } }, - "macie2.2020-01-01": { + "workspaces-web.2020-07-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/macie2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workspaces-web.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -232,9 +232,9 @@ } } }, - "mediapackagev2.2022-12-25": { + "oam.2022-06-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediapackagev2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/oam.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -243,9 +243,9 @@ } } }, - "machine-learning.2014-12-12": { + "payment-cryptography-data.2022-02-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/machine-learning.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/payment-cryptography-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -254,9 +254,9 @@ } } }, - "lex-models-v2.2020-08-07": { + "cloud9.2017-09-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-models-v2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloud9.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -265,9 +265,9 @@ } } }, - "cloudfront.2020-05-31": { + "codestar-notifications.2019-10-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudfront.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codestar-notifications.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -276,9 +276,9 @@ } } }, - "apptest.2022-12-06": { + "sagemaker-metrics.2022-09-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apptest.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-metrics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -287,9 +287,9 @@ } } }, - "schemas.2019-12-02": { + "service-catalog-appregistry.2020-06-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/schemas.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/service-catalog-appregistry.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -298,9 +298,9 @@ } } }, - "repostspace.2022-05-13": { + "connectcampaigns.2021-01-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/repostspace.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectcampaigns.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -309,9 +309,9 @@ } } }, - "vpc-lattice.2022-11-30": { + "batch.2016-08-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/vpc-lattice.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/batch.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -320,9 +320,9 @@ } } }, - "emr.2009-03-31": { + "groundstation.2019-05-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/emr.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/groundstation.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -331,9 +331,9 @@ } } }, - "cleanrooms.2022-02-17": { + "marketplace-deployment.2023-01-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cleanrooms.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-deployment.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -342,9 +342,9 @@ } } }, - "timestream-write.2018-11-01": { + "kafkaconnect.2021-09-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/timestream-write.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kafkaconnect.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -353,9 +353,9 @@ } } }, - "kinesis-video.2017-09-30": { + "account.2021-02-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/account.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -364,9 +364,9 @@ } } }, - "privatenetworks.2021-12-03": { + "healthlake.2017-07-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/privatenetworks.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/healthlake.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -375,9 +375,9 @@ } } }, - "iottwinmaker.2021-11-29": { + "privatenetworks.2021-12-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iottwinmaker.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/privatenetworks.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -386,9 +386,9 @@ } } }, - "timestream-influxdb.2023-01-27": { + "transfer.2018-11-05": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/timestream-influxdb.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/transfer.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -397,9 +397,9 @@ } } }, - "connect-contact-lens.2020-08-21": { + "waf.2015-08-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connect-contact-lens.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/waf.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -408,9 +408,9 @@ } } }, - "identitystore.2020-06-15": { + "pricing.2017-10-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/identitystore.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pricing.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -419,9 +419,9 @@ } } }, - "connectcampaignsv2.2024-04-23": { + "controltower.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectcampaignsv2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/controltower.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -430,9 +430,9 @@ } } }, - "codecommit.2015-04-13": { + "datazone.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codecommit.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/datazone.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -441,9 +441,9 @@ } } }, - "proton.2020-07-20": { + "data-pipeline.2012-10-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/proton.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/data-pipeline.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -452,9 +452,9 @@ } } }, - "health.2016-08-04": { + "pcs.2023-02-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/health.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pcs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -463,9 +463,9 @@ } } }, - "resource-groups-tagging-api.2017-01-26": { + "kendra-ranking.2022-10-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resource-groups-tagging-api.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kendra-ranking.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -474,9 +474,9 @@ } } }, - "cloudhsm-v2.2017-04-28": { + "appconfig.2019-10-09": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudhsm-v2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appconfig.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -485,9 +485,9 @@ } } }, - "notificationscontacts.2018-05-10": { + "eventbridge.2015-10-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/notificationscontacts.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/eventbridge.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -496,9 +496,9 @@ } } }, - "kinesis-video-archived-media.2017-09-30": { + "kinesis-video-media.2017-09-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-archived-media.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-media.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -507,9 +507,9 @@ } } }, - "personalize-events.2018-03-22": { + "auditmanager.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/personalize-events.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/auditmanager.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -518,9 +518,9 @@ } } }, - "datasync.2018-11-09": { + "s3.2006-03-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/datasync.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -529,9 +529,9 @@ } } }, - "bedrock-data-automation-runtime.2024-06-13": { + "comprehend.2017-11-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-data-automation-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/comprehend.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -540,9 +540,9 @@ } } }, - "networkflowmonitor.2023-04-19": { + "evidently.2021-02-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/networkflowmonitor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/evidently.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -553,7 +553,7 @@ }, "codedeploy.2014-10-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codedeploy.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codedeploy.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -562,9 +562,9 @@ } } }, - "cloudhsm.2014-05-30": { + "marketplace-entitlement-service.2017-01-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudhsm.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-entitlement-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -573,9 +573,9 @@ } } }, - "iotfleethub.2020-11-03": { + "freetier.2023-09-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotfleethub.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/freetier.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -584,9 +584,9 @@ } } }, - "ses.2010-12-01": { + "firehose.2015-08-04": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ses.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/firehose.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -595,9 +595,9 @@ } } }, - "eventbridge.2015-10-07": { + "codeguruprofiler.2019-07-18": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/eventbridge.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeguruprofiler.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -606,9 +606,9 @@ } } }, - "snow-device-management.2021-08-04": { + "codecommit.2015-04-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/snow-device-management.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codecommit.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -617,9 +617,9 @@ } } }, - "sqs.2012-11-05": { + "iotdeviceadvisor.2020-09-18": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sqs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotdeviceadvisor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -628,9 +628,9 @@ } } }, - "marketplace-agreement.2020-03-01": { + "dlm.2018-01-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-agreement.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dlm.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -639,9 +639,9 @@ } } }, - "tnb.2008-10-21": { + "route-53-domains.2014-05-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/tnb.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route-53-domains.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -650,9 +650,9 @@ } } }, - "chime-sdk-identity.2021-04-20": { + "rum.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-identity.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rum.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -661,9 +661,9 @@ } } }, - "rbin.2021-06-15": { + "bcm-pricing-calculator.2024-06-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rbin.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bcm-pricing-calculator.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -672,9 +672,9 @@ } } }, - "iotsecuretunneling.2018-10-05": { + "mediaconnect.2018-11-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotsecuretunneling.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediaconnect.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -683,9 +683,9 @@ } } }, - "iotdeviceadvisor.2020-09-18": { + "connectparticipant.2018-09-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotdeviceadvisor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectparticipant.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -694,9 +694,9 @@ } } }, - "geo-places.2020-11-19": { + "macie2.2020-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/geo-places.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/macie2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -705,9 +705,9 @@ } } }, - "workspaces-web.2020-07-08": { + "rds-data.2018-08-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workspaces-web.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rds-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -716,9 +716,9 @@ } } }, - "iot-1click-projects.2018-05-14": { + "mediastore-data.2017-09-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-1click-projects.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediastore-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -727,9 +727,9 @@ } } }, - "direct-connect.2012-10-25": { + "storage-gateway.2013-06-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/direct-connect.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/storage-gateway.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -738,9 +738,9 @@ } } }, - "ssm.2014-11-06": { + "entityresolution.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/entityresolution.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -749,9 +749,9 @@ } } }, - "dax.2017-04-19": { + "bcm-data-exports.2023-11-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dax.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bcm-data-exports.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -760,9 +760,9 @@ } } }, - "wellarchitected.2020-03-31": { + "codebuild.2016-10-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/wellarchitected.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codebuild.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -771,9 +771,9 @@ } } }, - "mediastore-data.2017-09-01": { + "fis.2020-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediastore-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/fis.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -782,9 +782,9 @@ } } }, - "kafka.2018-11-14": { + "vpc-lattice.2022-11-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kafka.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/vpc-lattice.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -793,9 +793,9 @@ } } }, - "voice-id.2021-09-27": { + "controlcatalog.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/voice-id.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/controlcatalog.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -804,9 +804,9 @@ } } }, - "marketplace-commerce-analytics.2015-07-01": { + "networkmonitor.2023-08-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-commerce-analytics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/networkmonitor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -815,9 +815,9 @@ } } }, - "kinesis-video-signaling.2019-12-04": { + "ec2.2016-11-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-signaling.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ec2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -826,9 +826,9 @@ } } }, - "iotanalytics.2017-11-27": { + "api-gateway.2015-07-09": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotanalytics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/api-gateway.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -837,9 +837,9 @@ } } }, - "workspaces.2015-04-08": { + "kinesis.2013-12-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workspaces.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -848,9 +848,9 @@ } } }, - "qldb-session.2019-07-11": { + "taxsettings.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qldb-session.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/taxsettings.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -859,9 +859,9 @@ } } }, - "device-farm.2015-06-23": { + "gamelift.2015-10-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/device-farm.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/gamelift.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -870,9 +870,9 @@ } } }, - "transcribe-streaming.2017-10-26": { + "sagemaker-edge.2020-09-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/transcribe-streaming.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-edge.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -881,9 +881,9 @@ } } }, - "apigatewaymanagementapi.2018-11-29": { + "chime-sdk-messaging.2021-05-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apigatewaymanagementapi.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-messaging.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -892,9 +892,9 @@ } } }, - "network-firewall.2020-11-12": { + "fsx.2018-03-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/network-firewall.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/fsx.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -903,9 +903,9 @@ } } }, - "sagemaker-metrics.2022-09-30": { + "kinesis-analytics-v2.2018-05-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-metrics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-analytics-v2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -914,9 +914,9 @@ } } }, - "opensearchserverless.2021-11-01": { + "ec2-instance-connect.2018-04-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opensearchserverless.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ec2-instance-connect.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -925,9 +925,9 @@ } } }, - "sagemaker.2017-07-24": { + "cloudfront.2020-05-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudfront.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -936,9 +936,9 @@ } } }, - "applicationcostprofiler.2020-09-10": { + "kinesis-video.2017-09-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/applicationcostprofiler.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -947,9 +947,9 @@ } } }, - "ssm-incidents.2018-05-10": { + "route53-recovery-readiness.2019-12-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-incidents.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53-recovery-readiness.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -958,9 +958,9 @@ } } }, - "comprehend.2017-11-27": { + "cost-optimization-hub.2022-07-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/comprehend.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cost-optimization-hub.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -969,9 +969,9 @@ } } }, - "transfer.2018-11-05": { + "mediaconvert.2017-08-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/transfer.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediaconvert.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -980,9 +980,9 @@ } } }, - "batch.2016-08-10": { + "apigatewayv2.2018-11-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/batch.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apigatewayv2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -991,9 +991,9 @@ } } }, - "cost-and-usage-report-service.2017-01-06": { + "chime.2018-05-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cost-and-usage-report-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1002,9 +1002,9 @@ } } }, - "mediapackage-vod.2018-11-07": { + "pinpoint-sms-voice.2018-09-05": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediapackage-vod.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint-sms-voice.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1013,9 +1013,9 @@ } } }, - "billingconductor.2021-07-30": { + "devops-guru.2020-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/billingconductor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/devops-guru.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1024,9 +1024,9 @@ } } }, - "qconnect.2020-10-19": { + "iot-1click-devices-service.2018-05-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qconnect.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-1click-devices-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1035,9 +1035,9 @@ } } }, - "ssm-contacts.2021-05-03": { + "iotthingsgraph.2018-09-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-contacts.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotthingsgraph.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1046,9 +1046,9 @@ } } }, - "mediaconnect.2018-11-14": { + "serverlessapplicationrepository.2017-09-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediaconnect.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/serverlessapplicationrepository.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1057,9 +1057,9 @@ } } }, - "sso-admin.2020-07-20": { + "auto-scaling-plans.2018-01-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sso-admin.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/auto-scaling-plans.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1068,9 +1068,9 @@ } } }, - "auto-scaling-plans.2018-01-06": { + "elasticache.2015-02-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/auto-scaling-plans.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elasticache.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1079,9 +1079,9 @@ } } }, - "dynamodb.2012-08-10": { + "greengrassv2.2020-11-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dynamodb.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/greengrassv2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1090,9 +1090,9 @@ } } }, - "evidently.2021-02-01": { + "codestar-connections.2019-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/evidently.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codestar-connections.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1101,9 +1101,9 @@ } } }, - "timestream-query.2018-11-01": { + "qldb-session.2019-07-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/timestream-query.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qldb-session.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1112,9 +1112,9 @@ } } }, - "connectcases.2022-10-03": { + "robomaker.2018-06-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectcases.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/robomaker.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1123,9 +1123,9 @@ } } }, - "rolesanywhere.2018-05-10": { + "s3-control.2018-08-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rolesanywhere.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3-control.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1134,9 +1134,9 @@ } } }, - "qldb.2019-01-02": { + "personalize-runtime.2018-05-22": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qldb.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/personalize-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1145,9 +1145,9 @@ } } }, - "redshift-data.2019-12-20": { + "chime-sdk-media-pipelines.2021-07-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/redshift-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-media-pipelines.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1156,9 +1156,9 @@ } } }, - "appconfigdata.2021-11-11": { + "location.2020-11-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appconfigdata.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/location.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1167,9 +1167,9 @@ } } }, - "personalize.2018-05-22": { + "organizations.2016-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/personalize.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/organizations.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1178,9 +1178,9 @@ } } }, - "pinpoint-email.2018-07-26": { + "bedrock-agent.2023-06-05": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint-email.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-agent.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1189,9 +1189,9 @@ } } }, - "ssm-quicksetup.2018-05-10": { + "iot-events.2018-07-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-quicksetup.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-events.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1200,9 +1200,9 @@ } } }, - "support-app.2021-08-20": { + "connect-contact-lens.2020-08-21": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/support-app.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connect-contact-lens.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1211,9 +1211,9 @@ } } }, - "api-gateway.2015-07-09": { + "sqs.2012-11-05": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/api-gateway.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sqs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1222,9 +1222,9 @@ } } }, - "appconfig.2019-10-09": { + "ivs-realtime.2020-07-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appconfig.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ivs-realtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1233,9 +1233,9 @@ } } }, - "observabilityadmin.2018-05-10": { + "snow-device-management.2021-08-04": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/observabilityadmin.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/snow-device-management.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1244,9 +1244,9 @@ } } }, - "finspace-data.2020-07-13": { + "wellarchitected.2020-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/finspace-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/wellarchitected.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1255,9 +1255,9 @@ } } }, - "rds.2014-10-31": { + "cloudhsm.2014-05-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rds.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudhsm.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1266,9 +1266,9 @@ } } }, - "license-manager-linux-subscriptions.2018-05-10": { + "rolesanywhere.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/license-manager-linux-subscriptions.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rolesanywhere.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1277,9 +1277,9 @@ } } }, - "xray.2016-04-12": { + "global-accelerator.2018-08-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/xray.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/global-accelerator.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1288,9 +1288,9 @@ } } }, - "codepipeline.2015-07-09": { + "pi.2018-02-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codepipeline.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pi.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1299,9 +1299,9 @@ } } }, - "s3.2006-03-01": { + "quicksight.2018-04-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/quicksight.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1310,9 +1310,9 @@ } } }, - "organizations.2016-11-28": { + "glacier.2012-06-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/organizations.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/glacier.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1321,9 +1321,9 @@ } } }, - "kinesis-analytics.2015-08-14": { + "budgets.2016-10-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-analytics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/budgets.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1332,9 +1332,9 @@ } } }, - "codebuild.2016-10-06": { + "iotsitewise.2019-12-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codebuild.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotsitewise.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1345,7 +1345,7 @@ }, "elastic-beanstalk.2010-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-beanstalk.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-beanstalk.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1354,9 +1354,9 @@ } } }, - "ivschat.2020-07-14": { + "cloudtrail-data.2021-08-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ivschat.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudtrail-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1365,9 +1365,9 @@ } } }, - "appfabric.2023-05-19": { + "codeguru-reviewer.2019-09-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appfabric.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeguru-reviewer.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1376,9 +1376,9 @@ } } }, - "chime.2018-05-01": { + "securityhub.2018-10-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/securityhub.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1387,9 +1387,9 @@ } } }, - "trustedadvisor.2022-09-15": { + "connect.2017-08-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/trustedadvisor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connect.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1398,9 +1398,9 @@ } } }, - "sagemaker-featurestore-runtime.2020-07-01": { + "ssm.2014-11-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-featurestore-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1409,9 +1409,9 @@ } } }, - "data-pipeline.2012-10-29": { + "synthetics.2017-10-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/data-pipeline.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/synthetics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1420,9 +1420,9 @@ } } }, - "payment-cryptography.2021-09-14": { + "auto-scaling.2011-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/payment-cryptography.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/auto-scaling.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1431,9 +1431,9 @@ } } }, - "quicksight.2018-04-01": { + "workmail.2017-10-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/quicksight.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workmail.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1442,9 +1442,9 @@ } } }, - "amplifybackend.2020-08-11": { + "sso-oidc.2019-06-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amplifybackend.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sso-oidc.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1453,9 +1453,9 @@ } } }, - "signer.2017-08-25": { + "kinesis-video-webrtc-storage.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/signer.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-webrtc-storage.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1464,9 +1464,9 @@ } } }, - "serverlessapplicationrepository.2017-09-08": { + "cleanroomsml.2023-09-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/serverlessapplicationrepository.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cleanroomsml.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1475,9 +1475,9 @@ } } }, - "apigatewayv2.2018-11-29": { + "docdb-elastic.2022-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apigatewayv2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/docdb-elastic.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1486,9 +1486,9 @@ } } }, - "application-insights.2018-11-25": { + "ecs.2014-11-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-insights.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ecs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1497,9 +1497,9 @@ } } }, - "grafana.2020-08-18": { + "emr.2009-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/grafana.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/emr.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1508,9 +1508,9 @@ } } }, - "database-migration-service.2016-01-01": { + "marketplace-commerce-analytics.2015-07-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/database-migration-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-commerce-analytics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1519,9 +1519,9 @@ } } }, - "internetmonitor.2021-06-03": { + "iot.2015-05-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/internetmonitor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1530,9 +1530,9 @@ } } }, - "socialmessaging.2024-01-01": { + "network-firewall.2020-11-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/socialmessaging.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/network-firewall.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1541,9 +1541,9 @@ } } }, - "detective.2018-10-26": { + "emr-serverless.2021-07-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/detective.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/emr-serverless.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1552,9 +1552,9 @@ } } }, - "freetier.2023-09-07": { + "apptest.2022-12-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/freetier.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apptest.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1563,9 +1563,9 @@ } } }, - "greengrass.2017-06-07": { + "application-signals.2024-04-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/greengrass.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-signals.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1574,9 +1574,9 @@ } } }, - "service-quotas.2019-06-24": { + "workmailmessageflow.2019-05-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/service-quotas.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workmailmessageflow.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1585,9 +1585,9 @@ } } }, - "appflow.2020-08-23": { + "chime-sdk-identity.2021-04-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appflow.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-identity.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1596,9 +1596,9 @@ } } }, - "kafkaconnect.2021-09-14": { + "sagemaker-a2i-runtime.2019-11-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kafkaconnect.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-a2i-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1607,9 +1607,9 @@ } } }, - "elastic-inference.2017-07-25": { + "connectcampaignsv2.2024-04-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-inference.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectcampaignsv2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1618,9 +1618,9 @@ } } }, - "cognito-identity.2014-06-30": { + "elastic-load-balancing-v2.2015-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cognito-identity.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-load-balancing-v2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1629,9 +1629,9 @@ } } }, - "sagemaker-geospatial.2020-05-27": { + "neptune-graph.2023-11-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-geospatial.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/neptune-graph.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1640,9 +1640,9 @@ } } }, - "connect.2017-08-08": { + "application-discovery-service.2015-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connect.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-discovery-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1651,9 +1651,9 @@ } } }, - "forecastquery.2018-06-26": { + "qapps.2023-11-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/forecastquery.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qapps.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1662,9 +1662,9 @@ } } }, - "panorama.2019-07-24": { + "workspaces-thin-client.2023-08-22": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/panorama.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workspaces-thin-client.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1673,9 +1673,9 @@ } } }, - "redshift-serverless.2021-04-21": { + "lambda.2015-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/redshift-serverless.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lambda.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1684,9 +1684,9 @@ } } }, - "iot-wireless.2020-11-22": { + "acm.2015-12-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-wireless.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/acm.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1695,9 +1695,9 @@ } } }, - "lookoutequipment.2020-12-15": { + "dataexchange.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lookoutequipment.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dataexchange.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1706,9 +1706,9 @@ } } }, - "cloudwatch.2010-08-01": { + "medical-imaging.2023-07-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudwatch.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/medical-imaging.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1717,9 +1717,9 @@ } } }, - "cloudtrail-data.2021-08-11": { + "appintegrations.2020-07-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudtrail-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appintegrations.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1728,9 +1728,9 @@ } } }, - "rekognition.2016-06-27": { + "marketplace-catalog.2018-09-17": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rekognition.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-catalog.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1739,9 +1739,9 @@ } } }, - "neptune.2014-10-31": { + "swf.2012-01-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/neptune.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/swf.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1750,9 +1750,9 @@ } } }, - "simspaceweaver.2022-10-28": { + "ssm-sap.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/simspaceweaver.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-sap.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1761,9 +1761,9 @@ } } }, - "workmail.2017-10-01": { + "config-service.2014-11-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workmail.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/config-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1772,9 +1772,9 @@ } } }, - "lakeformation.2017-03-31": { + "mediapackage-vod.2018-11-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lakeformation.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediapackage-vod.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1783,9 +1783,9 @@ } } }, - "textract.2018-06-27": { + "cognito-sync.2014-06-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/textract.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cognito-sync.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1794,9 +1794,9 @@ } } }, - "codeconnections.2023-12-01": { + "artifact.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeconnections.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/artifact.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1805,9 +1805,9 @@ } } }, - "auto-scaling.2011-01-01": { + "geo-places.2020-11-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/auto-scaling.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/geo-places.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1816,9 +1816,9 @@ } } }, - "gamelift.2015-10-01": { + "kafka.2018-11-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/gamelift.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kafka.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1827,9 +1827,9 @@ } } }, - "account.2021-02-01": { + "schemas.2019-12-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/account.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/schemas.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1838,9 +1838,9 @@ } } }, - "resource-groups.2017-11-27": { + "bedrock-runtime.2023-09-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resource-groups.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1849,9 +1849,9 @@ } } }, - "backup.2018-11-15": { + "translate.2017-07-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/backup.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/translate.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1860,9 +1860,9 @@ } } }, - "codeguru-reviewer.2019-09-19": { + "ses.2010-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeguru-reviewer.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ses.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1871,9 +1871,9 @@ } } }, - "verifiedpermissions.2021-12-01": { + "ecr-public.2020-10-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/verifiedpermissions.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ecr-public.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1882,9 +1882,9 @@ } } }, - "lex-model-building-service.2017-04-19": { + "eks.2017-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-model-building-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/eks.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1893,9 +1893,9 @@ } } }, - "iot.2015-05-28": { + "notificationscontacts.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/notificationscontacts.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1904,9 +1904,9 @@ } } }, - "neptune-graph.2023-11-29": { + "lookoutvision.2020-11-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/neptune-graph.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lookoutvision.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1915,9 +1915,9 @@ } } }, - "invoicing.2024-12-01": { + "signer.2017-08-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/invoicing.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/signer.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1926,9 +1926,9 @@ } } }, - "cloudfront-keyvaluestore.2022-07-26": { + "lightsail.2016-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudfront-keyvaluestore.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lightsail.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1937,9 +1937,9 @@ } } }, - "rum.2018-05-10": { + "mgn.2020-02-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rum.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mgn.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1948,9 +1948,9 @@ } } }, - "translate.2017-07-01": { + "backup-gateway.2021-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/translate.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/backup-gateway.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1959,9 +1959,9 @@ } } }, - "shield.2016-06-02": { + "amplifybackend.2020-08-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/shield.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amplifybackend.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1970,9 +1970,9 @@ } } }, - "ecr-public.2020-10-30": { + "apigatewaymanagementapi.2018-11-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ecr-public.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apigatewaymanagementapi.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1981,9 +1981,9 @@ } } }, - "braket.2019-09-01": { + "snowball.2016-06-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/braket.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/snowball.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -1992,9 +1992,9 @@ } } }, - "opsworkscm.2016-11-01": { + "memorydb.2021-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opsworkscm.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/memorydb.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2003,9 +2003,9 @@ } } }, - "backup-gateway.2021-01-01": { + "dynamodb.2012-08-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/backup-gateway.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dynamodb.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2014,9 +2014,9 @@ } } }, - "acm-pca.": { + "sns.2010-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/acm-pca.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sns.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2025,9 +2025,9 @@ } } }, - "synthetics.2017-10-11": { + "socialmessaging.2024-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/synthetics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/socialmessaging.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2036,9 +2036,9 @@ } } }, - "route53-recovery-readiness.2019-12-02": { + "service-quotas.2019-06-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53-recovery-readiness.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/service-quotas.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2047,9 +2047,9 @@ } } }, - "eks.2017-11-01": { + "cloudfront-keyvaluestore.2022-07-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/eks.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudfront-keyvaluestore.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2058,9 +2058,9 @@ } } }, - "kinesis-video-media.2017-09-30": { + "mediapackage.2017-10-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-media.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediapackage.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2069,9 +2069,9 @@ } } }, - "iot-events.2018-07-27": { + "sts.2011-06-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-events.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sts.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2080,9 +2080,9 @@ } } }, - "bedrock-runtime.2023-09-30": { + "docdb.2014-10-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/docdb.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2091,9 +2091,9 @@ } } }, - "ram.2018-01-04": { + "tnb.2008-10-21": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ram.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/tnb.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2102,9 +2102,9 @@ } } }, - "cloudsearch-domain.2013-01-01": { + "kendra.2019-02-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudsearch-domain.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kendra.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2113,9 +2113,9 @@ } } }, - "route53-recovery-cluster.2019-12-02": { + "keyspaces.2022-02-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53-recovery-cluster.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/keyspaces.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2124,9 +2124,9 @@ } } }, - "lambda.2015-03-31": { + "qldb.2019-01-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lambda.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qldb.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2135,9 +2135,9 @@ } } }, - "sagemaker-edge.2020-09-23": { + "support-app.2021-08-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-edge.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/support-app.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2146,9 +2146,9 @@ } } }, - "apprunner.2020-05-15": { + "bedrock-data-automation.2023-07-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apprunner.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-data-automation.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2157,9 +2157,9 @@ } } }, - "iotthingsgraph.2018-09-06": { + "cognito-identity-provider.2016-04-18": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotthingsgraph.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cognito-identity-provider.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2168,9 +2168,9 @@ } } }, - "cloudcontrol.2021-09-30": { + "kinesis-video-archived-media.2017-09-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudcontrol.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-archived-media.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2179,9 +2179,9 @@ } } }, - "bcm-data-exports.2023-11-26": { + "wafv2.2019-07-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bcm-data-exports.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/wafv2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2190,9 +2190,9 @@ } } }, - "iotfleetwise.2021-06-17": { + "lakeformation.2017-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotfleetwise.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lakeformation.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2201,9 +2201,9 @@ } } }, - "cognito-identity-provider.2016-04-18": { + "bedrock.2023-04-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cognito-identity-provider.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2212,9 +2212,9 @@ } } }, - "managedblockchain.2018-09-24": { + "cost-and-usage-report-service.2017-01-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/managedblockchain.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cost-and-usage-report-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2223,9 +2223,9 @@ } } }, - "app-mesh.2019-01-25": { + "panorama.2019-07-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/app-mesh.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/panorama.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2234,9 +2234,9 @@ } } }, - "ivs.2020-07-14": { + "opsworks.2013-02-18": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ivs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opsworks.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2245,9 +2245,9 @@ } } }, - "databrew.2017-07-25": { + "rbin.2021-06-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/databrew.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rbin.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2256,9 +2256,9 @@ } } }, - "sts.2011-06-15": { + "license-manager.2018-08-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sts.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/license-manager.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2267,9 +2267,9 @@ } } }, - "workdocs.2016-05-01": { + "geo-maps.2020-11-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workdocs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/geo-maps.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2278,9 +2278,9 @@ } } }, - "keyspaces.2022-02-10": { + "acm-pca.": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/keyspaces.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/acm-pca.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2289,9 +2289,9 @@ } } }, - "ec2-instance-connect.2018-04-02": { + "accessanalyzer.2019-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ec2-instance-connect.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/accessanalyzer.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2300,9 +2300,9 @@ } } }, - "lex-runtime-v2.2020-08-07": { + "fms.2018-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-runtime-v2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/fms.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2311,9 +2311,9 @@ } } }, - "pca-connector-scep.2018-05-10": { + "cloudsearch.2013-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pca-connector-scep.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudsearch.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2322,9 +2322,9 @@ } } }, - "ecs.2014-11-13": { + "guardduty.2017-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ecs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/guardduty.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2333,9 +2333,9 @@ } } }, - "ivs-realtime.2020-07-14": { + "scheduler.2021-06-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ivs-realtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/scheduler.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2344,9 +2344,9 @@ } } }, - "b2bi.2022-06-23": { + "mailmanager.2023-10-17": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/b2bi.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mailmanager.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2355,9 +2355,9 @@ } } }, - "bedrock-data-automation.2023-07-26": { + "sfn.2016-11-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-data-automation.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sfn.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2366,9 +2366,9 @@ } } }, - "support.2013-04-15": { + "device-farm.2015-06-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/support.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/device-farm.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2377,9 +2377,9 @@ } } }, - "artifact.2018-05-10": { + "pipes.2015-10-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/artifact.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pipes.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2388,9 +2388,9 @@ } } }, - "iot-1click-devices-service.2018-05-14": { + "forecast.2018-06-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-1click-devices-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/forecast.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2399,9 +2399,9 @@ } } }, - "acm.2015-12-08": { + "transcribe-streaming.2017-10-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/acm.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/transcribe-streaming.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2410,9 +2410,9 @@ } } }, - "lookoutvision.2020-11-20": { + "timestream-query.2018-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lookoutvision.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/timestream-query.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2421,9 +2421,9 @@ } } }, - "controltower.2018-05-10": { + "resource-groups-tagging-api.2017-01-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/controltower.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resource-groups-tagging-api.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2432,9 +2432,9 @@ } } }, - "chime-sdk-messaging.2021-05-15": { + "amplifyuibuilder.2021-08-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-messaging.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amplifyuibuilder.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2443,9 +2443,9 @@ } } }, - "swf.2012-01-25": { + "elastic-transcoder.2012-09-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/swf.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-transcoder.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2454,9 +2454,9 @@ } } }, - "athena.2017-05-18": { + "compute-optimizer.2019-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/athena.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/compute-optimizer.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2465,9 +2465,9 @@ } } }, - "elastic-load-balancing.2012-06-01": { + "connectcases.2022-10-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-load-balancing.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectcases.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2476,9 +2476,9 @@ } } }, - "billing.2023-09-07": { + "mq.2017-11-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/billing.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mq.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2487,9 +2487,9 @@ } } }, - "cloudsearch.2013-01-01": { + "elasticsearch-service.2015-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudsearch.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elasticsearch-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2498,9 +2498,9 @@ } } }, - "application-signals.2024-04-15": { + "billing.2023-09-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-signals.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/billing.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2509,9 +2509,9 @@ } } }, - "sso.2019-06-10": { + "voice-id.2021-09-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sso.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/voice-id.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2520,9 +2520,9 @@ } } }, - "service-catalog.2015-12-10": { + "opsworkscm.2016-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/service-catalog.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opsworkscm.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2531,9 +2531,9 @@ } } }, - "omics.2022-11-28": { + "braket.2019-09-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/omics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/braket.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2542,9 +2542,9 @@ } } }, - "amplify.2017-07-25": { + "ecr.2015-09-21": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amplify.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ecr.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2553,9 +2553,9 @@ } } }, - "supplychain.2024-01-01": { + "sagemaker-geospatial.2020-05-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/supplychain.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-geospatial.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2564,9 +2564,9 @@ } } }, - "appintegrations.2020-07-29": { + "app-mesh.2019-01-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appintegrations.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/app-mesh.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2575,9 +2575,9 @@ } } }, - "ecr.2015-09-21": { + "finspace-data.2020-07-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ecr.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/finspace-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2586,9 +2586,9 @@ } } }, - "entityresolution.2018-05-10": { + "elastic-load-balancing.2012-06-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/entityresolution.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-load-balancing.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2597,9 +2597,9 @@ } } }, - "budgets.2016-10-20": { + "resource-groups.2017-11-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/budgets.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resource-groups.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2608,9 +2608,9 @@ } } }, - "payment-cryptography-data.2022-02-03": { + "sagemaker-runtime.2017-05-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/payment-cryptography-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2619,9 +2619,9 @@ } } }, - "service-catalog-appregistry.2020-06-24": { + "kms.2014-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/service-catalog-appregistry.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kms.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2630,9 +2630,9 @@ } } }, - "license-manager-user-subscriptions.2018-05-10": { + "route53-recovery-control-config.2020-11-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/license-manager-user-subscriptions.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53-recovery-control-config.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2641,9 +2641,9 @@ } } }, - "bedrock-agent.2023-06-05": { + "pinpoint-email.2018-07-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-agent.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint-email.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2652,9 +2652,9 @@ } } }, - "wisdom.2020-10-19": { + "amplify.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/wisdom.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amplify.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2663,9 +2663,9 @@ } } }, - "redshift.2012-12-01": { + "codeartifact.2018-09-22": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/redshift.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeartifact.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2674,9 +2674,9 @@ } } }, - "taxsettings.2018-05-10": { + "iotfleetwise.2021-06-17": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/taxsettings.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotfleetwise.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2685,9 +2685,9 @@ } } }, - "backupsearch.2018-05-10": { + "resource-explorer-2.2022-07-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/backupsearch.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resource-explorer-2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2696,9 +2696,9 @@ } } }, - "opsworks.2013-02-18": { + "iottwinmaker.2021-11-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opsworks.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iottwinmaker.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2707,9 +2707,9 @@ } } }, - "iam.2010-05-08": { + "appflow.2020-08-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iam.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appflow.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2718,9 +2718,9 @@ } } }, - "marketplace-metering.2016-01-14": { + "directory-service-data.2023-05-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-metering.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/directory-service-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2729,9 +2729,9 @@ } } }, - "sagemaker-a2i-runtime.2019-11-07": { + "backupsearch.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-a2i-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/backupsearch.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2740,9 +2740,9 @@ } } }, - "storage-gateway.2013-06-30": { + "codecatalyst.2022-09-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/storage-gateway.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codecatalyst.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2751,9 +2751,9 @@ } } }, - "networkmanager.2019-07-05": { + "invoicing.2024-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/networkmanager.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/invoicing.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2762,9 +2762,9 @@ } } }, - "pipes.2015-10-07": { + "pinpoint.2016-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pipes.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2773,9 +2773,9 @@ } } }, - "iot-jobs-data-plane.2017-09-29": { + "marketplace-agreement.2020-03-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-jobs-data-plane.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-agreement.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2784,9 +2784,9 @@ } } }, - "elasticsearch-service.2015-01-01": { + "medialive.2017-10-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elasticsearch-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/medialive.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2795,9 +2795,9 @@ } } }, - "ec2.2016-11-15": { + "iot-1click-projects.2018-05-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ec2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-1click-projects.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2806,9 +2806,9 @@ } } }, - "resource-explorer-2.2022-07-28": { + "polly.2016-06-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resource-explorer-2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/polly.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2817,9 +2817,9 @@ } } }, - "workspaces-thin-client.2023-08-22": { + "cloudtrail.2013-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workspaces-thin-client.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudtrail.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2828,9 +2828,9 @@ } } }, - "lookoutmetrics.2017-07-25": { + "imagebuilder.2019-12-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lookoutmetrics.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/imagebuilder.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2839,9 +2839,9 @@ } } }, - "imagebuilder.2019-12-02": { + "qconnect.2020-10-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/imagebuilder.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qconnect.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2850,9 +2850,9 @@ } } }, - "launch-wizard.2018-05-10": { + "migration-hub.2017-05-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/launch-wizard.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migration-hub.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2861,9 +2861,9 @@ } } }, - "secrets-manager.2017-10-17": { + "internetmonitor.2021-06-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/secrets-manager.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/internetmonitor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2872,9 +2872,9 @@ } } }, - "directory-service-data.2023-05-31": { + "cloudwatch-logs.2014-03-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/directory-service-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudwatch-logs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2883,9 +2883,9 @@ } } }, - "mediastore.2017-09-01": { + "application-auto-scaling.2016-02-06": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediastore.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-auto-scaling.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2894,9 +2894,9 @@ } } }, - "mgn.2020-02-26": { + "forecastquery.2018-06-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mgn.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/forecastquery.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2905,9 +2905,9 @@ } } }, - "license-manager.2018-08-01": { + "codeconnections.2023-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/license-manager.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeconnections.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2916,9 +2916,9 @@ } } }, - "kinesis-analytics-v2.2018-05-23": { + "securitylake.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-analytics-v2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/securitylake.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2927,9 +2927,9 @@ } } }, - "snowball.2016-06-30": { + "machine-learning.2014-12-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/snowball.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/machine-learning.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2938,9 +2938,9 @@ } } }, - "route53profiles.2018-05-10": { + "personalize-events.2018-03-22": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53profiles.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/personalize-events.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2949,9 +2949,9 @@ } } }, - "managedblockchain-query.2023-05-04": { + "kinesis-video-signaling.2019-12-04": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/managedblockchain-query.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-signaling.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2960,9 +2960,9 @@ } } }, - "frauddetector.2019-11-15": { + "ssm-quicksetup.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/frauddetector.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-quicksetup.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2971,9 +2971,9 @@ } } }, - "docdb.2014-10-31": { + "networkmanager.2019-07-05": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/docdb.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/networkmanager.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2982,9 +2982,9 @@ } } }, - "opensearch.2021-01-01": { + "service-catalog.2015-12-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opensearch.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/service-catalog.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -2993,9 +2993,9 @@ } } }, - "migrationhuborchestrator.2021-08-28": { + "supplychain.2024-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migrationhuborchestrator.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/supplychain.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3004,9 +3004,9 @@ } } }, - "qbusiness.2023-11-27": { + "rds.2014-10-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qbusiness.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rds.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3015,9 +3015,9 @@ } } }, - "elastic-load-balancing-v2.2015-12-01": { + "savingsplans.2019-06-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-load-balancing-v2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/savingsplans.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3026,9 +3026,9 @@ } } }, - "chime-sdk-media-pipelines.2021-07-15": { + "bedrock-agent-runtime.2023-07-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-media-pipelines.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-agent-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3037,9 +3037,9 @@ } } }, - "route53-recovery-control-config.2020-11-02": { + "clouddirectory.2017-01-11": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53-recovery-control-config.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/clouddirectory.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3048,9 +3048,9 @@ } } }, - "sms.2016-10-24": { + "iot-data-plane.2015-05-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sms.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-data-plane.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3059,9 +3059,9 @@ } } }, - "marketplace-deployment.2023-01-25": { + "finspace.2021-03-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-deployment.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/finspace.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3070,9 +3070,9 @@ } } }, - "s3tables.2018-05-10": { + "wisdom.2020-10-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3tables.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/wisdom.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3081,9 +3081,9 @@ } } }, - "waf.2015-08-24": { + "iot-wireless.2020-11-22": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/waf.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-wireless.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3092,9 +3092,9 @@ } } }, - "sso-oidc.2019-06-10": { + "ivschat.2020-07-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sso-oidc.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ivschat.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3103,9 +3103,9 @@ } } }, - "codeguru-security.2018-05-10": { + "cloudformation.2010-05-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeguru-security.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudformation.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3114,9 +3114,9 @@ } } }, - "notifications.2018-05-10": { + "timestream-influxdb.2023-01-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/notifications.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/timestream-influxdb.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3125,9 +3125,9 @@ } } }, - "mailmanager.2023-10-17": { + "pca-connector-ad.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mailmanager.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pca-connector-ad.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3136,9 +3136,9 @@ } } }, - "global-accelerator.2018-08-08": { + "iot-events-data.2018-10-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/global-accelerator.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-events-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3147,9 +3147,9 @@ } } }, - "networkmonitor.2023-08-01": { + "application-insights.2018-11-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/networkmonitor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-insights.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3158,9 +3158,9 @@ } } }, - "geo-routes.2020-11-19": { + "sso.2019-06-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/geo-routes.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sso.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3169,9 +3169,9 @@ } } }, - "m2.2021-04-28": { + "athena.2017-05-18": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/m2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/athena.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3180,9 +3180,9 @@ } } }, - "guardduty.2017-11-28": { + "osis.2022-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/guardduty.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/osis.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3191,9 +3191,9 @@ } } }, - "migration-hub-refactor-spaces.2021-10-26": { + "s3tables.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migration-hub-refactor-spaces.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3tables.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3202,9 +3202,9 @@ } } }, - "dsql.2018-05-10": { + "amp.2020-08-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dsql.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amp.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3213,9 +3213,9 @@ } } }, - "chime-sdk-voice.2022-08-03": { + "ssm-contacts.2021-05-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-voice.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-contacts.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3224,9 +3224,9 @@ } } }, - "partnercentral-selling.2022-07-26": { + "cost-explorer.2017-10-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/partnercentral-selling.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cost-explorer.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3235,9 +3235,9 @@ } } }, - "migrationhub-config.2019-06-30": { + "efs.2015-02-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migrationhub-config.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/efs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3246,9 +3246,9 @@ } } }, - "dataexchange.2017-07-25": { + "textract.2018-06-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dataexchange.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/textract.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3257,9 +3257,9 @@ } } }, - "directory-service.2015-04-16": { + "iotanalytics.2017-11-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/directory-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotanalytics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3268,9 +3268,9 @@ } } }, - "mturk.2017-01-17": { + "glue.2017-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mturk.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/glue.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3279,9 +3279,9 @@ } } }, - "securitylake.2018-05-10": { + "cloudcontrol.2021-09-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/securitylake.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudcontrol.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3290,9 +3290,9 @@ } } }, - "medialive.2017-10-14": { + "sagemaker.2017-07-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/medialive.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3301,9 +3301,9 @@ } } }, - "elastic-transcoder.2012-09-25": { + "mturk.2017-01-17": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-transcoder.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mturk.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3312,9 +3312,9 @@ } } }, - "pinpoint-sms-voice-v2.2022-03-31": { + "omics.2022-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint-sms-voice-v2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/omics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3323,9 +3323,9 @@ } } }, - "servicediscovery.2017-03-14": { + "appstream.2016-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/servicediscovery.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appstream.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3334,9 +3334,9 @@ } } }, - "fms.2018-01-01": { + "apprunner.2020-05-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/fms.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/apprunner.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3345,9 +3345,9 @@ } } }, - "robomaker.2018-06-29": { + "sms.2016-10-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/robomaker.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sms.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3356,9 +3356,9 @@ } } }, - "savingsplans.2019-06-28": { + "launch-wizard.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/savingsplans.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/launch-wizard.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3367,9 +3367,9 @@ } } }, - "firehose.2015-08-04": { + "xray.2016-04-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/firehose.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/xray.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3378,9 +3378,9 @@ } } }, - "codeartifact.2018-09-22": { + "migrationhub-config.2019-06-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeartifact.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migrationhub-config.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3389,9 +3389,9 @@ } } }, - "elasticache.2015-02-02": { + "mediatailor.2018-04-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elasticache.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediatailor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3400,9 +3400,9 @@ } } }, - "devops-guru.2020-12-01": { + "cloudwatch-events.2015-10-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/devops-guru.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudwatch-events.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3411,9 +3411,9 @@ } } }, - "qapps.2023-11-27": { + "qbusiness.2023-11-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qapps.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/qbusiness.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3422,9 +3422,9 @@ } } }, - "neptunedata.2023-08-01": { + "ebs.2019-11-02": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/neptunedata.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ebs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3433,9 +3433,9 @@ } } }, - "rds-data.2018-08-01": { + "grafana.2020-08-18": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rds-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/grafana.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3444,9 +3444,9 @@ } } }, - "pinpoint-sms-voice.2018-09-05": { + "managedblockchain.2018-09-24": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint-sms-voice.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/managedblockchain.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3455,9 +3455,9 @@ } } }, - "greengrassv2.2020-11-30": { + "backup.2018-11-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/greengrassv2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/backup.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3466,9 +3466,9 @@ } } }, - "appsync.2017-07-25": { + "s3outposts.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appsync.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3outposts.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3477,9 +3477,9 @@ } } }, - "eks-auth.2023-11-26": { + "customer-profiles.2020-08-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/eks-auth.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/customer-profiles.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3488,9 +3488,9 @@ } } }, - "cleanroomsml.2023-09-06": { + "chime-sdk-voice.2022-08-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cleanroomsml.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-voice.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3499,9 +3499,9 @@ } } }, - "personalize-runtime.2018-05-22": { + "iot-jobs-data-plane.2017-09-29": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/personalize-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-jobs-data-plane.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3510,9 +3510,9 @@ } } }, - "cloud9.2017-09-23": { + "mwaa.2020-07-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloud9.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mwaa.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3521,9 +3521,9 @@ } } }, - "kinesis-video-webrtc-storage.2018-05-10": { + "iam.2010-05-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-video-webrtc-storage.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iam.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3532,9 +3532,9 @@ } } }, - "bedrock-agent-runtime.2023-07-26": { + "mediastore.2017-09-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-agent-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediastore.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3543,9 +3543,9 @@ } } }, - "s3-control.2018-08-20": { + "timestream-write.2018-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3-control.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/timestream-write.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3554,9 +3554,9 @@ } } }, - "auditmanager.2017-07-25": { + "personalize.2018-05-22": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/auditmanager.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/personalize.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3565,9 +3565,9 @@ } } }, - "pricing.2017-10-15": { + "comprehendmedical.2018-10-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pricing.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/comprehendmedical.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3576,9 +3576,9 @@ } } }, - "docdb-elastic.2022-11-28": { + "elastic-inference.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/docdb-elastic.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/elastic-inference.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3587,9 +3587,9 @@ } } }, - "osis.2022-01-01": { + "redshift-serverless.2021-04-21": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/osis.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/redshift-serverless.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3598,9 +3598,9 @@ } } }, - "codestar-notifications.2019-10-15": { + "codeguru-security.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codestar-notifications.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codeguru-security.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3609,9 +3609,9 @@ } } }, - "marketplace-catalog.2018-09-17": { + "opensearchserverless.2021-11-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-catalog.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opensearchserverless.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3620,9 +3620,9 @@ } } }, - "iotsitewise.2019-12-02": { + "applicationcostprofiler.2020-09-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotsitewise.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/applicationcostprofiler.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3631,9 +3631,9 @@ } } }, - "polly.2016-06-10": { + "marketplace-metering.2016-01-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/polly.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-metering.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3642,9 +3642,9 @@ } } }, - "appstream.2016-12-01": { + "kinesis-analytics.2015-08-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appstream.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis-analytics.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3653,9 +3653,9 @@ } } }, - "transcribe.2017-10-26": { + "cloudwatch.2010-08-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/transcribe.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudwatch.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3664,9 +3664,9 @@ } } }, - "kendra-ranking.2022-10-19": { + "managedblockchain-query.2023-05-04": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kendra-ranking.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/managedblockchain-query.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3675,9 +3675,9 @@ } } }, - "chatbot.2017-10-11": { + "migrationhuborchestrator.2021-08-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chatbot.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migrationhuborchestrator.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3686,9 +3686,9 @@ } } }, - "drs.2020-02-26": { + "resiliencehub.2020-04-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/drs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resiliencehub.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3697,9 +3697,9 @@ } } }, - "marketplace-reporting.2018-05-10": { + "ivs.2020-07-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-reporting.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ivs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3708,9 +3708,9 @@ } } }, - "emr-containers.2020-10-01": { + "route-53.2013-04-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/emr-containers.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route-53.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3719,9 +3719,9 @@ } } }, - "cloudwatch-events.2015-10-07": { + "license-manager-user-subscriptions.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudwatch-events.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/license-manager-user-subscriptions.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3730,9 +3730,9 @@ } } }, - "datazone.2018-05-10": { + "ram.2018-01-04": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/datazone.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ram.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3741,9 +3741,9 @@ } } }, - "kinesis.2013-12-02": { + "outposts.2019-12-03": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kinesis.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/outposts.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3752,9 +3752,9 @@ } } }, - "arc-zonal-shift.2022-10-30": { + "dax.2017-04-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/arc-zonal-shift.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dax.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3763,9 +3763,9 @@ } } }, - "customer-profiles.2020-08-15": { + "trustedadvisor.2022-09-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/customer-profiles.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/trustedadvisor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3774,9 +3774,9 @@ } } }, - "config-service.2014-11-12": { + "inspector2.2020-06-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/config-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/inspector2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3785,9 +3785,9 @@ } } }, - "efs.2015-02-01": { + "migration-hub-refactor-spaces.2021-10-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/efs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migration-hub-refactor-spaces.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3796,9 +3796,9 @@ } } }, - "ebs.2019-11-02": { + "lex-model-building-service.2017-04-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ebs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-model-building-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3807,9 +3807,9 @@ } } }, - "route-53.2013-04-01": { + "partnercentral-selling.2022-07-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route-53.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/partnercentral-selling.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3818,9 +3818,9 @@ } } }, - "bcm-pricing-calculator.2024-06-19": { + "deadline.2023-10-12": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bcm-pricing-calculator.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/deadline.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3829,9 +3829,9 @@ } } }, - "codestar-connections.2019-12-01": { + "b2bi.2022-06-23": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codestar-connections.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/b2bi.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3840,9 +3840,9 @@ } } }, - "scheduler.2021-06-30": { + "sso-admin.2020-07-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/scheduler.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sso-admin.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3851,9 +3851,9 @@ } } }, - "fis.2020-12-01": { + "bedrock-data-automation-runtime.2024-06-13": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/fis.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/bedrock-data-automation-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3862,9 +3862,9 @@ } } }, - "resiliencehub.2020-04-30": { + "secrets-manager.2017-10-17": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/resiliencehub.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/secrets-manager.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3873,9 +3873,9 @@ } } }, - "marketplace-entitlement-service.2017-01-11": { + "appfabric.2023-05-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-entitlement-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appfabric.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3884,9 +3884,9 @@ } } }, - "pcs.2023-02-10": { + "eks-auth.2023-11-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pcs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/eks-auth.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3895,9 +3895,9 @@ } } }, - "chime-sdk-meetings.2021-07-15": { + "databrew.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-meetings.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/databrew.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3906,9 +3906,9 @@ } } }, - "sagemaker-runtime.2017-05-13": { + "chime-sdk-meetings.2021-07-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-runtime.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/chime-sdk-meetings.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3917,9 +3917,9 @@ } } }, - "sfn.2016-11-23": { + "verifiedpermissions.2021-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sfn.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/verifiedpermissions.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3928,9 +3928,9 @@ } } }, - "kms.2014-11-01": { + "rekognition.2016-06-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kms.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/rekognition.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3939,9 +3939,9 @@ } } }, - "clouddirectory.2017-01-11": { + "sagemaker-featurestore-runtime.2020-07-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/clouddirectory.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sagemaker-featurestore-runtime.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3950,9 +3950,9 @@ } } }, - "iot-events-data.2018-10-23": { + "m2.2021-04-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iot-events-data.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/m2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3961,9 +3961,9 @@ } } }, - "sns.2010-03-31": { + "proton.2020-07-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sns.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/proton.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3972,9 +3972,9 @@ } } }, - "cloudwatch-logs.2014-03-28": { + "opensearch.2021-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudwatch-logs.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/opensearch.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3983,9 +3983,9 @@ } } }, - "location.2020-11-19": { + "drs.2020-02-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/location.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/drs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -3994,9 +3994,9 @@ } } }, - "memorydb.2021-01-01": { + "sesv2.2019-09-27": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/memorydb.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sesv2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4005,9 +4005,9 @@ } } }, - "s3outposts.2017-07-25": { + "detective.2018-10-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/s3outposts.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/detective.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4016,9 +4016,9 @@ } } }, - "mwaa.2020-07-01": { + "marketplace-reporting.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mwaa.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/marketplace-reporting.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4027,9 +4027,9 @@ } } }, - "inspector.2016-02-16": { + "workspaces.2015-04-08": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/inspector.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workspaces.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4038,9 +4038,9 @@ } } }, - "security-ir.2018-05-10": { + "geo-routes.2020-11-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/security-ir.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/geo-routes.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4049,9 +4049,9 @@ } } }, - "mediaconvert.2017-08-29": { + "directory-service.2015-04-16": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediaconvert.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/directory-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4060,9 +4060,9 @@ } } }, - "deadline.2023-10-12": { + "redshift-data.2019-12-20": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/deadline.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/redshift-data.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4071,9 +4071,9 @@ } } }, - "ssm-sap.2018-05-10": { + "notifications.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/ssm-sap.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/notifications.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4082,9 +4082,9 @@ } } }, - "healthlake.2017-07-01": { + "direct-connect.2012-10-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/healthlake.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/direct-connect.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4093,9 +4093,9 @@ } } }, - "application-discovery-service.2015-11-01": { + "greengrass.2017-06-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/application-discovery-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/greengrass.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4104,9 +4104,9 @@ } } }, - "fsx.2018-03-01": { + "transcribe.2017-10-26": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/fsx.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/transcribe.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4115,9 +4115,9 @@ } } }, - "sesv2.2019-09-27": { + "route53profiles.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/sesv2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53profiles.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4126,9 +4126,9 @@ } } }, - "amp.2020-08-01": { + "servicediscovery.2017-03-14": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amp.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/servicediscovery.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4137,9 +4137,9 @@ } } }, - "codecatalyst.2022-09-28": { + "neptune.2014-10-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codecatalyst.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/neptune.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4148,9 +4148,9 @@ } } }, - "kendra.2019-02-03": { + "waf-regional.2016-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/kendra.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/waf-regional.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4159,9 +4159,9 @@ } } }, - "accessanalyzer.2019-11-01": { + "cloudsearch-domain.2013-01-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/accessanalyzer.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudsearch-domain.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4170,9 +4170,9 @@ } } }, - "comprehendmedical.2018-10-30": { + "pinpoint-sms-voice-v2.2022-03-31": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/comprehendmedical.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint-sms-voice-v2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4183,7 +4183,7 @@ }, "lex-runtime-service.2016-11-28": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-runtime-service.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-runtime-service.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4192,9 +4192,9 @@ } } }, - "oam.2022-06-10": { + "health.2016-08-04": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/oam.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/health.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4203,9 +4203,9 @@ } } }, - "migrationhubstrategy.2020-02-19": { + "billingconductor.2021-07-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migrationhubstrategy.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/billingconductor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4214,9 +4214,9 @@ } } }, - "connectcampaigns.2021-01-30": { + "frauddetector.2019-11-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/connectcampaigns.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/frauddetector.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4225,9 +4225,9 @@ } } }, - "lightsail.2016-11-28": { + "networkflowmonitor.2023-04-19": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lightsail.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/networkflowmonitor.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4236,9 +4236,9 @@ } } }, - "pi.2018-02-27": { + "lookoutequipment.2020-12-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pi.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lookoutequipment.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4247,9 +4247,9 @@ } } }, - "cognito-sync.2014-06-30": { + "route53resolver.2018-04-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cognito-sync.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/route53resolver.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4258,9 +4258,9 @@ } } }, - "cloudtrail.2013-11-01": { + "support.2013-04-15": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cloudtrail.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/support.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4269,9 +4269,9 @@ } } }, - "medical-imaging.2023-07-19": { + "inspector.2016-02-16": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/medical-imaging.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/inspector.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4280,9 +4280,9 @@ } } }, - "groundstation.2019-05-23": { + "appsync.2017-07-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/groundstation.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/appsync.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4291,9 +4291,9 @@ } } }, - "securityhub.2018-10-26": { + "emr-containers.2020-10-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/securityhub.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/emr-containers.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4302,9 +4302,9 @@ } } }, - "workmailmessageflow.2019-05-01": { + "dsql.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workmailmessageflow.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dsql.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4313,9 +4313,9 @@ } } }, - "finspace.2021-03-12": { + "security-ir.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/finspace.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/security-ir.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4324,9 +4324,9 @@ } } }, - "outposts.2019-12-03": { + "codepipeline.2015-07-09": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/outposts.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/codepipeline.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4335,9 +4335,9 @@ } } }, - "amplifyuibuilder.2021-08-11": { + "iotsecuretunneling.2018-10-05": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/amplifyuibuilder.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/iotsecuretunneling.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4346,9 +4346,9 @@ } } }, - "dlm.2018-01-12": { + "arc-zonal-shift.2022-10-30": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/dlm.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/arc-zonal-shift.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4357,9 +4357,9 @@ } } }, - "compute-optimizer.2019-11-01": { + "cleanrooms.2022-02-17": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/compute-optimizer.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/cleanrooms.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4368,9 +4368,9 @@ } } }, - "mediapackage.2017-10-12": { + "lex-models-v2.2020-08-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediapackage.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-models-v2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4379,9 +4379,9 @@ } } }, - "geo-maps.2020-11-19": { + "lex-runtime-v2.2020-08-07": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/geo-maps.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/lex-runtime-v2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4390,9 +4390,9 @@ } } }, - "inspector2.2020-06-08": { + "observabilityadmin.2018-05-10": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/inspector2.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/observabilityadmin.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4401,9 +4401,9 @@ } } }, - "migration-hub.2017-05-31": { + "datasync.2018-11-09": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/migration-hub.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/datasync.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4412,9 +4412,9 @@ } } }, - "pinpoint.2016-12-01": { + "mediapackagev2.2022-12-25": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/pinpoint.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediapackagev2.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4423,9 +4423,9 @@ } } }, - "controlcatalog.2018-05-10": { + "workdocs.2016-05-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/controlcatalog.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/workdocs.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": { @@ -4434,9 +4434,9 @@ } } }, - "mediatailor.2018-04-23": { + "redshift.2012-12-01": { "imports": [ - "/codebuild/output/src3186249931/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/mediatailor.json" + "/codebuild/output/src955955709/src/aws-sdk-cpp/tools/code-generation/smithy/api-descriptions/redshift.json" ], "plugins": { "cpp-codegen-smoke-tests-plugin": {