Class: AWS.AppConfig
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.AppConfig
- Identifier:
- appconfig
- API Version:
- 2019-10-09
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
Use AWS AppConfig, a capability of AWS 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, AWS 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 a 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.
-
Application tuning: Use AppConfig to carefully introduce changes to your application that can only be tested with production traffic.
-
Feature toggle: Use AppConfig to turn on new features that require a timely deployment, such as a product launch or announcement.
-
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 AWS AppConfig User Guide.
Sending a Request Using AppConfig
var appconfig = new AWS.AppConfig();
appconfig.createApplication(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the AppConfig object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var appconfig = new AWS.AppConfig({apiVersion: '2019-10-09'});
You can also set the API version globally in AWS.config.apiVersions
using
the appconfig service identifier:
AWS.config.apiVersions = {
appconfig: '2019-10-09',
// other service API versions
};
var appconfig = new AWS.AppConfig();
Constructor Summary collapse
-
new AWS.AppConfig(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
createApplication(params = {}, callback) ⇒ AWS.Request
An application in AppConfig is a logical unit of code that provides capabilities for your customers.
-
createConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Information that enables AppConfig to access the configuration source.
-
createDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
A deployment strategy defines important criteria for rolling out your configuration to the designated targets.
-
createEnvironment(params = {}, callback) ⇒ AWS.Request
For each application, you define one or more environments.
-
createHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Create a new configuration in the AppConfig configuration store.
.
-
deleteApplication(params = {}, callback) ⇒ AWS.Request
Delete an application.
-
deleteConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Delete a configuration profile.
-
deleteDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Delete a deployment strategy.
-
deleteEnvironment(params = {}, callback) ⇒ AWS.Request
Delete an environment.
-
deleteHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Delete a version of a configuration from the AppConfig configuration store.
.
-
getApplication(params = {}, callback) ⇒ AWS.Request
Retrieve information about an application.
.
-
getConfiguration(params = {}, callback) ⇒ AWS.Request
Receive information about a configuration.
AWS AppConfig uses the value of the
ClientConfigurationVersion
parameter to identify the configuration version on your clients. -
getConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Retrieve information about a configuration profile.
.
-
getDeployment(params = {}, callback) ⇒ AWS.Request
Retrieve information about a configuration deployment.
.
-
getDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Retrieve information about a deployment strategy.
-
getEnvironment(params = {}, callback) ⇒ AWS.Request
Retrieve information about an environment.
-
getHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Get information about a specific configuration version.
.
-
listApplications(params = {}, callback) ⇒ AWS.Request
List all applications in your AWS account.
.
-
listConfigurationProfiles(params = {}, callback) ⇒ AWS.Request
Lists the configuration profiles for an application.
.
-
listDeployments(params = {}, callback) ⇒ AWS.Request
Lists the deployments for an environment.
.
-
listDeploymentStrategies(params = {}, callback) ⇒ AWS.Request
List deployment strategies.
.
-
listEnvironments(params = {}, callback) ⇒ AWS.Request
List the environments for an application.
.
-
listHostedConfigurationVersions(params = {}, callback) ⇒ AWS.Request
View a list of configurations stored in the AppConfig configuration store by version.
.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Retrieves the list of key-value tags assigned to the resource.
.
-
startDeployment(params = {}, callback) ⇒ AWS.Request
Starts a deployment.
.
-
stopDeployment(params = {}, callback) ⇒ AWS.Request
Stops a deployment.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Metadata to assign to an AppConfig resource.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Deletes a tag key and value from an AppConfig resource.
.
-
updateApplication(params = {}, callback) ⇒ AWS.Request
Updates an application.
.
-
updateConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Updates a configuration profile.
.
-
updateDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Updates a deployment strategy.
.
-
updateEnvironment(params = {}, callback) ⇒ AWS.Request
Updates an environment.
.
-
validateConfiguration(params = {}, callback) ⇒ AWS.Request
Uses the validators in a configuration profile to validate a configuration.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.AppConfig(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
createApplication(params = {}, callback) ⇒ AWS.Request
An application in AppConfig is a logical unit of code that provides capabilities for your customers. For example, an application can be a microservice that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless application using Amazon API Gateway and AWS Lambda, or any system you run on behalf of others.
createConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Information that enables AppConfig to access the configuration source. Valid configuration sources include Systems Manager (SSM) documents, SSM Parameter Store parameters, and Amazon S3 objects. A configuration profile includes the following information.
-
The Uri location of the configuration data.
-
The AWS 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 AWS Lambda function.
For more information, see Create a Configuration and a Configuration Profile in the AWS AppConfig User Guide.
createDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
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.
createEnvironment(params = {}, callback) ⇒ AWS.Request
For each application, you define one or more environments. An environment is a logical 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.
createHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Create a new configuration in the AppConfig configuration store.
deleteApplication(params = {}, callback) ⇒ AWS.Request
Delete an application. Deleting an application does not delete a configuration from a host.
deleteConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Delete a configuration profile. Deleting a configuration profile does not delete a configuration from a host.
deleteDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Delete a deployment strategy. Deleting a deployment strategy does not delete a configuration from a host.
deleteEnvironment(params = {}, callback) ⇒ AWS.Request
Delete an environment. Deleting an environment does not delete a configuration from a host.
deleteHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Delete a version of a configuration from the AppConfig configuration store.
getConfiguration(params = {}, callback) ⇒ AWS.Request
Receive information about a configuration.
AWS AppConfig uses the value of the To avoid excess charges, we recommend that you include the ClientConfigurationVersion
parameter to identify the configuration version on your clients. If you don’t send ClientConfigurationVersion
with each call to GetConfiguration
, your clients receive the current configuration. You are charged each time your clients receive a configuration.ClientConfigurationVersion
value with every call to GetConfiguration
. This value must be saved on your client. Subsequent calls to GetConfiguration
must pass this value by using the ClientConfigurationVersion
parameter.
getConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Retrieve information about a configuration profile.
getDeployment(params = {}, callback) ⇒ AWS.Request
Retrieve information about a configuration deployment.
getDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Retrieve 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.
getEnvironment(params = {}, callback) ⇒ AWS.Request
Retrieve information about an environment. An environment is a logical 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.
getHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Get information about a specific configuration version.
listConfigurationProfiles(params = {}, callback) ⇒ AWS.Request
Lists the configuration profiles for an application.
listHostedConfigurationVersions(params = {}, callback) ⇒ AWS.Request
View a list of configurations stored in the AppConfig configuration store by version.
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Retrieves the list of key-value tags assigned to the resource.
stopDeployment(params = {}, callback) ⇒ AWS.Request
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
.
tagResource(params = {}, callback) ⇒ AWS.Request
Metadata to assign 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.