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
AppConfig feature flags and dynamic configurations help software builders quickly and securely adjust application behavior in production environments without full code deployments. AppConfig speeds up software release frequency, improves application resiliency, and helps you address emergent issues more quickly. With feature flags, you can gradually release new capabilities to users and measure the impact of those changes before fully deploying the new capabilities to all users. With operational flags and dynamic configurations, you can update block lists, allow lists, throttling limits, logging verbosity, and perform other operational tuning to quickly respond to issues in production environments.
Despite the fact that application configuration content can vary greatly from application to application, AppConfig supports the following use cases, which cover a broad spectrum of customer needs:
-
Feature flags and toggles - Safely release new capabilities to your customers in a controlled environment. Instantly roll back changes if you experience a problem.
-
Application tuning - Carefully introduce application changes while testing the impact of those changes with users in production environments.
-
Allow list or block list - Control access to premium features or instantly block specific users without deploying new code.
-
Centralized configuration storage - Keep your configuration data organized and consistent across all of your workloads. You can use AppConfig to deploy configuration data stored in the AppConfig hosted configuration store, Secrets Manager, Systems Manager, Parameter Store, or Amazon S3.
How AppConfig works
This section provides a high-level description of how AppConfig works and how you get started.
- 1. Identify configuration values in code you want to manage in the cloud
-
Before you start creating AppConfig artifacts, we recommend you identify configuration data in your code that you want to dynamically manage using AppConfig. Good examples include feature flags or toggles, allow and block lists, logging verbosity, service limits, and throttling rules, to name a few.
If your configuration data already exists in the cloud, you can take advantage of AppConfig validation, deployment, and extension features to further streamline configuration data management.
- 2. Create an application namespace
-
To create a namespace, you create an AppConfig artifact called an application. An application is simply an organizational construct like a folder.
- 3. Create environments
-
For each AppConfig application, you define one or more environments. An environment is a logical grouping of targets, such as applications in a
Beta
orProduction
environment, Lambda functions, or containers. You can also define environments for application subcomponents, such as theWeb
,Mobile
, andBack-end
.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.
- 4. Create a configuration profile
-
A configuration profile includes, among other things, a URI that enables AppConfig to locate your configuration data in its stored location and a profile type. AppConfig supports two configuration profile types: feature flags and freeform configurations. Feature flag configuration profiles store their data in the AppConfig hosted configuration store and the URI is simply
hosted
. For freeform configuration profiles, you can store your data in the AppConfig hosted configuration store or any Amazon Web Services service that integrates with AppConfig, as described in Creating a free form configuration profile in the the AppConfig User Guide.A configuration profile can also include optional validators to ensure your configuration data is syntactically and semantically correct. AppConfig performs a check using the validators when you start a deployment. If any errors are detected, the deployment rolls back to the previous configuration data.
- 5. Deploy configuration data
-
When you create a new deployment, you specify the following:
-
An application ID
-
A configuration profile ID
-
A configuration version
-
An environment ID where you want to deploy the configuration data
-
A deployment strategy ID that defines how fast you want the changes to take effect
When you call the StartDeployment API action, AppConfig performs the following tasks:
-
Retrieves the configuration data from the underlying data store by using the location URI in the configuration profile.
-
Verifies the configuration data is syntactically and semantically correct by using the validators you specified when you created your configuration profile.
-
Caches a copy of the data so it is ready to be retrieved by your application. This cached copy is called the deployed data.
-
- 6. Retrieve the configuration
-
You can configure AppConfig Agent as a local host and have the agent poll AppConfig for configuration updates. The agent calls the StartConfigurationSession and GetLatestConfiguration API actions and caches your configuration data locally. To retrieve the data, your application makes an HTTP call to the localhost server. AppConfig Agent supports several use cases, as described in Simplified retrieval methods in the the AppConfig User Guide.
If AppConfig Agent isn't supported for your use case, you can configure your application to poll AppConfig for configuration updates by directly calling the StartConfigurationSession and GetLatestConfiguration API actions.
This reference is intended to be used with the 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();
Version:
-
2019-10-09
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
Creates an application.
-
createConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Creates a configuration profile, which is information that enables AppConfig to access the configuration source.
-
createDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Creates a deployment strategy that defines important criteria for rolling out your configuration to the designated targets.
-
createEnvironment(params = {}, callback) ⇒ AWS.Request
Creates an environment.
-
createExtension(params = {}, callback) ⇒ AWS.Request
Creates an AppConfig extension.
-
createExtensionAssociation(params = {}, callback) ⇒ AWS.Request
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.
-
createHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Creates a new configuration in the AppConfig hosted configuration store.
-
deleteApplication(params = {}, callback) ⇒ AWS.Request
Deletes an application.
.
-
deleteConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Deletes a configuration profile.
To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.
. -
deleteDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Deletes a deployment strategy.
.
-
deleteEnvironment(params = {}, callback) ⇒ AWS.Request
Deletes an environment.
To prevent users from unintentionally deleting actively-used environments, enable deletion protection.
. -
deleteExtension(params = {}, callback) ⇒ AWS.Request
Deletes an AppConfig extension.
-
deleteExtensionAssociation(params = {}, callback) ⇒ AWS.Request
Deletes an extension association.
-
deleteHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Deletes a version of a configuration from the AppConfig hosted configuration store.
.
-
getAccountSettings(params = {}, callback) ⇒ AWS.Request
Returns information about the status of the
DeletionProtection
parameter..
-
getApplication(params = {}, callback) ⇒ AWS.Request
Retrieves information about an application.
.
-
getConfiguration(params = {}, callback) ⇒ AWS.Request
(Deprecated) Retrieves the latest deployed configuration.
Note the following important information.
-
This API action is deprecated.
-
-
getConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Retrieves information about a configuration profile.
.
-
getDeployment(params = {}, callback) ⇒ AWS.Request
Retrieves information about a configuration deployment.
.
-
getDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Retrieves information about a deployment strategy.
-
getEnvironment(params = {}, callback) ⇒ AWS.Request
Retrieves information about an environment.
-
getExtension(params = {}, callback) ⇒ AWS.Request
Returns information about an AppConfig extension.
.
-
getExtensionAssociation(params = {}, callback) ⇒ AWS.Request
Returns information about an AppConfig extension association.
-
getHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Retrieves information about a specific configuration version.
.
-
listApplications(params = {}, callback) ⇒ AWS.Request
Lists all applications in your Amazon Web Services account.
.
-
listConfigurationProfiles(params = {}, callback) ⇒ AWS.Request
Lists the configuration profiles for an application.
.
-
listDeployments(params = {}, callback) ⇒ AWS.Request
Lists the deployments for an environment in descending deployment number order.
.
-
listDeploymentStrategies(params = {}, callback) ⇒ AWS.Request
Lists deployment strategies.
.
-
listEnvironments(params = {}, callback) ⇒ AWS.Request
Lists the environments for an application.
.
-
listExtensionAssociations(params = {}, callback) ⇒ AWS.Request
Lists all AppConfig extension associations in the account.
-
listExtensions(params = {}, callback) ⇒ AWS.Request
Lists all custom and Amazon Web Services authored AppConfig extensions in the account.
-
listHostedConfigurationVersions(params = {}, callback) ⇒ AWS.Request
Lists configurations stored in the AppConfig hosted 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
Assigns metadata to an AppConfig resource.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Deletes a tag key and value from an AppConfig resource.
.
-
updateAccountSettings(params = {}, callback) ⇒ AWS.Request
Updates the value of the
DeletionProtection
parameter..
-
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.
.
-
updateExtension(params = {}, callback) ⇒ AWS.Request
Updates an AppConfig extension.
-
updateExtensionAssociation(params = {}, callback) ⇒ AWS.Request
Updates an association.
-
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.
Examples:
Constructing a AppConfig object
var appconfig = new AWS.AppConfig({apiVersion: '2019-10-09'});
Options Hash (options):
-
params
(map)
—
An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.
-
endpoint
(String|AWS.Endpoint)
—
The endpoint URI to send requests to. The default endpoint is built from the configured
region
. The endpoint should be a string like'https://{service}.{region}.amazonaws.com'
or an Endpoint object. -
accessKeyId
(String)
—
your AWS access key ID.
-
secretAccessKey
(String)
—
your AWS secret access key.
-
sessionToken
(AWS.Credentials)
—
the optional AWS session token to sign requests with.
-
credentials
(AWS.Credentials)
—
the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.
-
credentialProvider
(AWS.CredentialProviderChain)
—
the provider chain used to resolve credentials if no static
credentials
property is set. -
region
(String)
—
the region to send service requests to. See AWS.AppConfig.region for more information.
-
maxRetries
(Integer)
—
the maximum amount of retries to attempt with a request. See AWS.AppConfig.maxRetries for more information.
-
maxRedirects
(Integer)
—
the maximum amount of redirects to follow with a request. See AWS.AppConfig.maxRedirects for more information.
-
sslEnabled
(Boolean)
—
whether to enable SSL for requests.
-
paramValidation
(Boolean|map)
—
whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:
- min [Boolean] — Validates that a value meets the min
constraint. This is enabled by default when paramValidation is set
to
true
. - max [Boolean] — Validates that a value meets the max constraint.
- pattern [Boolean] — Validates that a string value matches a regular expression.
- enum [Boolean] — Validates that a string value matches one of the allowable enum values.
- min [Boolean] — Validates that a value meets the min
constraint. This is enabled by default when paramValidation is set
to
-
computeChecksums
(Boolean)
—
whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)
-
convertResponseTypes
(Boolean)
—
whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to
true
. -
correctClockSkew
(Boolean)
—
whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to
false
. -
s3ForcePathStyle
(Boolean)
—
whether to force path style URLs for S3 objects.
-
s3BucketEndpoint
(Boolean)
—
whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an
endpoint
to be provided explicitly to the service constructor. -
s3DisableBodySigning
(Boolean)
—
whether S3 body signing should be disabled when using signature version
v4
. Body signing can only be disabled when using https. Defaults totrue
. -
s3UsEast1RegionalEndpoint
('legacy'|'regional')
—
when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to
legacy
-
s3UseArnRegion
(Boolean)
—
whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to
true
-
retryDelayOptions
(map)
—
A set of options to configure the retry delay on retryable errors. Currently supported options are:
- base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
- customBackoff [function] — A custom function that accepts a
retry count and error and returns the amount of time to delay in
milliseconds. If the result is a non-zero negative value, no further
retry attempts will be made. The
base
option will be ignored if this option is supplied. The function is only called for retryable errors.
-
httpOptions
(map)
—
A set of options to pass to the low-level HTTP request. Currently supported options are:
- proxy [String] — the URL to proxy requests through
- agent [http.Agent, https.Agent] — the Agent object to perform
HTTP requests with. Used for connection pooling. Defaults to the global
agent (
http.globalAgent
) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment. - connectTimeout [Integer] — Sets the socket to timeout after
failing to establish a connection with the server after
connectTimeout
milliseconds. This timeout has no effect once a socket connection has been established. - timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
- xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
- xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
-
apiVersion
(String, Date)
—
a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by
apiVersions
). Specify 'latest' to use the latest possible version. -
apiVersions
(map<String, String|Date>)
—
a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.
-
logger
(#write, #log)
—
an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests
-
systemClockOffset
(Number)
—
an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global
AWS.config
object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds. -
signatureVersion
(String)
—
the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.
-
signatureCache
(Boolean)
—
whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to
true
. -
dynamoDbCrc32
(Boolean)
—
whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default:
true
. -
useAccelerateEndpoint
(Boolean)
—
Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default:
false
. -
clientSideMonitoring
(Boolean)
—
whether to collect and publish this client's performance metrics of all its API requests.
-
endpointDiscoveryEnabled
(Boolean|undefined)
—
whether to call operations with endpoints given by service dynamically. Setting this
-
endpointCacheSize
(Number)
—
the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000
-
hostPrefixEnabled
(Boolean)
—
whether to marshal request parameters to the prefix of hostname. Defaults to
true
. -
stsRegionalEndpoints
('legacy'|'regional')
—
whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.
-
useFipsEndpoint
(Boolean)
—
Enables FIPS compatible endpoints. Defaults to
false
. -
useDualstackEndpoint
(Boolean)
—
Enables IPv6 dualstack endpoint. Defaults to
false
.
Property Details
Method Details
createApplication(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To create an application
/* The following create-application example creates an application in AWS AppConfig. */
var params = {
Description: "An application used for creating an example.",
Name: "example-application"
};
appconfig.createApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Description: "An application used for creating an example.",
Id: "339ohji",
Name: "example-application"
}
*/
});
Calling the createApplication operation
var params = {
Name: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.createApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
Name
— (String
)A name for the application.
Description
— (String
)A description of the application.
Tags
— (map<String>
)Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The application ID.
Name
— (String
)The application name.
Description
— (String
)The description of the application.
-
(AWS.Response)
—
Returns:
createConfigurationProfile(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To create a configuration profile
/* The following create-configuration-profile example creates a configuration profile using a configuration stored in Parameter Store, a capability of Systems Manager. */
var params = {
ApplicationId: "339ohji",
LocationUri: "ssm-parameter://Example-Parameter",
Name: "Example-Configuration-Profile",
RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role"
};
appconfig.createConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
Id: "ur8hx2f",
LocationUri: "ssm-parameter://Example-Parameter",
Name: "Example-Configuration-Profile",
RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role"
}
*/
});
Calling the createConfigurationProfile operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
LocationUri: 'STRING_VALUE', /* required */
Name: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
KmsKeyIdentifier: 'STRING_VALUE',
RetrievalRoleArn: 'STRING_VALUE',
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
},
Type: 'STRING_VALUE',
Validators: [
{
Content: 'STRING_VALUE', /* required */
Type: JSON_SCHEMA | LAMBDA /* required */
},
/* more items */
]
};
appconfig.createConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
Name
— (String
)A name for the configuration profile.
Description
— (String
)A description of the configuration profile.
LocationUri
— (String
)A URI to locate the configuration. You can specify the following:
-
For the AppConfig hosted configuration store and for feature flags, specify
hosted
. -
For an Amazon Web Services Systems Manager Parameter Store parameter, specify either the parameter name in the format
ssm-parameter://<parameter name>
or the ARN. -
For an Amazon Web Services CodePipeline pipeline, specify the URI in the following format:
codepipeline
://<pipeline name>. -
For an Secrets Manager secret, specify the URI in the following format:
secretsmanager
://<secret name>. -
For an Amazon S3 object, specify the URI in the following format:
s3://<bucket>/<objectKey>
. Here is an example:s3://my-bucket/my-app/us-east-1/my-config.json
-
For an SSM document, specify either the document name in the format
ssm-document://<document name>
or the Amazon Resource Name (ARN).
-
RetrievalRoleArn
— (String
)The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.A retrieval role ARN is not required for configurations stored in the AppConfig hosted configuration store. It is required for all other sources that store your configuration.
Validators
— (Array<map>
)A list of methods for validating the configuration.
Type
— required — (String
)AppConfig supports validators of type
Possible values include:JSON_SCHEMA
andLAMBDA
"JSON_SCHEMA"
"LAMBDA"
Content
— required — (String
)Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
Tags
— (map<String>
)Metadata to assign to the configuration profile. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Type
— (String
)The type of configurations contained in the profile. AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
KmsKeyIdentifier
— (String
)The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for
hosted
configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
Id
— (String
)The configuration profile ID.
Name
— (String
)The name of the configuration profile.
Description
— (String
)The configuration profile description.
LocationUri
— (String
)The URI location of the configuration.
RetrievalRoleArn
— (String
)The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.Validators
— (Array<map>
)A list of methods for validating the configuration.
Type
— required — (String
)AppConfig supports validators of type
Possible values include:JSON_SCHEMA
andLAMBDA
"JSON_SCHEMA"
"LAMBDA"
Content
— required — (String
)Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
Type
— (String
)The type of configurations contained in the profile. AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for
hosted
configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.KmsKeyIdentifier
— (String
)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
-
(AWS.Response)
—
Returns:
createDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To create a deployment strategy
/* The following create-deployment-strategy example creates a deployment strategy called Example-Deployment that takes 15 minutes and deploys the configuration to 25% of the application at a time. The strategy is also copied to an SSM Document. */
var params = {
DeploymentDurationInMinutes: 15,
GrowthFactor: 25,
Name: "Example-Deployment",
ReplicateTo: "SSM_DOCUMENT"
};
appconfig.createDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
DeploymentDurationInMinutes: 15,
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25,
GrowthType: "LINEAR",
Id: "1225qzk",
Name: "Example-Deployment",
ReplicateTo: "SSM_DOCUMENT"
}
*/
});
Calling the createDeploymentStrategy operation
var params = {
DeploymentDurationInMinutes: 'NUMBER_VALUE', /* required */
GrowthFactor: 'NUMBER_VALUE', /* required */
Name: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
FinalBakeTimeInMinutes: 'NUMBER_VALUE',
GrowthType: LINEAR | EXPONENTIAL,
ReplicateTo: NONE | SSM_DOCUMENT,
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.createDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
Name
— (String
)A name for the deployment strategy.
Description
— (String
)A description of the deployment strategy.
DeploymentDurationInMinutes
— (Integer
)Total amount of time for a deployment to last.
FinalBakeTimeInMinutes
— (Integer
)Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered during this time, AppConfig rolls back the deployment. You must configure permissions for AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User Guide.
GrowthFactor
— (Float
)The percentage of targets to receive a deployed configuration during each interval.
GrowthType
— (String
)The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
Linear: For this type, AppConfig processes the deployment by dividing the total number of targets by the value specified for
Step percentage
. For example, a linear deployment that uses aStep percentage
of 10 deploys the configuration to 10 percent of the hosts. After those deployments are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the targets have successfully received the configuration.Exponential: For this type, AppConfig processes the deployment exponentially using the following formula:
G*(2N)
. In this formula,G
is the growth factor specified by the user andN
is the number of steps until the configuration is deployed to all targets. For example, if you specify a growth factor of 2, then the system rolls out the configuration as follows:2*(20)
2*(21)
2*(22)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
Possible values include:"LINEAR"
"EXPONENTIAL"
ReplicateTo
— (String
)Save the deployment strategy to a Systems Manager (SSM) document.
Possible values include:"NONE"
"SSM_DOCUMENT"
Tags
— (map<String>
)Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The deployment strategy ID.
Name
— (String
)The name of the deployment strategy.
Description
— (String
)The description of the deployment strategy.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets that received a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
ReplicateTo
— (String
)Save the deployment strategy to a Systems Manager (SSM) document.
Possible values include:"NONE"
"SSM_DOCUMENT"
-
(AWS.Response)
—
Returns:
createEnvironment(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To create an environment
/* The following create-environment example creates an AWS AppConfig environment named Example-Environment using the application you created using create-application */
var params = {
ApplicationId: "339ohji",
Name: "Example-Environment"
};
appconfig.createEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
Id: "54j1r29",
Name: "Example-Environment",
State: "READY_FOR_DEPLOYMENT"
}
*/
});
Calling the createEnvironment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
Name: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
Monitors: [
{
AlarmArn: 'STRING_VALUE', /* required */
AlarmRoleArn: 'STRING_VALUE'
},
/* more items */
],
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.createEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
Name
— (String
)A name for the environment.
Description
— (String
)A description of the environment.
Monitors
— (Array<map>
)Amazon CloudWatch alarms to monitor during the deployment process.
AlarmArn
— required — (String
)Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
AlarmRoleArn
— (String
)ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
Tags
— (map<String>
)Metadata to assign to the environment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
Id
— (String
)The environment ID.
Name
— (String
)The name of the environment.
Description
— (String
)The description of the environment.
State
— (String
)The state of the environment. An environment can be in one of the following states:
Possible values include:READY_FOR_DEPLOYMENT
,DEPLOYING
,ROLLING_BACK
, orROLLED_BACK
"READY_FOR_DEPLOYMENT"
"DEPLOYING"
"ROLLING_BACK"
"ROLLED_BACK"
Monitors
— (Array<map>
)Amazon CloudWatch alarms monitored during the deployment.
AlarmArn
— required — (String
)Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
AlarmRoleArn
— (String
)ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
-
(AWS.Response)
—
Returns:
createExtension(params = {}, callback) ⇒ AWS.Request
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 an AppConfig extension that uses Lambda, you must create a Lambda function to perform any computation and processing defined in the extension. If you plan to create custom versions of the Amazon Web Services authored notification extensions, you only need to specify an Amazon Resource Name (ARN) in the Uri
field for the new extension version.
-
For a custom EventBridge notification extension, enter the ARN of the EventBridge default events in the
Uri
field. -
For a custom Amazon SNS notification extension, enter the ARN of an Amazon SNS topic in the
Uri
field. -
For a custom Amazon SQS notification extension, enter the ARN of an Amazon SQS message queue in the
Uri
field.
For more information about extensions, see Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the createExtension operation
var params = {
Actions: { /* required */
'<ActionPoint>': [
{
Description: 'STRING_VALUE',
Name: 'STRING_VALUE',
RoleArn: 'STRING_VALUE',
Uri: 'STRING_VALUE'
},
/* more items */
],
/* '<ActionPoint>': ... */
},
Name: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
LatestVersionNumber: 'NUMBER_VALUE',
Parameters: {
'<ExtensionOrParameterName>': {
Description: 'STRING_VALUE',
Dynamic: true || false,
Required: true || false
},
/* '<ExtensionOrParameterName>': ... */
},
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.createExtension(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
Name
— (String
)A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.
Description
— (String
)Information about the extension.
Actions
— (map<Array<map>>
)The actions defined in the extension.
Name
— (String
)The action name.
Description
— (String
)Information about the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
Parameters
— (map<map>
)The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the
CreateExtensionAssociation
API action. For Lambda extension actions, these parameters are included in the Lambda request object.Description
— (String
)Information about the parameter.
Required
— (Boolean
)A parameter value must be specified in the extension association.
Dynamic
— (Boolean
)Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked
Required
.
Tags
— (map<String>
)Adds one or more tags for the specified extension. Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.
LatestVersionNumber
— (Integer
)You can omit this field when you create an extension. When you create a new version, specify the most recent current version number. For example, you create version 3, enter 2 for this field.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The system-generated ID of the extension.
Name
— (String
)The extension name.
VersionNumber
— (Integer
)The extension version number.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Description
— (String
)Information about the extension.
Actions
— (map<Array<map>>
)The actions defined in the extension.
Name
— (String
)The action name.
Description
— (String
)Information about the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
Parameters
— (map<map>
)The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the
CreateExtensionAssociation
API action. For Lambda extension actions, these parameters are included in the Lambda request object.Description
— (String
)Information about the parameter.
Required
— (Boolean
)A parameter value must be specified in the extension association.
Dynamic
— (Boolean
)Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked
Required
.
-
(AWS.Response)
—
Returns:
createExtensionAssociation(params = {}, callback) ⇒ AWS.Request
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 Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the createExtensionAssociation operation
var params = {
ExtensionIdentifier: 'STRING_VALUE', /* required */
ResourceIdentifier: 'STRING_VALUE', /* required */
ExtensionVersionNumber: 'NUMBER_VALUE',
Parameters: {
'<ExtensionOrParameterName>': 'STRING_VALUE',
/* '<ExtensionOrParameterName>': ... */
},
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.createExtensionAssociation(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
ExtensionVersionNumber
— (Integer
)The version number of the extension. If not specified, AppConfig uses the maximum version of the extension.
ResourceIdentifier
— (String
)The ARN of an application, configuration profile, or environment.
Parameters
— (map<String>
)The parameter names and values defined in the extensions. Extension parameters marked
Required
must be entered for this field.Tags
— (map<String>
)Adds one or more tags for the specified extension association. Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The system-generated ID for the association.
ExtensionArn
— (String
)The ARN of the extension defined in the association.
ResourceArn
— (String
)The ARNs of applications, configuration profiles, or environments defined in the association.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Parameters
— (map<String>
)The parameter names and values defined in the association.
ExtensionVersionNumber
— (Integer
)The version number for the extension defined in the association.
-
(AWS.Response)
—
Returns:
createHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Creates a new configuration in the AppConfig hosted configuration store. If you're creating a feature flag, we recommend you familiarize yourself with the JSON schema for feature flag data. For more information, see Type reference for AWS.AppConfig.FeatureFlags in the AppConfig User Guide.
Service Reference:
Examples:
To create a hosted configuration version
/* The following create-hosted-configuration-version example creates a new configuration in the AWS AppConfig configuration store. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
Content: <Binary String>,
ContentType: "text",
LatestVersionNumber: 1
};
appconfig.createHostedConfigurationVersion(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
ContentType: "text",
VersionNumber: 1
}
*/
});
Calling the createHostedConfigurationVersion operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
Content: Buffer.from('...') || 'STRING_VALUE' /* Strings will be Base-64 encoded on your behalf */, /* required */
ContentType: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
LatestVersionNumber: 'NUMBER_VALUE',
VersionLabel: 'STRING_VALUE'
};
appconfig.createHostedConfigurationVersion(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
Description
— (String
)A description of the configuration.
Content
— (Buffer, Typed Array, Blob, String
)The configuration data, as bytes.
Note: AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.ContentType
— (String
)A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
LatestVersionNumber
— (Integer
)An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
VersionLabel
— (String
)An optional, user-defined label for the AppConfig hosted configuration version. This value must contain at least one non-numeric character. For example, "v2.2.0".
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
VersionNumber
— (Integer
)The configuration version.
Description
— (String
)A description of the configuration.
Content
— (Buffer(Node.js), Typed Array(Browser)
)The content of the configuration or the configuration data.
ContentType
— (String
)A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key that was used to encrypt this specific version of the configuration data in the AppConfig hosted configuration store.
-
(AWS.Response)
—
Returns:
deleteApplication(params = {}, callback) ⇒ AWS.Request
Deletes an application.
Service Reference:
Examples:
To delete an application
/* The following delete-application example deletes the specified application.
*/
var params = {
ApplicationId: "339ohji"
};
appconfig.deleteApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the deleteApplication operation
var params = {
ApplicationId: 'STRING_VALUE' /* required */
};
appconfig.deleteApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The ID of the application to delete.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
deleteConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Deletes a configuration profile.
To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.
Service Reference:
Examples:
To delete a configuration profile
/* The following delete-configuration-profile example deletes the specified configuration profile. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f"
};
appconfig.deleteConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the deleteConfigurationProfile operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
DeletionProtectionCheck: ACCOUNT_DEFAULT | APPLY | BYPASS
};
appconfig.deleteConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID that includes the configuration profile you want to delete.
ConfigurationProfileId
— (String
)The ID of the configuration profile you want to delete.
DeletionProtectionCheck
— (String
)A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile if your application has called either GetLatestConfiguration or for the configuration profile during the specified interval.
This parameter supports the following values:
-
BYPASS
: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. -
APPLY
: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level.APPLY
also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. -
ACCOUNT_DEFAULT
: The default setting, which instructs AppConfig to implement the deletion protection value specified in theUpdateAccountSettings
API.
"ACCOUNT_DEFAULT"
"APPLY"
"BYPASS"
-
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
deleteDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Deletes a deployment strategy.
Service Reference:
Examples:
To delete a deployment strategy
/* The following delete-deployment-strategy example deletes the specified deployment strategy. */
var params = {
DeploymentStrategyId: "1225qzk"
};
appconfig.deleteDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the deleteDeploymentStrategy operation
var params = {
DeploymentStrategyId: 'STRING_VALUE' /* required */
};
appconfig.deleteDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
DeploymentStrategyId
— (String
)The ID of the deployment strategy you want to delete.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
deleteEnvironment(params = {}, callback) ⇒ AWS.Request
Deletes an environment.
To prevent users from unintentionally deleting actively-used environments, enable deletion protection.
Service Reference:
Examples:
To delete an environment
/* The following delete-environment example deletes the specified application environment. */
var params = {
ApplicationId: "339ohji",
EnvironmentId: "54j1r29"
};
appconfig.deleteEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the deleteEnvironment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
EnvironmentId: 'STRING_VALUE', /* required */
DeletionProtectionCheck: ACCOUNT_DEFAULT | APPLY | BYPASS
};
appconfig.deleteEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
EnvironmentId
— (String
)The ID of the environment that you want to delete.
ApplicationId
— (String
)The application ID that includes the environment that you want to delete.
DeletionProtectionCheck
— (String
)A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting an environment if your application called either GetLatestConfiguration or in the environment during the specified interval.
This parameter supports the following values:
-
BYPASS
: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. -
APPLY
: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level.APPLY
also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. -
ACCOUNT_DEFAULT
: The default setting, which instructs AppConfig to implement the deletion protection value specified in theUpdateAccountSettings
API.
"ACCOUNT_DEFAULT"
"APPLY"
"BYPASS"
-
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
deleteExtension(params = {}, callback) ⇒ AWS.Request
Deletes an AppConfig extension. You must delete all associations to an extension before you delete the extension.
Service Reference:
Examples:
Calling the deleteExtension operation
var params = {
ExtensionIdentifier: 'STRING_VALUE', /* required */
VersionNumber: 'NUMBER_VALUE'
};
appconfig.deleteExtension(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionIdentifier
— (String
)The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.
VersionNumber
— (Integer
)A specific version of an extension to delete. If omitted, the highest version is deleted.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
deleteExtensionAssociation(params = {}, callback) ⇒ AWS.Request
Deletes an extension association. This action doesn't delete extensions defined in the association.
Service Reference:
Examples:
Calling the deleteExtensionAssociation operation
var params = {
ExtensionAssociationId: 'STRING_VALUE' /* required */
};
appconfig.deleteExtensionAssociation(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionAssociationId
— (String
)The ID of the extension association to delete.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
deleteHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Deletes a version of a configuration from the AppConfig hosted configuration store.
Service Reference:
Examples:
To delete a hosted configuration version
/* The following delete-hosted-configuration-version example deletes a configuration version hosted in the AWS AppConfig configuration store. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
VersionNumber: 1
};
appconfig.deleteHostedConfigurationVersion(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the deleteHostedConfigurationVersion operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
VersionNumber: 'NUMBER_VALUE' /* required */
};
appconfig.deleteHostedConfigurationVersion(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
VersionNumber
— (Integer
)The versions number to delete.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
getAccountSettings(params = {}, callback) ⇒ AWS.Request
Returns information about the status of the DeletionProtection
parameter.
Service Reference:
Examples:
Calling the getAccountSettings operation
appconfig.getAccountSettings(function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
- params (Object) (defaults to: {})
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:DeletionProtection
— (map
)A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for
ProtectionPeriodInMinutes
is 60.Enabled
— (Boolean
)A parameter that indicates if deletion protection is enabled or not.
ProtectionPeriodInMinutes
— (Integer
)The time interval during which AppConfig monitors for calls to GetLatestConfiguration or for a configuration profile or from an environment. AppConfig returns an error if a user calls or for the designated configuration profile or environment. To bypass the error and delete a configuration profile or an environment, specify
BYPASS
for theDeletionProtectionCheck
parameter for either or .
-
(AWS.Response)
—
Returns:
getApplication(params = {}, callback) ⇒ AWS.Request
Retrieves information about an application.
Service Reference:
Examples:
To list details of an application
/* The following get-application example lists the details of the specified application. */
var params = {
ApplicationId: "339ohji"
};
appconfig.getApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Id: "339ohji",
Name: "example-application"
}
*/
});
Calling the getApplication operation
var params = {
ApplicationId: 'STRING_VALUE' /* required */
};
appconfig.getApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The ID of the application you want to get.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The application ID.
Name
— (String
)The application name.
Description
— (String
)The description of the application.
-
(AWS.Response)
—
Returns:
getConfiguration(params = {}, callback) ⇒ AWS.Request
(Deprecated) Retrieves the latest deployed configuration.
Note the following important information. This API action is deprecated. Calls to receive configuration data should use the StartConfigurationSession and GetLatestConfiguration APIs instead. GetConfiguration is a priced call. For more information, see Pricing.
Service Reference:
Examples:
To retrieve configuration details
/* The following get-configuration example returns the configuration details of the example application. On subsequent calls to get-configuration, use the client-configuration-version parameter to only update the configuration of your application if the version has changed. Only updating the configuration when the version has changed avoids excess charges incurred by calling get-configuration. */
var params = {
Application: "example-application",
ClientId: "example-id",
Configuration: "Example-Configuration-Profile",
Environment: "Example-Environment"
};
appconfig.getConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ConfigurationVersion: "1",
ContentType: "application/octet-stream"
}
*/
});
Calling the getConfiguration operation
var params = {
Application: 'STRING_VALUE', /* required */
ClientId: 'STRING_VALUE', /* required */
Configuration: 'STRING_VALUE', /* required */
Environment: 'STRING_VALUE', /* required */
ClientConfigurationVersion: 'STRING_VALUE'
};
appconfig.getConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
Application
— (String
)The application to get. Specify either the application name or the application ID.
Environment
— (String
)The environment to get. Specify either the environment name or the environment ID.
Configuration
— (String
)The configuration to get. Specify either the configuration name or the configuration ID.
ClientId
— (String
)The clientId parameter in the following command is a unique, user-specified ID to identify the client for the configuration. This ID enables AppConfig to deploy the configuration in intervals, as defined in the deployment strategy.
ClientConfigurationVersion
— (String
)The configuration version returned in the most recent GetConfiguration response.
AppConfig uses the value of the
ClientConfigurationVersion
parameter to identify the configuration version on your clients. If you don’t sendClientConfigurationVersion
with each call to GetConfiguration, your clients receive the current configuration. You are charged each time your clients receive a configuration.To avoid excess charges, we recommend you use the StartConfigurationSession and GetLatestConfiguration APIs, which track the client configuration version on your behalf. If you choose to continue using GetConfiguration, we recommend that you include the
ClientConfigurationVersion
value with every call to GetConfiguration. The value to use forClientConfigurationVersion
comes from theConfigurationVersion
attribute returned by GetConfiguration when there is new or updated data, and should be saved for subsequent calls to GetConfiguration.For more information about working with configurations, see Retrieving the Configuration in the AppConfig User Guide.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Content
— (Buffer(Node.js), Typed Array(Browser)
)The content of the configuration or the configuration data.
The
Content
attribute only contains data if the system finds new or updated configuration data. If there is no new or updated data andClientConfigurationVersion
matches the version of the current configuration, AppConfig returns a204 No Content
HTTP response code and theContent
value will be empty.ConfigurationVersion
— (String
)The configuration version.
ContentType
— (String
)A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
-
(AWS.Response)
—
Returns:
getConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Retrieves information about a configuration profile.
Service Reference:
Examples:
To retrieve configuration profile details
/* The following get-configuration-profile example returns the details of the specified configuration profile. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f"
};
appconfig.getConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
Id: "ur8hx2f",
LocationUri: "ssm-parameter://Example-Parameter",
Name: "Example-Configuration-Profile",
RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role"
}
*/
});
Calling the getConfigurationProfile operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE' /* required */
};
appconfig.getConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The ID of the application that includes the configuration profile you want to get.
ConfigurationProfileId
— (String
)The ID of the configuration profile that you want to get.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
Id
— (String
)The configuration profile ID.
Name
— (String
)The name of the configuration profile.
Description
— (String
)The configuration profile description.
LocationUri
— (String
)The URI location of the configuration.
RetrievalRoleArn
— (String
)The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.Validators
— (Array<map>
)A list of methods for validating the configuration.
Type
— required — (String
)AppConfig supports validators of type
Possible values include:JSON_SCHEMA
andLAMBDA
"JSON_SCHEMA"
"LAMBDA"
Content
— required — (String
)Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
Type
— (String
)The type of configurations contained in the profile. AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for
hosted
configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.KmsKeyIdentifier
— (String
)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
-
(AWS.Response)
—
Returns:
getDeployment(params = {}, callback) ⇒ AWS.Request
Retrieves information about a configuration deployment.
Service Reference:
Examples:
To retrieve deployment details
/* The following get-deployment example lists details of the deployment to the application in the specified environment and deployment. */
var params = {
ApplicationId: "339ohji",
DeploymentNumber: 1,
EnvironmentId: "54j1r29"
};
appconfig.getDeployment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
CompletedAt: <Date Representation>,
ConfigurationLocationUri: "ssm-parameter://Example-Parameter",
ConfigurationName: "Example-Configuration-Profile",
ConfigurationProfileId: "ur8hx2f",
ConfigurationVersion: "1",
DeploymentDurationInMinutes: 15,
DeploymentNumber: 1,
DeploymentStrategyId: "1225qzk",
EnvironmentId: "54j1r29",
EventLog: [
{
Description: "Deployment completed",
EventType: "DEPLOYMENT_COMPLETED",
OccurredAt: <Date Representation>,
TriggeredBy: "APPCONFIG"
},
{
Description: "Deployment bake time started",
EventType: "BAKE_TIME_STARTED",
OccurredAt: <Date Representation>,
TriggeredBy: "APPCONFIG"
},
{
Description: "Configuration available to 100.00% of clients",
EventType: "PERCENTAGE_UPDATED",
OccurredAt: <Date Representation>,
TriggeredBy: "APPCONFIG"
},
{
Description: "Configuration available to 75.00% of clients",
EventType: "PERCENTAGE_UPDATED",
OccurredAt: <Date Representation>,
TriggeredBy: "APPCONFIG"
},
{
Description: "Configuration available to 50.00% of clients",
EventType: "PERCENTAGE_UPDATED",
OccurredAt: <Date Representation>,
TriggeredBy: "APPCONFIG"
},
{
Description: "Configuration available to 25.00% of clients",
EventType: "PERCENTAGE_UPDATED",
OccurredAt: <Date Representation>,
TriggeredBy: "APPCONFIG"
},
{
Description: "Deployment started",
EventType: "DEPLOYMENT_STARTED",
OccurredAt: <Date Representation>,
TriggeredBy: "USER"
}
],
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25,
GrowthType: "LINEAR",
PercentageComplete: 100,
StartedAt: <Date Representation>,
State: "COMPLETE"
}
*/
});
Calling the getDeployment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
DeploymentNumber: 'NUMBER_VALUE', /* required */
EnvironmentId: 'STRING_VALUE' /* required */
};
appconfig.getDeployment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The ID of the application that includes the deployment you want to get.
EnvironmentId
— (String
)The ID of the environment that includes the deployment you want to get.
DeploymentNumber
— (Integer
)The sequence number of the deployment.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The ID of the application that was deployed.
EnvironmentId
— (String
)The ID of the environment that was deployed.
DeploymentStrategyId
— (String
)The ID of the deployment strategy that was deployed.
ConfigurationProfileId
— (String
)The ID of the configuration profile that was deployed.
DeploymentNumber
— (Integer
)The sequence number of the deployment.
ConfigurationName
— (String
)The name of the configuration.
ConfigurationLocationUri
— (String
)Information about the source location of the configuration.
ConfigurationVersion
— (String
)The configuration version that was deployed.
Description
— (String
)The description of the deployment.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets to receive a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
State
— (String
)The state of the deployment.
Possible values include:"BAKING"
"VALIDATING"
"DEPLOYING"
"COMPLETE"
"ROLLING_BACK"
"ROLLED_BACK"
EventLog
— (Array<map>
)A list containing all events related to a deployment. The most recent events are displayed first.
EventType
— (String
)The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; and the start or completion of a rollback.
Possible values include:"PERCENTAGE_UPDATED"
"ROLLBACK_STARTED"
"ROLLBACK_COMPLETED"
"BAKE_TIME_STARTED"
"DEPLOYMENT_STARTED"
"DEPLOYMENT_COMPLETED"
TriggeredBy
— (String
)The entity that triggered the deployment event. Events can be triggered by a user, AppConfig, an Amazon CloudWatch alarm, or an internal error.
Possible values include:"USER"
"APPCONFIG"
"CLOUDWATCH_ALARM"
"INTERNAL_ERROR"
Description
— (String
)A description of the deployment event. Descriptions include, but are not limited to, the following:
-
The Amazon Web Services account or the Amazon CloudWatch alarm ARN that initiated a rollback.
-
The percentage of hosts that received the deployment.
-
A recommendation to attempt a new deployment (in the case of an internal error).
-
ActionInvocations
— (Array<map>
)The list of extensions that were invoked as part of the deployment.
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
ActionName
— (String
)The name of the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
ErrorMessage
— (String
)The error message when an extension invocation fails.
ErrorCode
— (String
)The error code when an extension invocation fails.
InvocationId
— (String
)A system-generated ID for this invocation.
OccurredAt
— (Date
)The date and time the event occurred.
PercentageComplete
— (Float
)The percentage of targets for which the deployment is available.
StartedAt
— (Date
)The time the deployment started.
CompletedAt
— (Date
)The time the deployment completed.
AppliedExtensions
— (Array<map>
)A list of extensions that were processed as part of the deployment. The extensions that were previously associated to the configuration profile, environment, or the application when
StartDeployment
was called.ExtensionId
— (String
)The system-generated ID of the extension.
ExtensionAssociationId
— (String
)The system-generated ID for the association.
VersionNumber
— (Integer
)The extension version number.
Parameters
— (map<String>
)One or more parameters for the actions called by the extension.
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key used to encrypt configuration data. You can encrypt secrets stored in Secrets Manager, Amazon Simple Storage Service (Amazon S3) objects encrypted with SSE-KMS, or secure string parameters stored in Amazon Web Services Systems Manager Parameter Store.
KmsKeyIdentifier
— (String
)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
-
(AWS.Response)
—
Returns:
getDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To retrieve details of a deployment strategy
/* The following get-deployment-strategy example lists the details of the specified deployment strategy. */
var params = {
DeploymentStrategyId: "1225qzk"
};
appconfig.getDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
DeploymentDurationInMinutes: 15,
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25,
GrowthType: "LINEAR",
Id: "1225qzk",
Name: "Example-Deployment",
ReplicateTo: "SSM_DOCUMENT"
}
*/
});
Calling the getDeploymentStrategy operation
var params = {
DeploymentStrategyId: 'STRING_VALUE' /* required */
};
appconfig.getDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
DeploymentStrategyId
— (String
)The ID of the deployment strategy to get.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The deployment strategy ID.
Name
— (String
)The name of the deployment strategy.
Description
— (String
)The description of the deployment strategy.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets that received a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
ReplicateTo
— (String
)Save the deployment strategy to a Systems Manager (SSM) document.
Possible values include:"NONE"
"SSM_DOCUMENT"
-
(AWS.Response)
—
Returns:
getEnvironment(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To retrieve environment details
/* The following get-environment example returns the details and state of the specified environment. */
var params = {
ApplicationId: "339ohji",
EnvironmentId: "54j1r29"
};
appconfig.getEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
Id: "54j1r29",
Name: "Example-Environment",
State: "READY_FOR_DEPLOYMENT"
}
*/
});
Calling the getEnvironment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
EnvironmentId: 'STRING_VALUE' /* required */
};
appconfig.getEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The ID of the application that includes the environment you want to get.
EnvironmentId
— (String
)The ID of the environment that you want to get.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
Id
— (String
)The environment ID.
Name
— (String
)The name of the environment.
Description
— (String
)The description of the environment.
State
— (String
)The state of the environment. An environment can be in one of the following states:
Possible values include:READY_FOR_DEPLOYMENT
,DEPLOYING
,ROLLING_BACK
, orROLLED_BACK
"READY_FOR_DEPLOYMENT"
"DEPLOYING"
"ROLLING_BACK"
"ROLLED_BACK"
Monitors
— (Array<map>
)Amazon CloudWatch alarms monitored during the deployment.
AlarmArn
— required — (String
)Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
AlarmRoleArn
— (String
)ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
-
(AWS.Response)
—
Returns:
getExtension(params = {}, callback) ⇒ AWS.Request
Returns information about an AppConfig extension.
Service Reference:
Examples:
Calling the getExtension operation
var params = {
ExtensionIdentifier: 'STRING_VALUE', /* required */
VersionNumber: 'NUMBER_VALUE'
};
appconfig.getExtension(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
VersionNumber
— (Integer
)The extension version number. If no version number was defined, AppConfig uses the highest version.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The system-generated ID of the extension.
Name
— (String
)The extension name.
VersionNumber
— (Integer
)The extension version number.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Description
— (String
)Information about the extension.
Actions
— (map<Array<map>>
)The actions defined in the extension.
Name
— (String
)The action name.
Description
— (String
)Information about the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
Parameters
— (map<map>
)The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the
CreateExtensionAssociation
API action. For Lambda extension actions, these parameters are included in the Lambda request object.Description
— (String
)Information about the parameter.
Required
— (Boolean
)A parameter value must be specified in the extension association.
Dynamic
— (Boolean
)Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked
Required
.
-
(AWS.Response)
—
Returns:
getExtensionAssociation(params = {}, callback) ⇒ AWS.Request
Returns information about an AppConfig extension association. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the getExtensionAssociation operation
var params = {
ExtensionAssociationId: 'STRING_VALUE' /* required */
};
appconfig.getExtensionAssociation(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionAssociationId
— (String
)The extension association ID to get.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The system-generated ID for the association.
ExtensionArn
— (String
)The ARN of the extension defined in the association.
ResourceArn
— (String
)The ARNs of applications, configuration profiles, or environments defined in the association.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Parameters
— (map<String>
)The parameter names and values defined in the association.
ExtensionVersionNumber
— (Integer
)The version number for the extension defined in the association.
-
(AWS.Response)
—
Returns:
getHostedConfigurationVersion(params = {}, callback) ⇒ AWS.Request
Retrieves information about a specific configuration version.
Service Reference:
Examples:
To retrieve hosted configuration details
/* The following get-hosted-configuration-version example retrieves the configuration details of the AWS AppConfig hosted configuration. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
VersionNumber: 1
};
appconfig.getHostedConfigurationVersion(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
ContentType: "application/json",
VersionNumber: 1
}
*/
});
Calling the getHostedConfigurationVersion operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
VersionNumber: 'NUMBER_VALUE' /* required */
};
appconfig.getHostedConfigurationVersion(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
VersionNumber
— (Integer
)The version.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
VersionNumber
— (Integer
)The configuration version.
Description
— (String
)A description of the configuration.
Content
— (Buffer(Node.js), Typed Array(Browser)
)The content of the configuration or the configuration data.
ContentType
— (String
)A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key that was used to encrypt this specific version of the configuration data in the AppConfig hosted configuration store.
-
(AWS.Response)
—
Returns:
listApplications(params = {}, callback) ⇒ AWS.Request
Lists all applications in your Amazon Web Services account.
Service Reference:
Examples:
To list the available applications
/* The following list-applications example lists the available applications in your AWS account. */
var params = {
};
appconfig.listApplications(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Items: [
{
Description: "An application used for creating an example.",
Id: "339ohji",
Name: "test-application"
},
{
Id: "rwalwu7",
Name: "Test-Application"
}
]
}
*/
});
Calling the listApplications operation
var params = {
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE'
};
appconfig.listApplications(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Next token is a pagination token generated by AppConfig to describe what page the previous List call ended on. For the first List request, the nextToken should not be set. On subsequent calls, the nextToken parameter should be set to the previous responses nextToken value. Use this token to get the next set of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The elements from this collection.
Id
— (String
)The application ID.
Name
— (String
)The application name.
Description
— (String
)The description of the application.
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listConfigurationProfiles(params = {}, callback) ⇒ AWS.Request
Lists the configuration profiles for an application.
Service Reference:
Examples:
To list the available configuration profiles
/* The following list-configuration-profiles example lists the available configuration profiles for the specified application. */
var params = {
ApplicationId: "339ohji"
};
appconfig.listConfigurationProfiles(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Items: [
{
ApplicationId: "339ohji",
Id: "ur8hx2f",
LocationUri: "ssm-parameter://Example-Parameter",
Name: "Example-Configuration-Profile"
}
]
}
*/
});
Calling the listConfigurationProfiles operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE',
Type: 'STRING_VALUE'
};
appconfig.listConfigurationProfiles(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Use this token to get the next set of results.
Type
— (String
)A filter based on the type of configurations that the configuration profile contains. A configuration can be a feature flag or a freeform configuration.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The elements from this collection.
ApplicationId
— (String
)The application ID.
Id
— (String
)The ID of the configuration profile.
Name
— (String
)The name of the configuration profile.
LocationUri
— (String
)The URI location of the configuration.
ValidatorTypes
— (Array<String>
)The types of validators in the configuration profile.
Type
— (String
)The type of configurations contained in the profile. AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listDeployments(params = {}, callback) ⇒ AWS.Request
Lists the deployments for an environment in descending deployment number order.
Service Reference:
Examples:
To list the available deployments
/* The following list-deployments example lists the available deployments in your AWS account for the specified application and environment. */
var params = {
ApplicationId: "339ohji",
EnvironmentId: "54j1r29"
};
appconfig.listDeployments(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Items: [
{
CompletedAt: <Date Representation>,
ConfigurationName: "Example-Configuration-Profile",
ConfigurationVersion: "1",
DeploymentDurationInMinutes: 15,
DeploymentNumber: 1,
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25,
GrowthType: "LINEAR",
PercentageComplete: 100,
StartedAt: <Date Representation>,
State: "COMPLETE"
}
]
}
*/
});
Calling the listDeployments operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
EnvironmentId: 'STRING_VALUE', /* required */
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE'
};
appconfig.listDeployments(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
EnvironmentId
— (String
)The environment ID.
MaxResults
— (Integer
)The maximum number of items that may be returned for this call. If there are items that have not yet been returned, the response will include a non-null
NextToken
that you can provide in a subsequent call to get the next set of results.NextToken
— (String
)The token returned by a prior call to this operation indicating the next set of results to be returned. If not specified, the operation will return the first set of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The elements from this collection.
DeploymentNumber
— (Integer
)The sequence number of the deployment.
ConfigurationName
— (String
)The name of the configuration.
ConfigurationVersion
— (String
)The version of the configuration.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grows over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets to receive a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
State
— (String
)The state of the deployment.
Possible values include:"BAKING"
"VALIDATING"
"DEPLOYING"
"COMPLETE"
"ROLLING_BACK"
"ROLLED_BACK"
PercentageComplete
— (Float
)The percentage of targets for which the deployment is available.
StartedAt
— (Date
)Time the deployment started.
CompletedAt
— (Date
)Time the deployment completed.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listDeploymentStrategies(params = {}, callback) ⇒ AWS.Request
Lists deployment strategies.
Service Reference:
Examples:
To list the available deployment strategies
/* The following list-deployment-strategies example lists the available deployment strategies in your AWS account. */
var params = {
};
appconfig.listDeploymentStrategies(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Items: [
{
DeploymentDurationInMinutes: 15,
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25,
GrowthType: "LINEAR",
Id: "1225qzk",
Name: "Example-Deployment",
ReplicateTo: "SSM_DOCUMENT"
}
]
}
*/
});
Calling the listDeploymentStrategies operation
var params = {
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE'
};
appconfig.listDeploymentStrategies(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Use this token to get the next set of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The elements from this collection.
Id
— (String
)The deployment strategy ID.
Name
— (String
)The name of the deployment strategy.
Description
— (String
)The description of the deployment strategy.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets that received a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
ReplicateTo
— (String
)Save the deployment strategy to a Systems Manager (SSM) document.
Possible values include:"NONE"
"SSM_DOCUMENT"
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listEnvironments(params = {}, callback) ⇒ AWS.Request
Lists the environments for an application.
Service Reference:
Examples:
To list the available environments
/* The following list-environments example lists the available environments in your AWS account for the specified application. */
var params = {
ApplicationId: "339ohji"
};
appconfig.listEnvironments(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Items: [
{
ApplicationId: "339ohji",
Id: "54j1r29",
Name: "Example-Environment",
State: "READY_FOR_DEPLOYMENT"
}
]
}
*/
});
Calling the listEnvironments operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE'
};
appconfig.listEnvironments(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Use this token to get the next set of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The elements from this collection.
ApplicationId
— (String
)The application ID.
Id
— (String
)The environment ID.
Name
— (String
)The name of the environment.
Description
— (String
)The description of the environment.
State
— (String
)The state of the environment. An environment can be in one of the following states:
Possible values include:READY_FOR_DEPLOYMENT
,DEPLOYING
,ROLLING_BACK
, orROLLED_BACK
"READY_FOR_DEPLOYMENT"
"DEPLOYING"
"ROLLING_BACK"
"ROLLED_BACK"
Monitors
— (Array<map>
)Amazon CloudWatch alarms monitored during the deployment.
AlarmArn
— required — (String
)Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
AlarmRoleArn
— (String
)ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listExtensionAssociations(params = {}, callback) ⇒ AWS.Request
Lists all AppConfig extension associations in the account. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the listExtensionAssociations operation
var params = {
ExtensionIdentifier: 'STRING_VALUE',
ExtensionVersionNumber: 'NUMBER_VALUE',
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE',
ResourceIdentifier: 'STRING_VALUE'
};
appconfig.listExtensionAssociations(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ResourceIdentifier
— (String
)The ARN of an application, configuration profile, or environment.
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
ExtensionVersionNumber
— (Integer
)The version number for the extension defined in the association.
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Use this token to get the next set of results or pass null to get the first set of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.
Id
— (String
)The extension association ID. This ID is used to call other
ExtensionAssociation
API actions such asGetExtensionAssociation
orDeleteExtensionAssociation
.ExtensionArn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
ResourceArn
— (String
)The ARNs of applications, configuration profiles, or environments defined in the association.
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listExtensions(params = {}, callback) ⇒ AWS.Request
Lists all custom and Amazon Web Services authored AppConfig extensions in the account. For more information about extensions, see Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the listExtensions operation
var params = {
MaxResults: 'NUMBER_VALUE',
Name: 'STRING_VALUE',
NextToken: 'STRING_VALUE'
};
appconfig.listExtensions(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Use this token to get the next set of results.
Name
— (String
)The extension name.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.
Id
— (String
)The system-generated ID of the extension.
Name
— (String
)The extension name.
VersionNumber
— (Integer
)The extension version number.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Description
— (String
)Information about the extension.
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listHostedConfigurationVersions(params = {}, callback) ⇒ AWS.Request
Lists configurations stored in the AppConfig hosted configuration store by version.
Service Reference:
Examples:
To list the available hosted configuration versions
/* The following list-hosted-configuration-versions example lists the configurations versions hosted in the AWS AppConfig hosted configuration store for the specified application and configuration profile. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f"
};
appconfig.listHostedConfigurationVersions(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Items: [
{
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
ContentType: "application/json",
VersionNumber: 1
}
]
}
*/
});
Calling the listHostedConfigurationVersions operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
MaxResults: 'NUMBER_VALUE',
NextToken: 'STRING_VALUE',
VersionLabel: 'STRING_VALUE'
};
appconfig.listHostedConfigurationVersions(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
MaxResults
— (Integer
)The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
— (String
)A token to start the list. Use this token to get the next set of results.
VersionLabel
— (String
)An optional filter that can be used to specify the version label of an AppConfig hosted configuration version. This parameter supports filtering by prefix using a wildcard, for example "v2*". If you don't specify an asterisk at the end of the value, only an exact match is returned.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Items
— (Array<map>
)The elements from this collection.
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
VersionNumber
— (Integer
)The configuration version.
Description
— (String
)A description of the configuration.
ContentType
— (String
)A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key that was used to encrypt this specific version of the configuration data in the AppConfig hosted configuration store.
NextToken
— (String
)The token for the next set of items to return. Use this token to get the next set of results.
-
(AWS.Response)
—
Returns:
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Retrieves the list of key-value tags assigned to the resource.
Service Reference:
Examples:
To list the tags of an application
/* The following list-tags-for-resource example lists the tags of a specified application. */
var params = {
ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji"
};
appconfig.listTagsForResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Tags: {
"group1": "1"
}
}
*/
});
Calling the listTagsForResource operation
var params = {
ResourceArn: 'STRING_VALUE' /* required */
};
appconfig.listTagsForResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ResourceArn
— (String
)The resource ARN.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Tags
— (map<String>
)Metadata to assign to AppConfig resources. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
-
(AWS.Response)
—
Returns:
startDeployment(params = {}, callback) ⇒ AWS.Request
Starts a deployment.
Service Reference:
Examples:
To start a configuration deployment
/* The following start-deployment example starts a deployment to the application using the specified environment, deployment strategy, and configuration profile. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
ConfigurationVersion: "1",
DeploymentStrategyId: "1225qzk",
Description: "",
EnvironmentId: "54j1r29",
Tags: {
}
};
appconfig.startDeployment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
ConfigurationLocationUri: "ssm-parameter://Example-Parameter",
ConfigurationName: "Example-Configuration-Profile",
ConfigurationProfileId: "ur8hx2f",
ConfigurationVersion: "1",
DeploymentDurationInMinutes: 15,
DeploymentNumber: 1,
DeploymentStrategyId: "1225qzk",
EnvironmentId: "54j1r29",
EventLog: [
{
Description: "Deployment started",
EventType: "DEPLOYMENT_STARTED",
OccurredAt: <Date Representation>,
TriggeredBy: "USER"
}
],
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25,
GrowthType: "LINEAR",
PercentageComplete: 1.0,
StartedAt: <Date Representation>,
State: "DEPLOYING"
}
*/
});
Calling the startDeployment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
ConfigurationVersion: 'STRING_VALUE', /* required */
DeploymentStrategyId: 'STRING_VALUE', /* required */
EnvironmentId: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
DynamicExtensionParameters: {
'<DynamicParameterKey>': 'STRING_VALUE',
/* '<DynamicParameterKey>': ... */
},
KmsKeyIdentifier: 'STRING_VALUE',
Tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.startDeployment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
EnvironmentId
— (String
)The environment ID.
DeploymentStrategyId
— (String
)The deployment strategy ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
ConfigurationVersion
— (String
)The configuration version to deploy. If deploying an AppConfig hosted configuration version, you can specify either the version number or version label. For all other configurations, you must specify the version number.
Description
— (String
)A description of the deployment.
Tags
— (map<String>
)Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
KmsKeyIdentifier
— (String
)The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this ID to encrypt the configuration data using a customer managed key.
DynamicExtensionParameters
— (map<String>
)A map of dynamic extension parameter names to values to pass to associated extensions with
PRE_START_DEPLOYMENT
actions.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The ID of the application that was deployed.
EnvironmentId
— (String
)The ID of the environment that was deployed.
DeploymentStrategyId
— (String
)The ID of the deployment strategy that was deployed.
ConfigurationProfileId
— (String
)The ID of the configuration profile that was deployed.
DeploymentNumber
— (Integer
)The sequence number of the deployment.
ConfigurationName
— (String
)The name of the configuration.
ConfigurationLocationUri
— (String
)Information about the source location of the configuration.
ConfigurationVersion
— (String
)The configuration version that was deployed.
Description
— (String
)The description of the deployment.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets to receive a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
State
— (String
)The state of the deployment.
Possible values include:"BAKING"
"VALIDATING"
"DEPLOYING"
"COMPLETE"
"ROLLING_BACK"
"ROLLED_BACK"
EventLog
— (Array<map>
)A list containing all events related to a deployment. The most recent events are displayed first.
EventType
— (String
)The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; and the start or completion of a rollback.
Possible values include:"PERCENTAGE_UPDATED"
"ROLLBACK_STARTED"
"ROLLBACK_COMPLETED"
"BAKE_TIME_STARTED"
"DEPLOYMENT_STARTED"
"DEPLOYMENT_COMPLETED"
TriggeredBy
— (String
)The entity that triggered the deployment event. Events can be triggered by a user, AppConfig, an Amazon CloudWatch alarm, or an internal error.
Possible values include:"USER"
"APPCONFIG"
"CLOUDWATCH_ALARM"
"INTERNAL_ERROR"
Description
— (String
)A description of the deployment event. Descriptions include, but are not limited to, the following:
-
The Amazon Web Services account or the Amazon CloudWatch alarm ARN that initiated a rollback.
-
The percentage of hosts that received the deployment.
-
A recommendation to attempt a new deployment (in the case of an internal error).
-
ActionInvocations
— (Array<map>
)The list of extensions that were invoked as part of the deployment.
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
ActionName
— (String
)The name of the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
ErrorMessage
— (String
)The error message when an extension invocation fails.
ErrorCode
— (String
)The error code when an extension invocation fails.
InvocationId
— (String
)A system-generated ID for this invocation.
OccurredAt
— (Date
)The date and time the event occurred.
PercentageComplete
— (Float
)The percentage of targets for which the deployment is available.
StartedAt
— (Date
)The time the deployment started.
CompletedAt
— (Date
)The time the deployment completed.
AppliedExtensions
— (Array<map>
)A list of extensions that were processed as part of the deployment. The extensions that were previously associated to the configuration profile, environment, or the application when
StartDeployment
was called.ExtensionId
— (String
)The system-generated ID of the extension.
ExtensionAssociationId
— (String
)The system-generated ID for the association.
VersionNumber
— (Integer
)The extension version number.
Parameters
— (map<String>
)One or more parameters for the actions called by the extension.
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key used to encrypt configuration data. You can encrypt secrets stored in Secrets Manager, Amazon Simple Storage Service (Amazon S3) objects encrypted with SSE-KMS, or secure string parameters stored in Amazon Web Services Systems Manager Parameter Store.
KmsKeyIdentifier
— (String
)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
-
(AWS.Response)
—
Returns:
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
.
Service Reference:
Examples:
To stop configuration deployment
/* The following stop-deployment example stops the deployment of an application configuration to the specified environment. */
var params = {
ApplicationId: "339ohji",
DeploymentNumber: 2,
EnvironmentId: "54j1r29"
};
appconfig.stopDeployment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
DeploymentDurationInMinutes: 15,
DeploymentNumber: 2,
FinalBakeTimeInMinutes: 0,
GrowthFactor: 25.0,
PercentageComplete: 1.0
}
*/
});
Calling the stopDeployment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
DeploymentNumber: 'NUMBER_VALUE', /* required */
EnvironmentId: 'STRING_VALUE' /* required */
};
appconfig.stopDeployment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
EnvironmentId
— (String
)The environment ID.
DeploymentNumber
— (Integer
)The sequence number of the deployment.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The ID of the application that was deployed.
EnvironmentId
— (String
)The ID of the environment that was deployed.
DeploymentStrategyId
— (String
)The ID of the deployment strategy that was deployed.
ConfigurationProfileId
— (String
)The ID of the configuration profile that was deployed.
DeploymentNumber
— (Integer
)The sequence number of the deployment.
ConfigurationName
— (String
)The name of the configuration.
ConfigurationLocationUri
— (String
)Information about the source location of the configuration.
ConfigurationVersion
— (String
)The configuration version that was deployed.
Description
— (String
)The description of the deployment.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets to receive a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
State
— (String
)The state of the deployment.
Possible values include:"BAKING"
"VALIDATING"
"DEPLOYING"
"COMPLETE"
"ROLLING_BACK"
"ROLLED_BACK"
EventLog
— (Array<map>
)A list containing all events related to a deployment. The most recent events are displayed first.
EventType
— (String
)The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; and the start or completion of a rollback.
Possible values include:"PERCENTAGE_UPDATED"
"ROLLBACK_STARTED"
"ROLLBACK_COMPLETED"
"BAKE_TIME_STARTED"
"DEPLOYMENT_STARTED"
"DEPLOYMENT_COMPLETED"
TriggeredBy
— (String
)The entity that triggered the deployment event. Events can be triggered by a user, AppConfig, an Amazon CloudWatch alarm, or an internal error.
Possible values include:"USER"
"APPCONFIG"
"CLOUDWATCH_ALARM"
"INTERNAL_ERROR"
Description
— (String
)A description of the deployment event. Descriptions include, but are not limited to, the following:
-
The Amazon Web Services account or the Amazon CloudWatch alarm ARN that initiated a rollback.
-
The percentage of hosts that received the deployment.
-
A recommendation to attempt a new deployment (in the case of an internal error).
-
ActionInvocations
— (Array<map>
)The list of extensions that were invoked as part of the deployment.
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
ActionName
— (String
)The name of the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
ErrorMessage
— (String
)The error message when an extension invocation fails.
ErrorCode
— (String
)The error code when an extension invocation fails.
InvocationId
— (String
)A system-generated ID for this invocation.
OccurredAt
— (Date
)The date and time the event occurred.
PercentageComplete
— (Float
)The percentage of targets for which the deployment is available.
StartedAt
— (Date
)The time the deployment started.
CompletedAt
— (Date
)The time the deployment completed.
AppliedExtensions
— (Array<map>
)A list of extensions that were processed as part of the deployment. The extensions that were previously associated to the configuration profile, environment, or the application when
StartDeployment
was called.ExtensionId
— (String
)The system-generated ID of the extension.
ExtensionAssociationId
— (String
)The system-generated ID for the association.
VersionNumber
— (Integer
)The extension version number.
Parameters
— (map<String>
)One or more parameters for the actions called by the extension.
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key used to encrypt configuration data. You can encrypt secrets stored in Secrets Manager, Amazon Simple Storage Service (Amazon S3) objects encrypted with SSE-KMS, or secure string parameters stored in Amazon Web Services Systems Manager Parameter Store.
KmsKeyIdentifier
— (String
)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
VersionLabel
— (String
)A user-defined label for an AppConfig hosted configuration version.
-
(AWS.Response)
—
Returns:
tagResource(params = {}, callback) ⇒ AWS.Request
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.
Service Reference:
Examples:
To tag an application
/* The following tag-resource example tags an application resource. */
var params = {
ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
Tags: {
"group1": "1"
}
};
appconfig.tagResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the tagResource operation
var params = {
ResourceArn: 'STRING_VALUE', /* required */
Tags: { /* required */
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
appconfig.tagResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ResourceArn
— (String
)The ARN of the resource for which to retrieve tags.
Tags
— (map<String>
)The key-value string map. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with
aws:
. The tag value can be up to 256 characters.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
untagResource(params = {}, callback) ⇒ AWS.Request
Deletes a tag key and value from an AppConfig resource.
Service Reference:
Examples:
To remove a tag from an application
/* The following untag-resource example removes the group1 tag from the specified application. */
var params = {
ResourceArn: "arn:aws:appconfig:us-east-1:111122223333:application/339ohji",
TagKeys: [
"group1"
]
};
appconfig.untagResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the untagResource operation
var params = {
ResourceArn: 'STRING_VALUE', /* required */
TagKeys: [ /* required */
'STRING_VALUE',
/* more items */
]
};
appconfig.untagResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ResourceArn
— (String
)The ARN of the resource for which to remove tags.
TagKeys
— (Array<String>
)The tag keys to delete.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
updateAccountSettings(params = {}, callback) ⇒ AWS.Request
Updates the value of the DeletionProtection
parameter.
Service Reference:
Examples:
Calling the updateAccountSettings operation
var params = {
DeletionProtection: {
Enabled: true || false,
ProtectionPeriodInMinutes: 'NUMBER_VALUE'
}
};
appconfig.updateAccountSettings(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
DeletionProtection
— (map
)A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for
ProtectionPeriodInMinutes
is 60.Enabled
— (Boolean
)A parameter that indicates if deletion protection is enabled or not.
ProtectionPeriodInMinutes
— (Integer
)The time interval during which AppConfig monitors for calls to GetLatestConfiguration or for a configuration profile or from an environment. AppConfig returns an error if a user calls or for the designated configuration profile or environment. To bypass the error and delete a configuration profile or an environment, specify
BYPASS
for theDeletionProtectionCheck
parameter for either or .
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:DeletionProtection
— (map
)A parameter to configure deletion protection. If enabled, deletion protection prevents a user from deleting a configuration profile or an environment if AppConfig has called either GetLatestConfiguration or for the configuration profile or from the environment during the specified interval. Deletion protection is disabled by default. The default interval for
ProtectionPeriodInMinutes
is 60.Enabled
— (Boolean
)A parameter that indicates if deletion protection is enabled or not.
ProtectionPeriodInMinutes
— (Integer
)The time interval during which AppConfig monitors for calls to GetLatestConfiguration or for a configuration profile or from an environment. AppConfig returns an error if a user calls or for the designated configuration profile or environment. To bypass the error and delete a configuration profile or an environment, specify
BYPASS
for theDeletionProtectionCheck
parameter for either or .
-
(AWS.Response)
—
Returns:
updateApplication(params = {}, callback) ⇒ AWS.Request
Updates an application.
Service Reference:
Examples:
To update an application
/* The following update-application example updates the name of the specified application. */
var params = {
ApplicationId: "339ohji",
Description: "",
Name: "Example-Application"
};
appconfig.updateApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
Description: "An application used for creating an example.",
Id: "339ohji",
Name: "Example-Application"
}
*/
});
Calling the updateApplication operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
Name: 'STRING_VALUE'
};
appconfig.updateApplication(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
Name
— (String
)The name of the application.
Description
— (String
)A description of the application.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The application ID.
Name
— (String
)The application name.
Description
— (String
)The description of the application.
-
(AWS.Response)
—
Returns:
updateConfigurationProfile(params = {}, callback) ⇒ AWS.Request
Updates a configuration profile.
Service Reference:
Examples:
To update a configuration profile
/* The following update-configuration-profile example updates the description of the specified configuration profile. */
var params = {
ApplicationId: "339ohji",
ConfigurationProfileId: "ur8hx2f",
Description: "Configuration profile used for examples."
};
appconfig.updateConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
Description: "Configuration profile used for examples.",
Id: "ur8hx2f",
LocationUri: "ssm-parameter://Example-Parameter",
Name: "Example-Configuration-Profile",
RetrievalRoleArn: "arn:aws:iam::111122223333:role/Example-App-Config-Role"
}
*/
});
Calling the updateConfigurationProfile operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
KmsKeyIdentifier: 'STRING_VALUE',
Name: 'STRING_VALUE',
RetrievalRoleArn: 'STRING_VALUE',
Validators: [
{
Content: 'STRING_VALUE', /* required */
Type: JSON_SCHEMA | LAMBDA /* required */
},
/* more items */
]
};
appconfig.updateConfigurationProfile(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The ID of the configuration profile.
Name
— (String
)The name of the configuration profile.
Description
— (String
)A description of the configuration profile.
RetrievalRoleArn
— (String
)The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.Validators
— (Array<map>
)A list of methods for validating the configuration.
Type
— required — (String
)AppConfig supports validators of type
Possible values include:JSON_SCHEMA
andLAMBDA
"JSON_SCHEMA"
"LAMBDA"
Content
— required — (String
)Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
KmsKeyIdentifier
— (String
)The identifier for a Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for
hosted
configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
Id
— (String
)The configuration profile ID.
Name
— (String
)The name of the configuration profile.
Description
— (String
)The configuration profile description.
LocationUri
— (String
)The URI location of the configuration.
RetrievalRoleArn
— (String
)The ARN of an IAM role with permission to access the configuration at the specified
LocationUri
.Validators
— (Array<map>
)A list of methods for validating the configuration.
Type
— required — (String
)AppConfig supports validators of type
Possible values include:JSON_SCHEMA
andLAMBDA
"JSON_SCHEMA"
"LAMBDA"
Content
— required — (String
)Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.
Type
— (String
)The type of configurations contained in the profile. AppConfig supports
feature flags
andfreeform
configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values forType
:AWS.AppConfig.FeatureFlags
AWS.Freeform
KmsKeyArn
— (String
)The Amazon Resource Name of the Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for
hosted
configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.KmsKeyIdentifier
— (String
)The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
-
(AWS.Response)
—
Returns:
updateDeploymentStrategy(params = {}, callback) ⇒ AWS.Request
Updates a deployment strategy.
Service Reference:
Examples:
To update a deployment strategy
/* The following update-deployment-strategy example updates final bake time to 20 minutes in the specified deployment strategy. ::
*/
var params = {
DeploymentStrategyId: "1225qzk",
FinalBakeTimeInMinutes: 20
};
appconfig.updateDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
DeploymentDurationInMinutes: 15,
FinalBakeTimeInMinutes: 20,
GrowthFactor: 25,
GrowthType: "LINEAR",
Id: "1225qzk",
Name: "Example-Deployment",
ReplicateTo: "SSM_DOCUMENT"
}
*/
});
Calling the updateDeploymentStrategy operation
var params = {
DeploymentStrategyId: 'STRING_VALUE', /* required */
DeploymentDurationInMinutes: 'NUMBER_VALUE',
Description: 'STRING_VALUE',
FinalBakeTimeInMinutes: 'NUMBER_VALUE',
GrowthFactor: 'NUMBER_VALUE',
GrowthType: LINEAR | EXPONENTIAL
};
appconfig.updateDeploymentStrategy(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
DeploymentStrategyId
— (String
)The deployment strategy ID.
Description
— (String
)A description of the deployment strategy.
DeploymentDurationInMinutes
— (Integer
)Total amount of time for a deployment to last.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
GrowthFactor
— (Float
)The percentage of targets to receive a deployed configuration during each interval.
GrowthType
— (String
)The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following formula:
G*(2N)
. In this formula,G
is the growth factor specified by the user andN
is the number of steps until the configuration is deployed to all targets. For example, if you specify a growth factor of 2, then the system rolls out the configuration as follows:2*(20)
2*(21)
2*(22)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
Possible values include:"LINEAR"
"EXPONENTIAL"
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The deployment strategy ID.
Name
— (String
)The name of the deployment strategy.
Description
— (String
)The description of the deployment strategy.
DeploymentDurationInMinutes
— (Integer
)Total amount of time the deployment lasted.
GrowthType
— (String
)The algorithm used to define how percentage grew over time.
Possible values include:"LINEAR"
"EXPONENTIAL"
GrowthFactor
— (Float
)The percentage of targets that received a deployed configuration during each interval.
FinalBakeTimeInMinutes
— (Integer
)The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.
ReplicateTo
— (String
)Save the deployment strategy to a Systems Manager (SSM) document.
Possible values include:"NONE"
"SSM_DOCUMENT"
-
(AWS.Response)
—
Returns:
updateEnvironment(params = {}, callback) ⇒ AWS.Request
Updates an environment.
Service Reference:
Examples:
To update an environment
/* The following update-environment example updates an environment's description. */
var params = {
ApplicationId: "339ohji",
Description: "An environment for examples.",
EnvironmentId: "54j1r29"
};
appconfig.updateEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ApplicationId: "339ohji",
Description: "An environment for examples.",
Id: "54j1r29",
Name: "Example-Environment",
State: "ROLLED_BACK"
}
*/
});
Calling the updateEnvironment operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
EnvironmentId: 'STRING_VALUE', /* required */
Description: 'STRING_VALUE',
Monitors: [
{
AlarmArn: 'STRING_VALUE', /* required */
AlarmRoleArn: 'STRING_VALUE'
},
/* more items */
],
Name: 'STRING_VALUE'
};
appconfig.updateEnvironment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
EnvironmentId
— (String
)The environment ID.
Name
— (String
)The name of the environment.
Description
— (String
)A description of the environment.
Monitors
— (Array<map>
)Amazon CloudWatch alarms to monitor during the deployment process.
AlarmArn
— required — (String
)Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
AlarmRoleArn
— (String
)ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:ApplicationId
— (String
)The application ID.
Id
— (String
)The environment ID.
Name
— (String
)The name of the environment.
Description
— (String
)The description of the environment.
State
— (String
)The state of the environment. An environment can be in one of the following states:
Possible values include:READY_FOR_DEPLOYMENT
,DEPLOYING
,ROLLING_BACK
, orROLLED_BACK
"READY_FOR_DEPLOYMENT"
"DEPLOYING"
"ROLLING_BACK"
"ROLLED_BACK"
Monitors
— (Array<map>
)Amazon CloudWatch alarms monitored during the deployment.
AlarmArn
— required — (String
)Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
AlarmRoleArn
— (String
)ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
-
(AWS.Response)
—
Returns:
updateExtension(params = {}, callback) ⇒ AWS.Request
Updates an AppConfig extension. For more information about extensions, see Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the updateExtension operation
var params = {
ExtensionIdentifier: 'STRING_VALUE', /* required */
Actions: {
'<ActionPoint>': [
{
Description: 'STRING_VALUE',
Name: 'STRING_VALUE',
RoleArn: 'STRING_VALUE',
Uri: 'STRING_VALUE'
},
/* more items */
],
/* '<ActionPoint>': ... */
},
Description: 'STRING_VALUE',
Parameters: {
'<ExtensionOrParameterName>': {
Description: 'STRING_VALUE',
Dynamic: true || false,
Required: true || false
},
/* '<ExtensionOrParameterName>': ... */
},
VersionNumber: 'NUMBER_VALUE'
};
appconfig.updateExtension(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionIdentifier
— (String
)The name, the ID, or the Amazon Resource Name (ARN) of the extension.
Description
— (String
)Information about the extension.
Actions
— (map<Array<map>>
)The actions defined in the extension.
Name
— (String
)The action name.
Description
— (String
)Information about the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
Parameters
— (map<map>
)One or more parameters for the actions called by the extension.
Description
— (String
)Information about the parameter.
Required
— (Boolean
)A parameter value must be specified in the extension association.
Dynamic
— (Boolean
)Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked
Required
.
VersionNumber
— (Integer
)The extension version number.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The system-generated ID of the extension.
Name
— (String
)The extension name.
VersionNumber
— (Integer
)The extension version number.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Description
— (String
)Information about the extension.
Actions
— (map<Array<map>>
)The actions defined in the extension.
Name
— (String
)The action name.
Description
— (String
)Information about the action.
Uri
— (String
)The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
RoleArn
— (String
)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
Parameters
— (map<map>
)The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the
CreateExtensionAssociation
API action. For Lambda extension actions, these parameters are included in the Lambda request object.Description
— (String
)Information about the parameter.
Required
— (Boolean
)A parameter value must be specified in the extension association.
Dynamic
— (Boolean
)Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked
Required
.
-
(AWS.Response)
—
Returns:
updateExtensionAssociation(params = {}, callback) ⇒ AWS.Request
Updates an association. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.
Service Reference:
Examples:
Calling the updateExtensionAssociation operation
var params = {
ExtensionAssociationId: 'STRING_VALUE', /* required */
Parameters: {
'<ExtensionOrParameterName>': 'STRING_VALUE',
/* '<ExtensionOrParameterName>': ... */
}
};
appconfig.updateExtensionAssociation(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ExtensionAssociationId
— (String
)The system-generated ID for the association.
Parameters
— (map<String>
)The parameter names and values defined in the extension.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:Id
— (String
)The system-generated ID for the association.
ExtensionArn
— (String
)The ARN of the extension defined in the association.
ResourceArn
— (String
)The ARNs of applications, configuration profiles, or environments defined in the association.
Arn
— (String
)The system-generated Amazon Resource Name (ARN) for the extension.
Parameters
— (map<String>
)The parameter names and values defined in the association.
ExtensionVersionNumber
— (Integer
)The version number for the extension defined in the association.
-
(AWS.Response)
—
Returns:
validateConfiguration(params = {}, callback) ⇒ AWS.Request
Uses the validators in a configuration profile to validate a configuration.
Service Reference:
Examples:
To validate a configuration
/* The following validate-configuration example uses the validators in a configuration profile to validate a configuration. */
var params = {
ApplicationId: "abc1234",
ConfigurationProfileId: "ur8hx2f",
ConfigurationVersion: "1"
};
appconfig.validateConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Calling the validateConfiguration operation
var params = {
ApplicationId: 'STRING_VALUE', /* required */
ConfigurationProfileId: 'STRING_VALUE', /* required */
ConfigurationVersion: 'STRING_VALUE' /* required */
};
appconfig.validateConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
ApplicationId
— (String
)The application ID.
ConfigurationProfileId
— (String
)The configuration profile ID.
ConfigurationVersion
— (String
)The version of the configuration to validate.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns: