/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
#include
#include
namespace Aws
{
namespace AppConfig
{
/**
* Use AppConfig, a capability of Amazon Web Services Systems Manager, to
* create, manage, and quickly deploy application configurations. AppConfig
* supports controlled deployments to applications of any size and includes
* built-in validation checks and monitoring. You can use AppConfig with
* applications hosted on Amazon EC2 instances, Lambda, containers, mobile
* applications, or IoT devices.
To prevent errors when deploying
* application configurations, especially for production systems where a simple
* typo could cause an unexpected outage, AppConfig includes validators. A
* validator provides a syntactic or semantic check to ensure that the
* configuration you want to deploy works as intended. To validate your application
* configuration data, you provide a schema or an Amazon Web Services Lambda
* function that runs against the configuration. The configuration deployment or
* update can only proceed when the configuration data is valid.
During a
* configuration deployment, AppConfig monitors the application to ensure that the
* deployment is successful. If the system encounters an error, AppConfig rolls
* back the change to minimize impact for your application users. You can configure
* a deployment strategy for each application or environment that includes
* deployment criteria, including velocity, bake time, and alarms to monitor.
* Similar to error monitoring, if a deployment triggers an alarm, AppConfig
* automatically rolls back to the previous version.
AppConfig supports
* multiple use cases. Here are some examples:
-
Feature
* flags: Use AppConfig to turn on new features that require a timely
* deployment, such as a product launch or announcement.
-
* Application tuning: Use AppConfig to carefully introduce changes to your
* application that can only be tested with production traffic.
-
* Allow list: Use AppConfig to allow premium subscribers to access paid
* content.
-
Operational issues: Use AppConfig to reduce
* stress on your application when a dependency or other external factor impacts
* the system.
This reference is intended to be used with the AppConfig
* User Guide.
*/
class AWS_APPCONFIG_API AppConfigClient : public Aws::Client::AWSJsonClient, public Aws::Client::ClientWithAsyncTemplateMethods
{
public:
typedef Aws::Client::AWSJsonClient BASECLASS;
static const char* SERVICE_NAME;
static const char* ALLOCATION_TAG;
typedef AppConfigClientConfiguration ClientConfigurationType;
typedef AppConfigEndpointProvider EndpointProviderType;
/**
* Initializes client to use DefaultCredentialProviderChain, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
AppConfigClient(const Aws::AppConfig::AppConfigClientConfiguration& clientConfiguration = Aws::AppConfig::AppConfigClientConfiguration(),
std::shared_ptr endpointProvider = Aws::MakeShared(ALLOCATION_TAG));
/**
* Initializes client to use SimpleAWSCredentialsProvider, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
AppConfigClient(const Aws::Auth::AWSCredentials& credentials,
std::shared_ptr endpointProvider = Aws::MakeShared(ALLOCATION_TAG),
const Aws::AppConfig::AppConfigClientConfiguration& clientConfiguration = Aws::AppConfig::AppConfigClientConfiguration());
/**
* Initializes client to use specified credentials provider with specified client config. If http client factory is not supplied,
* the default http client factory will be used
*/
AppConfigClient(const std::shared_ptr& credentialsProvider,
std::shared_ptr endpointProvider = Aws::MakeShared(ALLOCATION_TAG),
const Aws::AppConfig::AppConfigClientConfiguration& clientConfiguration = Aws::AppConfig::AppConfigClientConfiguration());
/* Legacy constructors due deprecation */
/**
* Initializes client to use DefaultCredentialProviderChain, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
AppConfigClient(const Aws::Client::ClientConfiguration& clientConfiguration);
/**
* Initializes client to use SimpleAWSCredentialsProvider, with default http client factory, and optional client config. If client config
* is not specified, it will be initialized to default values.
*/
AppConfigClient(const Aws::Auth::AWSCredentials& credentials,
const Aws::Client::ClientConfiguration& clientConfiguration);
/**
* Initializes client to use specified credentials provider with specified client config. If http client factory is not supplied,
* the default http client factory will be used
*/
AppConfigClient(const std::shared_ptr& credentialsProvider,
const Aws::Client::ClientConfiguration& clientConfiguration);
/* End of legacy constructors due deprecation */
virtual ~AppConfigClient();
/**
* Creates an application. In AppConfig, an application is simply an
* organizational construct like a folder. This organizational construct has a
* relationship with some unit of executable code. For example, you could create an
* application called MyMobileApp to organize and manage configuration data for a
* mobile application installed by your users.
See Also:
AWS
* API Reference
*/
virtual Model::CreateApplicationOutcome CreateApplication(const Model::CreateApplicationRequest& request) const;
/**
* A Callable wrapper for CreateApplication that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateApplicationOutcomeCallable CreateApplicationCallable(const CreateApplicationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateApplication, request);
}
/**
* An Async wrapper for CreateApplication that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateApplicationAsync(const CreateApplicationRequestT& request, const CreateApplicationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateApplication, request, handler, context);
}
/**
* Creates a configuration profile, which is information that enables AppConfig
* to access the configuration source. Valid configuration sources include the
* following:
-
Configuration data in YAML, JSON, and other formats
* stored in the AppConfig hosted configuration store
-
*
Configuration data stored as objects in an Amazon Simple Storage Service
* (Amazon S3) bucket
-
Pipelines stored in CodePipeline
* -
Secrets stored in Secrets Manager
-
Standard and secure
* string parameters stored in Amazon Web Services Systems Manager Parameter
* Store
-
Configuration data in SSM documents stored in the
* Systems Manager document store
A configuration profile
* includes the following information:
-
The URI location of the
* configuration data.
-
The Identity and Access Management (IAM)
* role that provides access to the configuration data.
-
A
* validator for the configuration data. Available validators include either a JSON
* Schema or an Amazon Web Services Lambda function.
For more
* information, see Create
* a Configuration and a Configuration Profile in the AppConfig User
* Guide.
See Also:
AWS
* API Reference
*/
virtual Model::CreateConfigurationProfileOutcome CreateConfigurationProfile(const Model::CreateConfigurationProfileRequest& request) const;
/**
* A Callable wrapper for CreateConfigurationProfile that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateConfigurationProfileOutcomeCallable CreateConfigurationProfileCallable(const CreateConfigurationProfileRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateConfigurationProfile, request);
}
/**
* An Async wrapper for CreateConfigurationProfile that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateConfigurationProfileAsync(const CreateConfigurationProfileRequestT& request, const CreateConfigurationProfileResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateConfigurationProfile, request, handler, context);
}
/**
* Creates a deployment strategy that defines important criteria for rolling out
* your configuration to the designated targets. A deployment strategy includes the
* overall duration required, a percentage of targets to receive the deployment
* during each interval, an algorithm that defines how percentage grows, and bake
* time.
See Also:
AWS
* API Reference
*/
virtual Model::CreateDeploymentStrategyOutcome CreateDeploymentStrategy(const Model::CreateDeploymentStrategyRequest& request) const;
/**
* A Callable wrapper for CreateDeploymentStrategy that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateDeploymentStrategyOutcomeCallable CreateDeploymentStrategyCallable(const CreateDeploymentStrategyRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateDeploymentStrategy, request);
}
/**
* An Async wrapper for CreateDeploymentStrategy that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateDeploymentStrategyAsync(const CreateDeploymentStrategyRequestT& request, const CreateDeploymentStrategyResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateDeploymentStrategy, request, handler, context);
}
/**
* Creates an environment. For each application, you define one or more
* environments. An environment is a deployment group of AppConfig targets, such as
* applications in a Beta
or Production
environment. You
* can also define environments for application subcomponents such as the
* Web
, Mobile
and Back-end
components for
* your application. You can configure Amazon CloudWatch alarms for each
* environment. The system monitors alarms during a configuration deployment. If an
* alarm is triggered, the system rolls back the configuration.
See
* Also:
AWS
* API Reference
*/
virtual Model::CreateEnvironmentOutcome CreateEnvironment(const Model::CreateEnvironmentRequest& request) const;
/**
* A Callable wrapper for CreateEnvironment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateEnvironmentOutcomeCallable CreateEnvironmentCallable(const CreateEnvironmentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateEnvironment, request);
}
/**
* An Async wrapper for CreateEnvironment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateEnvironmentAsync(const CreateEnvironmentRequestT& request, const CreateEnvironmentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateEnvironment, request, handler, context);
}
/**
* Creates an AppConfig extension. An extension augments your ability to inject
* logic or behavior at different points during the AppConfig workflow of creating
* or deploying a configuration.
You can create your own extensions or use
* the Amazon Web Services authored extensions provided by AppConfig. For most use
* cases, to create your own extension, you must create an Lambda function to
* perform any computation and processing defined in the extension. For more
* information about extensions, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::CreateExtensionOutcome CreateExtension(const Model::CreateExtensionRequest& request) const;
/**
* A Callable wrapper for CreateExtension that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateExtensionOutcomeCallable CreateExtensionCallable(const CreateExtensionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateExtension, request);
}
/**
* An Async wrapper for CreateExtension that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateExtensionAsync(const CreateExtensionRequestT& request, const CreateExtensionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateExtension, request, handler, context);
}
/**
* When you create an extension or configure an Amazon Web Services authored
* extension, you associate the extension with an AppConfig application,
* environment, or configuration profile. For example, you can choose to run the
* AppConfig deployment events to Amazon SNS
Amazon Web Services
* authored extension and receive notifications on an Amazon SNS topic anytime a
* configuration deployment is started for a specific application. Defining which
* extension to associate with an AppConfig resource is called an extension
* association. An extension association is a specified relationship between an
* extension and an AppConfig resource, such as an application or a configuration
* profile. For more information about extensions and associations, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::CreateExtensionAssociationOutcome CreateExtensionAssociation(const Model::CreateExtensionAssociationRequest& request) const;
/**
* A Callable wrapper for CreateExtensionAssociation that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateExtensionAssociationOutcomeCallable CreateExtensionAssociationCallable(const CreateExtensionAssociationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateExtensionAssociation, request);
}
/**
* An Async wrapper for CreateExtensionAssociation that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateExtensionAssociationAsync(const CreateExtensionAssociationRequestT& request, const CreateExtensionAssociationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateExtensionAssociation, request, handler, context);
}
/**
* Creates a new configuration in the AppConfig hosted configuration
* store.
See Also:
AWS
* API Reference
*/
virtual Model::CreateHostedConfigurationVersionOutcome CreateHostedConfigurationVersion(const Model::CreateHostedConfigurationVersionRequest& request) const;
/**
* A Callable wrapper for CreateHostedConfigurationVersion that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::CreateHostedConfigurationVersionOutcomeCallable CreateHostedConfigurationVersionCallable(const CreateHostedConfigurationVersionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::CreateHostedConfigurationVersion, request);
}
/**
* An Async wrapper for CreateHostedConfigurationVersion that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void CreateHostedConfigurationVersionAsync(const CreateHostedConfigurationVersionRequestT& request, const CreateHostedConfigurationVersionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::CreateHostedConfigurationVersion, request, handler, context);
}
/**
* Deletes an application. Deleting an application does not delete a
* configuration from a host.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteApplicationOutcome DeleteApplication(const Model::DeleteApplicationRequest& request) const;
/**
* A Callable wrapper for DeleteApplication that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteApplicationOutcomeCallable DeleteApplicationCallable(const DeleteApplicationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteApplication, request);
}
/**
* An Async wrapper for DeleteApplication that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteApplicationAsync(const DeleteApplicationRequestT& request, const DeleteApplicationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteApplication, request, handler, context);
}
/**
* Deletes a configuration profile. Deleting a configuration profile does not
* delete a configuration from a host.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteConfigurationProfileOutcome DeleteConfigurationProfile(const Model::DeleteConfigurationProfileRequest& request) const;
/**
* A Callable wrapper for DeleteConfigurationProfile that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteConfigurationProfileOutcomeCallable DeleteConfigurationProfileCallable(const DeleteConfigurationProfileRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteConfigurationProfile, request);
}
/**
* An Async wrapper for DeleteConfigurationProfile that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteConfigurationProfileAsync(const DeleteConfigurationProfileRequestT& request, const DeleteConfigurationProfileResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteConfigurationProfile, request, handler, context);
}
/**
* Deletes a deployment strategy. Deleting a deployment strategy does not delete
* a configuration from a host.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteDeploymentStrategyOutcome DeleteDeploymentStrategy(const Model::DeleteDeploymentStrategyRequest& request) const;
/**
* A Callable wrapper for DeleteDeploymentStrategy that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteDeploymentStrategyOutcomeCallable DeleteDeploymentStrategyCallable(const DeleteDeploymentStrategyRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteDeploymentStrategy, request);
}
/**
* An Async wrapper for DeleteDeploymentStrategy that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteDeploymentStrategyAsync(const DeleteDeploymentStrategyRequestT& request, const DeleteDeploymentStrategyResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteDeploymentStrategy, request, handler, context);
}
/**
* Deletes an environment. Deleting an environment does not delete a
* configuration from a host.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteEnvironmentOutcome DeleteEnvironment(const Model::DeleteEnvironmentRequest& request) const;
/**
* A Callable wrapper for DeleteEnvironment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteEnvironmentOutcomeCallable DeleteEnvironmentCallable(const DeleteEnvironmentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteEnvironment, request);
}
/**
* An Async wrapper for DeleteEnvironment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteEnvironmentAsync(const DeleteEnvironmentRequestT& request, const DeleteEnvironmentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteEnvironment, request, handler, context);
}
/**
* Deletes an AppConfig extension. You must delete all associations to an
* extension before you delete the extension.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteExtensionOutcome DeleteExtension(const Model::DeleteExtensionRequest& request) const;
/**
* A Callable wrapper for DeleteExtension that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteExtensionOutcomeCallable DeleteExtensionCallable(const DeleteExtensionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteExtension, request);
}
/**
* An Async wrapper for DeleteExtension that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteExtensionAsync(const DeleteExtensionRequestT& request, const DeleteExtensionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteExtension, request, handler, context);
}
/**
* Deletes an extension association. This action doesn't delete extensions
* defined in the association.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteExtensionAssociationOutcome DeleteExtensionAssociation(const Model::DeleteExtensionAssociationRequest& request) const;
/**
* A Callable wrapper for DeleteExtensionAssociation that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteExtensionAssociationOutcomeCallable DeleteExtensionAssociationCallable(const DeleteExtensionAssociationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteExtensionAssociation, request);
}
/**
* An Async wrapper for DeleteExtensionAssociation that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteExtensionAssociationAsync(const DeleteExtensionAssociationRequestT& request, const DeleteExtensionAssociationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteExtensionAssociation, request, handler, context);
}
/**
* Deletes a version of a configuration from the AppConfig hosted configuration
* store.
See Also:
AWS
* API Reference
*/
virtual Model::DeleteHostedConfigurationVersionOutcome DeleteHostedConfigurationVersion(const Model::DeleteHostedConfigurationVersionRequest& request) const;
/**
* A Callable wrapper for DeleteHostedConfigurationVersion that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::DeleteHostedConfigurationVersionOutcomeCallable DeleteHostedConfigurationVersionCallable(const DeleteHostedConfigurationVersionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::DeleteHostedConfigurationVersion, request);
}
/**
* An Async wrapper for DeleteHostedConfigurationVersion that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void DeleteHostedConfigurationVersionAsync(const DeleteHostedConfigurationVersionRequestT& request, const DeleteHostedConfigurationVersionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::DeleteHostedConfigurationVersion, request, handler, context);
}
/**
* Retrieves information about an application.
See Also:
AWS
* API Reference
*/
virtual Model::GetApplicationOutcome GetApplication(const Model::GetApplicationRequest& request) const;
/**
* A Callable wrapper for GetApplication that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetApplicationOutcomeCallable GetApplicationCallable(const GetApplicationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetApplication, request);
}
/**
* An Async wrapper for GetApplication that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetApplicationAsync(const GetApplicationRequestT& request, const GetApplicationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetApplication, request, handler, context);
}
/**
* Retrieves information about a configuration profile.
See Also:
* AWS
* API Reference
*/
virtual Model::GetConfigurationProfileOutcome GetConfigurationProfile(const Model::GetConfigurationProfileRequest& request) const;
/**
* A Callable wrapper for GetConfigurationProfile that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetConfigurationProfileOutcomeCallable GetConfigurationProfileCallable(const GetConfigurationProfileRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetConfigurationProfile, request);
}
/**
* An Async wrapper for GetConfigurationProfile that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetConfigurationProfileAsync(const GetConfigurationProfileRequestT& request, const GetConfigurationProfileResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetConfigurationProfile, request, handler, context);
}
/**
* Retrieves information about a configuration deployment.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetDeploymentOutcome GetDeployment(const Model::GetDeploymentRequest& request) const;
/**
* A Callable wrapper for GetDeployment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetDeploymentOutcomeCallable GetDeploymentCallable(const GetDeploymentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetDeployment, request);
}
/**
* An Async wrapper for GetDeployment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetDeploymentAsync(const GetDeploymentRequestT& request, const GetDeploymentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetDeployment, request, handler, context);
}
/**
* Retrieves information about a deployment strategy. A deployment strategy
* defines important criteria for rolling out your configuration to the designated
* targets. A deployment strategy includes the overall duration required, a
* percentage of targets to receive the deployment during each interval, an
* algorithm that defines how percentage grows, and bake time.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetDeploymentStrategyOutcome GetDeploymentStrategy(const Model::GetDeploymentStrategyRequest& request) const;
/**
* A Callable wrapper for GetDeploymentStrategy that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetDeploymentStrategyOutcomeCallable GetDeploymentStrategyCallable(const GetDeploymentStrategyRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetDeploymentStrategy, request);
}
/**
* An Async wrapper for GetDeploymentStrategy that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetDeploymentStrategyAsync(const GetDeploymentStrategyRequestT& request, const GetDeploymentStrategyResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetDeploymentStrategy, request, handler, context);
}
/**
* Retrieves information about an environment. An environment is a deployment
* group of AppConfig applications, such as applications in a
* Production
environment or in an EU_Region
environment.
* Each configuration deployment targets an environment. You can enable one or more
* Amazon CloudWatch alarms for an environment. If an alarm is triggered during a
* deployment, AppConfig roles back the configuration.
See Also:
* AWS
* API Reference
*/
virtual Model::GetEnvironmentOutcome GetEnvironment(const Model::GetEnvironmentRequest& request) const;
/**
* A Callable wrapper for GetEnvironment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetEnvironmentOutcomeCallable GetEnvironmentCallable(const GetEnvironmentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetEnvironment, request);
}
/**
* An Async wrapper for GetEnvironment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetEnvironmentAsync(const GetEnvironmentRequestT& request, const GetEnvironmentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetEnvironment, request, handler, context);
}
/**
* Returns information about an AppConfig extension.
See Also:
* AWS
* API Reference
*/
virtual Model::GetExtensionOutcome GetExtension(const Model::GetExtensionRequest& request) const;
/**
* A Callable wrapper for GetExtension that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetExtensionOutcomeCallable GetExtensionCallable(const GetExtensionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetExtension, request);
}
/**
* An Async wrapper for GetExtension that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetExtensionAsync(const GetExtensionRequestT& request, const GetExtensionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetExtension, request, handler, context);
}
/**
* Returns information about an AppConfig extension association. For more
* information about extensions and associations, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetExtensionAssociationOutcome GetExtensionAssociation(const Model::GetExtensionAssociationRequest& request) const;
/**
* A Callable wrapper for GetExtensionAssociation that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetExtensionAssociationOutcomeCallable GetExtensionAssociationCallable(const GetExtensionAssociationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetExtensionAssociation, request);
}
/**
* An Async wrapper for GetExtensionAssociation that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetExtensionAssociationAsync(const GetExtensionAssociationRequestT& request, const GetExtensionAssociationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetExtensionAssociation, request, handler, context);
}
/**
* Retrieves information about a specific configuration version.
See
* Also:
AWS
* API Reference
*/
virtual Model::GetHostedConfigurationVersionOutcome GetHostedConfigurationVersion(const Model::GetHostedConfigurationVersionRequest& request) const;
/**
* A Callable wrapper for GetHostedConfigurationVersion that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::GetHostedConfigurationVersionOutcomeCallable GetHostedConfigurationVersionCallable(const GetHostedConfigurationVersionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::GetHostedConfigurationVersion, request);
}
/**
* An Async wrapper for GetHostedConfigurationVersion that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void GetHostedConfigurationVersionAsync(const GetHostedConfigurationVersionRequestT& request, const GetHostedConfigurationVersionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::GetHostedConfigurationVersion, request, handler, context);
}
/**
* Lists all applications in your Amazon Web Services account.
See
* Also:
AWS
* API Reference
*/
virtual Model::ListApplicationsOutcome ListApplications(const Model::ListApplicationsRequest& request) const;
/**
* A Callable wrapper for ListApplications that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListApplicationsOutcomeCallable ListApplicationsCallable(const ListApplicationsRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListApplications, request);
}
/**
* An Async wrapper for ListApplications that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListApplicationsAsync(const ListApplicationsRequestT& request, const ListApplicationsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListApplications, request, handler, context);
}
/**
* Lists the configuration profiles for an application.
See Also:
* AWS
* API Reference
*/
virtual Model::ListConfigurationProfilesOutcome ListConfigurationProfiles(const Model::ListConfigurationProfilesRequest& request) const;
/**
* A Callable wrapper for ListConfigurationProfiles that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListConfigurationProfilesOutcomeCallable ListConfigurationProfilesCallable(const ListConfigurationProfilesRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListConfigurationProfiles, request);
}
/**
* An Async wrapper for ListConfigurationProfiles that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListConfigurationProfilesAsync(const ListConfigurationProfilesRequestT& request, const ListConfigurationProfilesResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListConfigurationProfiles, request, handler, context);
}
/**
* Lists deployment strategies.
See Also:
AWS
* API Reference
*/
virtual Model::ListDeploymentStrategiesOutcome ListDeploymentStrategies(const Model::ListDeploymentStrategiesRequest& request) const;
/**
* A Callable wrapper for ListDeploymentStrategies that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListDeploymentStrategiesOutcomeCallable ListDeploymentStrategiesCallable(const ListDeploymentStrategiesRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListDeploymentStrategies, request);
}
/**
* An Async wrapper for ListDeploymentStrategies that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListDeploymentStrategiesAsync(const ListDeploymentStrategiesRequestT& request, const ListDeploymentStrategiesResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListDeploymentStrategies, request, handler, context);
}
/**
* Lists the deployments for an environment in descending deployment number
* order.
See Also:
AWS
* API Reference
*/
virtual Model::ListDeploymentsOutcome ListDeployments(const Model::ListDeploymentsRequest& request) const;
/**
* A Callable wrapper for ListDeployments that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListDeploymentsOutcomeCallable ListDeploymentsCallable(const ListDeploymentsRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListDeployments, request);
}
/**
* An Async wrapper for ListDeployments that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListDeploymentsAsync(const ListDeploymentsRequestT& request, const ListDeploymentsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListDeployments, request, handler, context);
}
/**
* Lists the environments for an application.
See Also:
AWS
* API Reference
*/
virtual Model::ListEnvironmentsOutcome ListEnvironments(const Model::ListEnvironmentsRequest& request) const;
/**
* A Callable wrapper for ListEnvironments that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListEnvironmentsOutcomeCallable ListEnvironmentsCallable(const ListEnvironmentsRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListEnvironments, request);
}
/**
* An Async wrapper for ListEnvironments that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListEnvironmentsAsync(const ListEnvironmentsRequestT& request, const ListEnvironmentsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListEnvironments, request, handler, context);
}
/**
* Lists all AppConfig extension associations in the account. For more
* information about extensions and associations, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::ListExtensionAssociationsOutcome ListExtensionAssociations(const Model::ListExtensionAssociationsRequest& request) const;
/**
* A Callable wrapper for ListExtensionAssociations that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListExtensionAssociationsOutcomeCallable ListExtensionAssociationsCallable(const ListExtensionAssociationsRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListExtensionAssociations, request);
}
/**
* An Async wrapper for ListExtensionAssociations that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListExtensionAssociationsAsync(const ListExtensionAssociationsRequestT& request, const ListExtensionAssociationsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListExtensionAssociations, request, handler, context);
}
/**
* Lists all custom and Amazon Web Services authored AppConfig extensions in the
* account. For more information about extensions, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::ListExtensionsOutcome ListExtensions(const Model::ListExtensionsRequest& request) const;
/**
* A Callable wrapper for ListExtensions that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListExtensionsOutcomeCallable ListExtensionsCallable(const ListExtensionsRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListExtensions, request);
}
/**
* An Async wrapper for ListExtensions that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListExtensionsAsync(const ListExtensionsRequestT& request, const ListExtensionsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListExtensions, request, handler, context);
}
/**
* Lists configurations stored in the AppConfig hosted configuration store by
* version.
See Also:
AWS
* API Reference
*/
virtual Model::ListHostedConfigurationVersionsOutcome ListHostedConfigurationVersions(const Model::ListHostedConfigurationVersionsRequest& request) const;
/**
* A Callable wrapper for ListHostedConfigurationVersions that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListHostedConfigurationVersionsOutcomeCallable ListHostedConfigurationVersionsCallable(const ListHostedConfigurationVersionsRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListHostedConfigurationVersions, request);
}
/**
* An Async wrapper for ListHostedConfigurationVersions that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListHostedConfigurationVersionsAsync(const ListHostedConfigurationVersionsRequestT& request, const ListHostedConfigurationVersionsResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListHostedConfigurationVersions, request, handler, context);
}
/**
* Retrieves the list of key-value tags assigned to the resource.
See
* Also:
AWS
* API Reference
*/
virtual Model::ListTagsForResourceOutcome ListTagsForResource(const Model::ListTagsForResourceRequest& request) const;
/**
* A Callable wrapper for ListTagsForResource that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ListTagsForResourceOutcomeCallable ListTagsForResourceCallable(const ListTagsForResourceRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ListTagsForResource, request);
}
/**
* An Async wrapper for ListTagsForResource that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ListTagsForResourceAsync(const ListTagsForResourceRequestT& request, const ListTagsForResourceResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ListTagsForResource, request, handler, context);
}
/**
* Starts a deployment.
See Also:
AWS
* API Reference
*/
virtual Model::StartDeploymentOutcome StartDeployment(const Model::StartDeploymentRequest& request) const;
/**
* A Callable wrapper for StartDeployment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::StartDeploymentOutcomeCallable StartDeploymentCallable(const StartDeploymentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::StartDeployment, request);
}
/**
* An Async wrapper for StartDeployment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void StartDeploymentAsync(const StartDeploymentRequestT& request, const StartDeploymentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::StartDeployment, request, handler, context);
}
/**
* Stops a deployment. This API action works only on deployments that have a
* status of DEPLOYING
. This action moves the deployment to a status
* of ROLLED_BACK
.
See Also:
AWS
* API Reference
*/
virtual Model::StopDeploymentOutcome StopDeployment(const Model::StopDeploymentRequest& request) const;
/**
* A Callable wrapper for StopDeployment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::StopDeploymentOutcomeCallable StopDeploymentCallable(const StopDeploymentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::StopDeployment, request);
}
/**
* An Async wrapper for StopDeployment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void StopDeploymentAsync(const StopDeploymentRequestT& request, const StopDeploymentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::StopDeployment, request, handler, context);
}
/**
* Assigns metadata to an AppConfig resource. Tags help organize and categorize
* your AppConfig resources. Each tag consists of a key and an optional value, both
* of which you define. You can specify a maximum of 50 tags for a
* resource.
See Also:
AWS
* API Reference
*/
virtual Model::TagResourceOutcome TagResource(const Model::TagResourceRequest& request) const;
/**
* A Callable wrapper for TagResource that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::TagResourceOutcomeCallable TagResourceCallable(const TagResourceRequestT& request) const
{
return SubmitCallable(&AppConfigClient::TagResource, request);
}
/**
* An Async wrapper for TagResource that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void TagResourceAsync(const TagResourceRequestT& request, const TagResourceResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::TagResource, request, handler, context);
}
/**
* Deletes a tag key and value from an AppConfig resource.
See
* Also:
AWS
* API Reference
*/
virtual Model::UntagResourceOutcome UntagResource(const Model::UntagResourceRequest& request) const;
/**
* A Callable wrapper for UntagResource that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UntagResourceOutcomeCallable UntagResourceCallable(const UntagResourceRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UntagResource, request);
}
/**
* An Async wrapper for UntagResource that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UntagResourceAsync(const UntagResourceRequestT& request, const UntagResourceResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UntagResource, request, handler, context);
}
/**
* Updates an application.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateApplicationOutcome UpdateApplication(const Model::UpdateApplicationRequest& request) const;
/**
* A Callable wrapper for UpdateApplication that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateApplicationOutcomeCallable UpdateApplicationCallable(const UpdateApplicationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UpdateApplication, request);
}
/**
* An Async wrapper for UpdateApplication that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateApplicationAsync(const UpdateApplicationRequestT& request, const UpdateApplicationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UpdateApplication, request, handler, context);
}
/**
* Updates a configuration profile.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateConfigurationProfileOutcome UpdateConfigurationProfile(const Model::UpdateConfigurationProfileRequest& request) const;
/**
* A Callable wrapper for UpdateConfigurationProfile that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateConfigurationProfileOutcomeCallable UpdateConfigurationProfileCallable(const UpdateConfigurationProfileRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UpdateConfigurationProfile, request);
}
/**
* An Async wrapper for UpdateConfigurationProfile that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateConfigurationProfileAsync(const UpdateConfigurationProfileRequestT& request, const UpdateConfigurationProfileResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UpdateConfigurationProfile, request, handler, context);
}
/**
* Updates a deployment strategy.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateDeploymentStrategyOutcome UpdateDeploymentStrategy(const Model::UpdateDeploymentStrategyRequest& request) const;
/**
* A Callable wrapper for UpdateDeploymentStrategy that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateDeploymentStrategyOutcomeCallable UpdateDeploymentStrategyCallable(const UpdateDeploymentStrategyRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UpdateDeploymentStrategy, request);
}
/**
* An Async wrapper for UpdateDeploymentStrategy that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateDeploymentStrategyAsync(const UpdateDeploymentStrategyRequestT& request, const UpdateDeploymentStrategyResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UpdateDeploymentStrategy, request, handler, context);
}
/**
* Updates an environment.
See Also:
AWS
* API Reference
*/
virtual Model::UpdateEnvironmentOutcome UpdateEnvironment(const Model::UpdateEnvironmentRequest& request) const;
/**
* A Callable wrapper for UpdateEnvironment that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateEnvironmentOutcomeCallable UpdateEnvironmentCallable(const UpdateEnvironmentRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UpdateEnvironment, request);
}
/**
* An Async wrapper for UpdateEnvironment that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateEnvironmentAsync(const UpdateEnvironmentRequestT& request, const UpdateEnvironmentResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UpdateEnvironment, request, handler, context);
}
/**
* Updates an AppConfig extension. For more information about extensions, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::UpdateExtensionOutcome UpdateExtension(const Model::UpdateExtensionRequest& request) const;
/**
* A Callable wrapper for UpdateExtension that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateExtensionOutcomeCallable UpdateExtensionCallable(const UpdateExtensionRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UpdateExtension, request);
}
/**
* An Async wrapper for UpdateExtension that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateExtensionAsync(const UpdateExtensionRequestT& request, const UpdateExtensionResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UpdateExtension, request, handler, context);
}
/**
* Updates an association. For more information about extensions and
* associations, see Working
* with AppConfig extensions in the AppConfig User Guide.
See
* Also:
AWS
* API Reference
*/
virtual Model::UpdateExtensionAssociationOutcome UpdateExtensionAssociation(const Model::UpdateExtensionAssociationRequest& request) const;
/**
* A Callable wrapper for UpdateExtensionAssociation that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::UpdateExtensionAssociationOutcomeCallable UpdateExtensionAssociationCallable(const UpdateExtensionAssociationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::UpdateExtensionAssociation, request);
}
/**
* An Async wrapper for UpdateExtensionAssociation that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void UpdateExtensionAssociationAsync(const UpdateExtensionAssociationRequestT& request, const UpdateExtensionAssociationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::UpdateExtensionAssociation, request, handler, context);
}
/**
* Uses the validators in a configuration profile to validate a
* configuration.
See Also:
AWS
* API Reference
*/
virtual Model::ValidateConfigurationOutcome ValidateConfiguration(const Model::ValidateConfigurationRequest& request) const;
/**
* A Callable wrapper for ValidateConfiguration that returns a future to the operation so that it can be executed in parallel to other requests.
*/
template
Model::ValidateConfigurationOutcomeCallable ValidateConfigurationCallable(const ValidateConfigurationRequestT& request) const
{
return SubmitCallable(&AppConfigClient::ValidateConfiguration, request);
}
/**
* An Async wrapper for ValidateConfiguration that queues the request into a thread executor and triggers associated callback when operation has finished.
*/
template
void ValidateConfigurationAsync(const ValidateConfigurationRequestT& request, const ValidateConfigurationResponseReceivedHandler& handler, const std::shared_ptr& context = nullptr) const
{
return SubmitAsync(&AppConfigClient::ValidateConfiguration, request, handler, context);
}
void OverrideEndpoint(const Aws::String& endpoint);
std::shared_ptr& accessEndpointProvider();
private:
friend class Aws::Client::ClientWithAsyncTemplateMethods;
void init(const AppConfigClientConfiguration& clientConfiguration);
AppConfigClientConfiguration m_clientConfiguration;
std::shared_ptr m_executor;
std::shared_ptr m_endpointProvider;
};
} // namespace AppConfig
} // namespace Aws