AWS SDK for C++

AWS SDK for C++ Version 1.11.747

Loading...
Searching...
No Matches
DynamoDBClientConfiguration.h
1
6#pragma once
7
8#include <aws/core/client/GenericClientConfiguration.h>
9#include <aws/dynamodb/DynamoDB_EXPORTS.h>
10
11namespace Aws {
12namespace DynamoDB {
15 static const bool EndpointDiscoverySupported = true;
16 static const bool EndpointDiscoveryRequired = false;
17
19 : Aws::Client::GenericClientConfiguration(other), enableEndpointDiscovery(BaseClientConfigClass::enableEndpointDiscovery) {}
20
23 enableEndpointDiscovery(BaseClientConfigClass::enableEndpointDiscovery) {}
24
26 if (this == &other) return *this;
27 Aws::Client::GenericClientConfiguration::operator=(other);
28 return *this;
29 }
30
32 if (this == &other) return *this;
33 Aws::Client::GenericClientConfiguration::operator=(std::move(other));
34 return *this;
35 }
36
38
45 DynamoDBClientConfiguration(const char* profileName, bool shouldDisableIMDS = false);
46
53 DynamoDBClientConfiguration(bool useSmartDefaults, const char* defaultMode = "legacy", bool shouldDisableIMDS = false);
54
59
70 Aws::Crt::Optional<bool>& enableEndpointDiscovery;
71
72 private:
73 void LoadDynamoDBSpecificConfig(const Aws::String& profileName);
74};
75} // namespace DynamoDB
76} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
DynamoDBClientConfiguration(const Client::ClientConfiguration &config)
DynamoDBClientConfiguration(const char *profileName, bool shouldDisableIMDS=false)
DynamoDBClientConfiguration(bool useSmartDefaults, const char *defaultMode="legacy", bool shouldDisableIMDS=false)
DynamoDBClientConfiguration(const DynamoDBClientConfiguration &other)
DynamoDBClientConfiguration & operator=(DynamoDBClientConfiguration &&other) noexcept
DynamoDBClientConfiguration(DynamoDBClientConfiguration &&other) noexcept
DynamoDBClientConfiguration(const Client::ClientConfigurationInitValues &configuration={})
DynamoDBClientConfiguration & operator=(const DynamoDBClientConfiguration &other)