Skip to content

Commit

Permalink
Adds data provenance to import jobs from read sets and references
Browse files Browse the repository at this point in the history
Amazon Bedrock SDK updates for Inference Profile.
Amazon Bedrock SDK updates for Inference Profile.
Amazon Polly adds 2 new voices: Jitka (cs-CZ) and Sabrina (de-CH).
Update documentation to be consistent with the API docs
  • Loading branch information
aws-sdk-cpp-automation committed Aug 27, 2024
1 parent c81ebfa commit bd88650
Show file tree
Hide file tree
Showing 846 changed files with 5,887 additions and 3,336 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.392
1.11.393
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,6 @@ namespace MigrationHub
void init(const MigrationHubClientConfiguration& clientConfiguration);

MigrationHubClientConfiguration m_clientConfiguration;
std::shared_ptr<Aws::Utils::Threading::Executor> m_executor;
std::shared_ptr<MigrationHubEndpointProviderBase> m_endpointProvider;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ MigrationHubClient::MigrationHubClient(const MigrationHub::MigrationHubClientCon
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -88,7 +87,6 @@ MigrationHubClient::MigrationHubClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -104,7 +102,6 @@ MigrationHubClient::MigrationHubClient(const std::shared_ptr<AWSCredentialsProvi
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -119,7 +116,6 @@ MigrationHubClient::MigrationHubClient(const std::shared_ptr<AWSCredentialsProvi
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -134,7 +130,6 @@ MigrationHubClient::MigrationHubClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -149,7 +144,6 @@ MigrationHubClient::MigrationHubClient(const std::shared_ptr<AWSCredentialsProvi
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<MigrationHubErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<MigrationHubEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -169,6 +163,14 @@ std::shared_ptr<MigrationHubEndpointProviderBase>& MigrationHubClient::accessEnd
void MigrationHubClient::init(const MigrationHub::MigrationHubClientConfiguration& config)
{
AWSClient::SetServiceClientName("Migration Hub");
if (!m_clientConfiguration.executor) {
if (!m_clientConfiguration.configFactories.executorCreateFn()) {
AWS_LOGSTREAM_FATAL(ALLOCATION_TAG, "Failed to initialize client: config is missing Executor or executorCreateFn");
m_isInitialized = false;
return;
}
m_clientConfiguration.executor = m_clientConfiguration.configFactories.executorCreateFn();
}
AWS_CHECK_PTR(SERVICE_NAME, m_endpointProvider);
m_endpointProvider->InitBuiltInParameters(config);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,6 @@ namespace AccessAnalyzer
void init(const AccessAnalyzerClientConfiguration& clientConfiguration);

AccessAnalyzerClientConfiguration m_clientConfiguration;
std::shared_ptr<Aws::Utils::Threading::Executor> m_executor;
std::shared_ptr<AccessAnalyzerEndpointProviderBase> m_endpointProvider;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ AccessAnalyzerClient::AccessAnalyzerClient(const AccessAnalyzer::AccessAnalyzerC
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -106,7 +105,6 @@ AccessAnalyzerClient::AccessAnalyzerClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -122,7 +120,6 @@ AccessAnalyzerClient::AccessAnalyzerClient(const std::shared_ptr<AWSCredentialsP
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -137,7 +134,6 @@ AccessAnalyzerClient::AccessAnalyzerClient(const std::shared_ptr<AWSCredentialsP
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -152,7 +148,6 @@ AccessAnalyzerClient::AccessAnalyzerClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -167,7 +162,6 @@ AccessAnalyzerClient::AccessAnalyzerClient(const std::shared_ptr<AWSCredentialsP
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccessAnalyzerErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<AccessAnalyzerEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -187,6 +181,14 @@ std::shared_ptr<AccessAnalyzerEndpointProviderBase>& AccessAnalyzerClient::acces
void AccessAnalyzerClient::init(const AccessAnalyzer::AccessAnalyzerClientConfiguration& config)
{
AWSClient::SetServiceClientName("AccessAnalyzer");
if (!m_clientConfiguration.executor) {
if (!m_clientConfiguration.configFactories.executorCreateFn()) {
AWS_LOGSTREAM_FATAL(ALLOCATION_TAG, "Failed to initialize client: config is missing Executor or executorCreateFn");
m_isInitialized = false;
return;
}
m_clientConfiguration.executor = m_clientConfiguration.configFactories.executorCreateFn();
}
AWS_CHECK_PTR(SERVICE_NAME, m_endpointProvider);
m_endpointProvider->InitBuiltInParameters(config);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,6 @@ namespace Account
void init(const AccountClientConfiguration& clientConfiguration);

AccountClientConfiguration m_clientConfiguration;
std::shared_ptr<Aws::Utils::Threading::Executor> m_executor;
std::shared_ptr<AccountEndpointProviderBase> m_endpointProvider;
};

Expand Down
14 changes: 8 additions & 6 deletions generated/src/aws-cpp-sdk-account/source/AccountClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ AccountClient::AccountClient(const Account::AccountClientConfiguration& clientCo
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -83,7 +82,6 @@ AccountClient::AccountClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -99,7 +97,6 @@ AccountClient::AccountClient(const std::shared_ptr<AWSCredentialsProvider>& cred
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -114,7 +111,6 @@ AccountClient::AccountClient(const std::shared_ptr<AWSCredentialsProvider>& cred
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -129,7 +125,6 @@ AccountClient::AccountClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -144,7 +139,6 @@ AccountClient::AccountClient(const std::shared_ptr<AWSCredentialsProvider>& cred
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<AccountErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<AccountEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -164,6 +158,14 @@ std::shared_ptr<AccountEndpointProviderBase>& AccountClient::accessEndpointProvi
void AccountClient::init(const Account::AccountClientConfiguration& config)
{
AWSClient::SetServiceClientName("Account");
if (!m_clientConfiguration.executor) {
if (!m_clientConfiguration.configFactories.executorCreateFn()) {
AWS_LOGSTREAM_FATAL(ALLOCATION_TAG, "Failed to initialize client: config is missing Executor or executorCreateFn");
m_isInitialized = false;
return;
}
m_clientConfiguration.executor = m_clientConfiguration.configFactories.executorCreateFn();
}
AWS_CHECK_PTR(SERVICE_NAME, m_endpointProvider);
m_endpointProvider->InitBuiltInParameters(config);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,6 @@ namespace ACMPCA
void init(const ACMPCAClientConfiguration& clientConfiguration);

ACMPCAClientConfiguration m_clientConfiguration;
std::shared_ptr<Aws::Utils::Threading::Executor> m_executor;
std::shared_ptr<ACMPCAEndpointProviderBase> m_endpointProvider;
};

Expand Down
14 changes: 8 additions & 6 deletions generated/src/aws-cpp-sdk-acm-pca/source/ACMPCAClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ ACMPCAClient::ACMPCAClient(const ACMPCA::ACMPCAClientConfiguration& clientConfig
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -94,7 +93,6 @@ ACMPCAClient::ACMPCAClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -110,7 +108,6 @@ ACMPCAClient::ACMPCAClient(const std::shared_ptr<AWSCredentialsProvider>& creden
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(endpointProvider ? std::move(endpointProvider) : Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -125,7 +122,6 @@ ACMPCAClient::ACMPCAClient(const std::shared_ptr<AWSCredentialsProvider>& creden
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -140,7 +136,6 @@ ACMPCAClient::ACMPCAClient(const AWSCredentials& credentials,
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -155,7 +150,6 @@ ACMPCAClient::ACMPCAClient(const std::shared_ptr<AWSCredentialsProvider>& creden
Aws::Region::ComputeSignerRegion(clientConfiguration.region)),
Aws::MakeShared<ACMPCAErrorMarshaller>(ALLOCATION_TAG)),
m_clientConfiguration(clientConfiguration),
m_executor(clientConfiguration.executor),
m_endpointProvider(Aws::MakeShared<ACMPCAEndpointProvider>(ALLOCATION_TAG))
{
init(m_clientConfiguration);
Expand All @@ -175,6 +169,14 @@ std::shared_ptr<ACMPCAEndpointProviderBase>& ACMPCAClient::accessEndpointProvide
void ACMPCAClient::init(const ACMPCA::ACMPCAClientConfiguration& config)
{
AWSClient::SetServiceClientName("ACM PCA");
if (!m_clientConfiguration.executor) {
if (!m_clientConfiguration.configFactories.executorCreateFn()) {
AWS_LOGSTREAM_FATAL(ALLOCATION_TAG, "Failed to initialize client: config is missing Executor or executorCreateFn");
m_isInitialized = false;
return;
}
m_clientConfiguration.executor = m_clientConfiguration.configFactories.executorCreateFn();
}
AWS_CHECK_PTR(SERVICE_NAME, m_endpointProvider);
m_endpointProvider->InitBuiltInParameters(config);
}
Expand Down
1 change: 0 additions & 1 deletion generated/src/aws-cpp-sdk-acm/include/aws/acm/ACMClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,6 @@ namespace ACM
void init(const ACMClientConfiguration& clientConfiguration);

ACMClientConfiguration m_clientConfiguration;
std::shared_ptr<Aws::Utils::Threading::Executor> m_executor;
std::shared_ptr<ACMEndpointProviderBase> m_endpointProvider;
};

Expand Down
Loading

0 comments on commit bd88650

Please sign in to comment.