{ "version": "2.0", "metadata": { "apiVersion": "2019-10-09", "endpointPrefix": "appconfig", "jsonVersion": "1.1", "protocol": "rest-json", "serviceAbbreviation": "AppConfig", "serviceFullName": "Amazon AppConfig", "serviceId": "AppConfig", "signatureVersion": "v4", "signingName": "appconfig", "uid": "appconfig-2019-10-09" }, "operations": { "CreateApplication": { "name": "CreateApplication", "http": { "method": "POST", "requestUri": "/applications", "responseCode": 201 }, "input": { "shape": "CreateApplicationRequest" }, "output": { "shape": "Application" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ServiceQuotaExceededException" }, { "shape": "InternalServerException" } ], "documentation": "

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.

" }, "CreateConfigurationProfile": { "name": "CreateConfigurationProfile", "http": { "method": "POST", "requestUri": "/applications/{ApplicationId}/configurationprofiles", "responseCode": 201 }, "input": { "shape": "CreateConfigurationProfileRequest" }, "output": { "shape": "ConfigurationProfile" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "ServiceQuotaExceededException" } ], "documentation": "

Creates a configuration profile, which is information that enables AppConfig to access the configuration source. Valid configuration sources include the following:

A configuration profile includes the following information:

For more information, see Create a Configuration and a Configuration Profile in the AppConfig User Guide.

" }, "CreateDeploymentStrategy": { "name": "CreateDeploymentStrategy", "http": { "method": "POST", "requestUri": "/deploymentstrategies", "responseCode": 201 }, "input": { "shape": "CreateDeploymentStrategyRequest" }, "output": { "shape": "DeploymentStrategy" }, "errors": [ { "shape": "InternalServerException" }, { "shape": "ServiceQuotaExceededException" }, { "shape": "BadRequestException" } ], "documentation": "

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.

" }, "CreateEnvironment": { "name": "CreateEnvironment", "http": { "method": "POST", "requestUri": "/applications/{ApplicationId}/environments", "responseCode": 201 }, "input": { "shape": "CreateEnvironmentRequest" }, "output": { "shape": "Environment" }, "errors": [ { "shape": "InternalServerException" }, { "shape": "ResourceNotFoundException" }, { "shape": "BadRequestException" }, { "shape": "ServiceQuotaExceededException" } ], "documentation": "

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.

" }, "CreateExtension": { "name": "CreateExtension", "http": { "method": "POST", "requestUri": "/extensions", "responseCode": 201 }, "input": { "shape": "CreateExtensionRequest" }, "output": { "shape": "Extension" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ConflictException" }, { "shape": "ServiceQuotaExceededException" }, { "shape": "InternalServerException" } ], "documentation": "

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 more information about extensions, see Extending workflows in the AppConfig User Guide.

" }, "CreateExtensionAssociation": { "name": "CreateExtensionAssociation", "http": { "method": "POST", "requestUri": "/extensionassociations", "responseCode": 201 }, "input": { "shape": "CreateExtensionAssociationRequest" }, "output": { "shape": "ExtensionAssociation" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "ServiceQuotaExceededException" } ], "documentation": "

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.

" }, "CreateHostedConfigurationVersion": { "name": "CreateHostedConfigurationVersion", "http": { "method": "POST", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions", "responseCode": 201 }, "input": { "shape": "CreateHostedConfigurationVersionRequest" }, "output": { "shape": "HostedConfigurationVersion" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ServiceQuotaExceededException" }, { "shape": "ResourceNotFoundException" }, { "shape": "ConflictException" }, { "shape": "PayloadTooLargeException" }, { "shape": "InternalServerException" } ], "documentation": "

Creates a new configuration in the AppConfig hosted configuration store.

" }, "DeleteApplication": { "name": "DeleteApplication", "http": { "method": "DELETE", "requestUri": "/applications/{ApplicationId}", "responseCode": 204 }, "input": { "shape": "DeleteApplicationRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Deletes an application. Deleting an application does not delete a configuration from a host.

" }, "DeleteConfigurationProfile": { "name": "DeleteConfigurationProfile", "http": { "method": "DELETE", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", "responseCode": 204 }, "input": { "shape": "DeleteConfigurationProfileRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "ConflictException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Deletes a configuration profile. Deleting a configuration profile does not delete a configuration from a host.

" }, "DeleteDeploymentStrategy": { "name": "DeleteDeploymentStrategy", "http": { "method": "DELETE", "requestUri": "/deployementstrategies/{DeploymentStrategyId}", "responseCode": 204 }, "input": { "shape": "DeleteDeploymentStrategyRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Deletes a deployment strategy. Deleting a deployment strategy does not delete a configuration from a host.

" }, "DeleteEnvironment": { "name": "DeleteEnvironment", "http": { "method": "DELETE", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}", "responseCode": 204 }, "input": { "shape": "DeleteEnvironmentRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "ConflictException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Deletes an environment. Deleting an environment does not delete a configuration from a host.

" }, "DeleteExtension": { "name": "DeleteExtension", "http": { "method": "DELETE", "requestUri": "/extensions/{ExtensionIdentifier}", "responseCode": 204 }, "input": { "shape": "DeleteExtensionRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Deletes an AppConfig extension. You must delete all associations to an extension before you delete the extension.

" }, "DeleteExtensionAssociation": { "name": "DeleteExtensionAssociation", "http": { "method": "DELETE", "requestUri": "/extensionassociations/{ExtensionAssociationId}", "responseCode": 204 }, "input": { "shape": "DeleteExtensionAssociationRequest" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Deletes an extension association. This action doesn't delete extensions defined in the association.

" }, "DeleteHostedConfigurationVersion": { "name": "DeleteHostedConfigurationVersion", "http": { "method": "DELETE", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}", "responseCode": 204 }, "input": { "shape": "DeleteHostedConfigurationVersionRequest" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Deletes a version of a configuration from the AppConfig hosted configuration store.

" }, "GetApplication": { "name": "GetApplication", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}", "responseCode": 200 }, "input": { "shape": "GetApplicationRequest" }, "output": { "shape": "Application" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Retrieves information about an application.

" }, "GetConfiguration": { "name": "GetConfiguration", "http": { "method": "GET", "requestUri": "/applications/{Application}/environments/{Environment}/configurations/{Configuration}", "responseCode": 200 }, "input": { "shape": "GetConfigurationRequest" }, "output": { "shape": "Configuration" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

(Deprecated) Retrieves the latest deployed configuration.

Note the following important information.

", "deprecated": true, "deprecatedMessage": "This API has been deprecated in favor of the GetLatestConfiguration API used in conjunction with StartConfigurationSession." }, "GetConfigurationProfile": { "name": "GetConfigurationProfile", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", "responseCode": 200 }, "input": { "shape": "GetConfigurationProfileRequest" }, "output": { "shape": "ConfigurationProfile" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Retrieves information about a configuration profile.

" }, "GetDeployment": { "name": "GetDeployment", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", "responseCode": 200 }, "input": { "shape": "GetDeploymentRequest" }, "output": { "shape": "Deployment" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Retrieves information about a configuration deployment.

" }, "GetDeploymentStrategy": { "name": "GetDeploymentStrategy", "http": { "method": "GET", "requestUri": "/deploymentstrategies/{DeploymentStrategyId}", "responseCode": 200 }, "input": { "shape": "GetDeploymentStrategyRequest" }, "output": { "shape": "DeploymentStrategy" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

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.

" }, "GetEnvironment": { "name": "GetEnvironment", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}", "responseCode": 200 }, "input": { "shape": "GetEnvironmentRequest" }, "output": { "shape": "Environment" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

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.

" }, "GetExtension": { "name": "GetExtension", "http": { "method": "GET", "requestUri": "/extensions/{ExtensionIdentifier}", "responseCode": 200 }, "input": { "shape": "GetExtensionRequest" }, "output": { "shape": "Extension" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Returns information about an AppConfig extension.

" }, "GetExtensionAssociation": { "name": "GetExtensionAssociation", "http": { "method": "GET", "requestUri": "/extensionassociations/{ExtensionAssociationId}", "responseCode": 200 }, "input": { "shape": "GetExtensionAssociationRequest" }, "output": { "shape": "ExtensionAssociation" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Returns information about an AppConfig extension association. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.

" }, "GetHostedConfigurationVersion": { "name": "GetHostedConfigurationVersion", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions/{VersionNumber}", "responseCode": 200 }, "input": { "shape": "GetHostedConfigurationVersionRequest" }, "output": { "shape": "HostedConfigurationVersion" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Retrieves information about a specific configuration version.

" }, "ListApplications": { "name": "ListApplications", "http": { "method": "GET", "requestUri": "/applications", "responseCode": 200 }, "input": { "shape": "ListApplicationsRequest" }, "output": { "shape": "Applications" }, "errors": [ { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Lists all applications in your Amazon Web Services account.

" }, "ListConfigurationProfiles": { "name": "ListConfigurationProfiles", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/configurationprofiles", "responseCode": 200 }, "input": { "shape": "ListConfigurationProfilesRequest" }, "output": { "shape": "ConfigurationProfiles" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Lists the configuration profiles for an application.

" }, "ListDeploymentStrategies": { "name": "ListDeploymentStrategies", "http": { "method": "GET", "requestUri": "/deploymentstrategies", "responseCode": 200 }, "input": { "shape": "ListDeploymentStrategiesRequest" }, "output": { "shape": "DeploymentStrategies" }, "errors": [ { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Lists deployment strategies.

" }, "ListDeployments": { "name": "ListDeployments", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", "responseCode": 200 }, "input": { "shape": "ListDeploymentsRequest" }, "output": { "shape": "Deployments" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Lists the deployments for an environment in descending deployment number order.

" }, "ListEnvironments": { "name": "ListEnvironments", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/environments", "responseCode": 200 }, "input": { "shape": "ListEnvironmentsRequest" }, "output": { "shape": "Environments" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Lists the environments for an application.

" }, "ListExtensionAssociations": { "name": "ListExtensionAssociations", "http": { "method": "GET", "requestUri": "/extensionassociations", "responseCode": 200 }, "input": { "shape": "ListExtensionAssociationsRequest" }, "output": { "shape": "ExtensionAssociations" }, "errors": [ { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Lists all AppConfig extension associations in the account. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.

" }, "ListExtensions": { "name": "ListExtensions", "http": { "method": "GET", "requestUri": "/extensions", "responseCode": 200 }, "input": { "shape": "ListExtensionsRequest" }, "output": { "shape": "Extensions" }, "errors": [ { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

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.

" }, "ListHostedConfigurationVersions": { "name": "ListHostedConfigurationVersions", "http": { "method": "GET", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/hostedconfigurationversions", "responseCode": 200 }, "input": { "shape": "ListHostedConfigurationVersionsRequest" }, "output": { "shape": "HostedConfigurationVersions" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Lists configurations stored in the AppConfig hosted configuration store by version.

" }, "ListTagsForResource": { "name": "ListTagsForResource", "http": { "method": "GET", "requestUri": "/tags/{ResourceArn}", "responseCode": 200 }, "input": { "shape": "ListTagsForResourceRequest" }, "output": { "shape": "ResourceTags" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "BadRequestException" }, { "shape": "InternalServerException" } ], "documentation": "

Retrieves the list of key-value tags assigned to the resource.

" }, "StartDeployment": { "name": "StartDeployment", "http": { "method": "POST", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments", "responseCode": 201 }, "input": { "shape": "StartDeploymentRequest" }, "output": { "shape": "Deployment" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "ConflictException" }, { "shape": "InternalServerException" } ], "documentation": "

Starts a deployment.

" }, "StopDeployment": { "name": "StopDeployment", "http": { "method": "DELETE", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}/deployments/{DeploymentNumber}", "responseCode": 202 }, "input": { "shape": "StopDeploymentRequest" }, "output": { "shape": "Deployment" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" }, { "shape": "BadRequestException" } ], "documentation": "

Stops a deployment. This API action works only on deployments that have a status of DEPLOYING. This action moves the deployment to a status of ROLLED_BACK.

" }, "TagResource": { "name": "TagResource", "http": { "method": "POST", "requestUri": "/tags/{ResourceArn}", "responseCode": 204 }, "input": { "shape": "TagResourceRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "BadRequestException" }, { "shape": "InternalServerException" } ], "documentation": "

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.

" }, "UntagResource": { "name": "UntagResource", "http": { "method": "DELETE", "requestUri": "/tags/{ResourceArn}", "responseCode": 204 }, "input": { "shape": "UntagResourceRequest" }, "errors": [ { "shape": "ResourceNotFoundException" }, { "shape": "BadRequestException" }, { "shape": "InternalServerException" } ], "documentation": "

Deletes a tag key and value from an AppConfig resource.

" }, "UpdateApplication": { "name": "UpdateApplication", "http": { "method": "PATCH", "requestUri": "/applications/{ApplicationId}", "responseCode": 200 }, "input": { "shape": "UpdateApplicationRequest" }, "output": { "shape": "Application" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Updates an application.

" }, "UpdateConfigurationProfile": { "name": "UpdateConfigurationProfile", "http": { "method": "PATCH", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}", "responseCode": 200 }, "input": { "shape": "UpdateConfigurationProfileRequest" }, "output": { "shape": "ConfigurationProfile" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Updates a configuration profile.

" }, "UpdateDeploymentStrategy": { "name": "UpdateDeploymentStrategy", "http": { "method": "PATCH", "requestUri": "/deploymentstrategies/{DeploymentStrategyId}", "responseCode": 200 }, "input": { "shape": "UpdateDeploymentStrategyRequest" }, "output": { "shape": "DeploymentStrategy" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Updates a deployment strategy.

" }, "UpdateEnvironment": { "name": "UpdateEnvironment", "http": { "method": "PATCH", "requestUri": "/applications/{ApplicationId}/environments/{EnvironmentId}", "responseCode": 200 }, "input": { "shape": "UpdateEnvironmentRequest" }, "output": { "shape": "Environment" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Updates an environment.

" }, "UpdateExtension": { "name": "UpdateExtension", "http": { "method": "PATCH", "requestUri": "/extensions/{ExtensionIdentifier}", "responseCode": 200 }, "input": { "shape": "UpdateExtensionRequest" }, "output": { "shape": "Extension" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "ConflictException" }, { "shape": "InternalServerException" } ], "documentation": "

Updates an AppConfig extension. For more information about extensions, see Extending workflows in the AppConfig User Guide.

" }, "UpdateExtensionAssociation": { "name": "UpdateExtensionAssociation", "http": { "method": "PATCH", "requestUri": "/extensionassociations/{ExtensionAssociationId}", "responseCode": 200 }, "input": { "shape": "UpdateExtensionAssociationRequest" }, "output": { "shape": "ExtensionAssociation" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Updates an association. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.

" }, "ValidateConfiguration": { "name": "ValidateConfiguration", "http": { "method": "POST", "requestUri": "/applications/{ApplicationId}/configurationprofiles/{ConfigurationProfileId}/validators", "responseCode": 204 }, "input": { "shape": "ValidateConfigurationRequest" }, "errors": [ { "shape": "BadRequestException" }, { "shape": "ResourceNotFoundException" }, { "shape": "InternalServerException" } ], "documentation": "

Uses the validators in a configuration profile to validate a configuration.

" } }, "shapes": { "Action": { "type": "structure", "members": { "Name": { "shape": "Name", "documentation": "

The action name.

" }, "Description": { "shape": "Description", "documentation": "

Information about the action.

" }, "Uri": { "shape": "Uri", "documentation": "

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": { "shape": "Arn", "documentation": "

An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

" } }, "documentation": "

An action defines the tasks that the extension performs during the AppConfig workflow. Each action includes an action point such as ON_CREATE_HOSTED_CONFIGURATION, PRE_DEPLOYMENT, or ON_DEPLOYMENT. Each action also includes a name, a URI to an Lambda function, and an Amazon Resource Name (ARN) for an Identity and Access Management assume role. You specify the name, URI, and ARN for each action point defined in the extension. You can specify the following actions for an extension:

" }, "ActionInvocation": { "type": "structure", "members": { "ExtensionIdentifier": { "shape": "Identifier", "documentation": "

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

" }, "ActionName": { "shape": "Name", "documentation": "

The name of the action.

" }, "Uri": { "shape": "Uri", "documentation": "

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": { "shape": "Arn", "documentation": "

An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

" }, "ErrorMessage": { "shape": "String", "documentation": "

The error message when an extension invocation fails.

" }, "ErrorCode": { "shape": "String", "documentation": "

The error code when an extension invocation fails.

" }, "InvocationId": { "shape": "Id", "documentation": "

A system-generated ID for this invocation.

" } }, "documentation": "

An extension that was invoked as part of a deployment event.

" }, "ActionInvocations": { "type": "list", "member": { "shape": "ActionInvocation" } }, "ActionList": { "type": "list", "member": { "shape": "Action" }, "max": 1, "min": 1 }, "ActionPoint": { "type": "string", "enum": [ "PRE_CREATE_HOSTED_CONFIGURATION_VERSION", "PRE_START_DEPLOYMENT", "ON_DEPLOYMENT_START", "ON_DEPLOYMENT_STEP", "ON_DEPLOYMENT_BAKING", "ON_DEPLOYMENT_COMPLETE", "ON_DEPLOYMENT_ROLLED_BACK" ] }, "ActionsMap": { "type": "map", "key": { "shape": "ActionPoint" }, "value": { "shape": "ActionList" }, "max": 5, "min": 1 }, "Application": { "type": "structure", "members": { "Id": { "shape": "Id", "documentation": "

The application ID.

" }, "Name": { "shape": "Name", "documentation": "

The application name.

" }, "Description": { "shape": "Description", "documentation": "

The description of the application.

" } } }, "ApplicationList": { "type": "list", "member": { "shape": "Application" } }, "Applications": { "type": "structure", "members": { "Items": { "shape": "ApplicationList", "documentation": "

The elements from this collection.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "AppliedExtension": { "type": "structure", "members": { "ExtensionId": { "shape": "Id", "documentation": "

The system-generated ID of the extension.

" }, "ExtensionAssociationId": { "shape": "Id", "documentation": "

The system-generated ID for the association.

" }, "VersionNumber": { "shape": "Integer", "documentation": "

The extension version number.

" }, "Parameters": { "shape": "ParameterValueMap", "documentation": "

One or more parameters for the actions called by the extension.

" } }, "documentation": "

An extension that was invoked during a deployment.

" }, "AppliedExtensions": { "type": "list", "member": { "shape": "AppliedExtension" } }, "Arn": { "type": "string", "max": 2048, "min": 20, "pattern": "arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1})?:(\\d{12})?:[a-zA-Z0-9-_/:.]+" }, "Blob": { "type": "blob", "sensitive": true }, "Boolean": { "type": "boolean" }, "Configuration": { "type": "structure", "members": { "Content": { "shape": "Blob", "documentation": "

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 and ClientConfigurationVersion matches the version of the current configuration, AppConfig returns a 204 No Content HTTP response code and the Content value will be empty.

" }, "ConfigurationVersion": { "shape": "Version", "documentation": "

The configuration version.

", "location": "header", "locationName": "Configuration-Version" }, "ContentType": { "shape": "String", "documentation": "

A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

", "location": "header", "locationName": "Content-Type" } }, "payload": "Content" }, "ConfigurationProfile": { "type": "structure", "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

" }, "Id": { "shape": "Id", "documentation": "

The configuration profile ID.

" }, "Name": { "shape": "LongName", "documentation": "

The name of the configuration profile.

" }, "Description": { "shape": "Description", "documentation": "

The configuration profile description.

" }, "LocationUri": { "shape": "Uri", "documentation": "

The URI location of the configuration.

" }, "RetrievalRoleArn": { "shape": "RoleArn", "documentation": "

The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

" }, "Validators": { "shape": "ValidatorList", "documentation": "

A list of methods for validating the configuration.

" }, "Type": { "shape": "ConfigurationProfileType", "documentation": "

The type of configurations contained in the profile. AppConfig supports feature flags and freeform 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 for Type:

AWS.AppConfig.FeatureFlags

AWS.Freeform

" }, "KmsKeyArn": { "shape": "Arn", "documentation": "

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": { "shape": "KmsKeyIdentifier", "documentation": "

The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.

" } } }, "ConfigurationProfileSummary": { "type": "structure", "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

" }, "Id": { "shape": "Id", "documentation": "

The ID of the configuration profile.

" }, "Name": { "shape": "LongName", "documentation": "

The name of the configuration profile.

" }, "LocationUri": { "shape": "Uri", "documentation": "

The URI location of the configuration.

" }, "ValidatorTypes": { "shape": "ValidatorTypeList", "documentation": "

The types of validators in the configuration profile.

" }, "Type": { "shape": "ConfigurationProfileType", "documentation": "

The type of configurations contained in the profile. AppConfig supports feature flags and freeform 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 for Type:

AWS.AppConfig.FeatureFlags

AWS.Freeform

" } }, "documentation": "

A summary of a configuration profile.

" }, "ConfigurationProfileSummaryList": { "type": "list", "member": { "shape": "ConfigurationProfileSummary" } }, "ConfigurationProfileType": { "type": "string", "pattern": "^[a-zA-Z\\.]+" }, "ConfigurationProfiles": { "type": "structure", "members": { "Items": { "shape": "ConfigurationProfileSummaryList", "documentation": "

The elements from this collection.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "CreateApplicationRequest": { "type": "structure", "required": [ "Name" ], "members": { "Name": { "shape": "Name", "documentation": "

A name for the application.

" }, "Description": { "shape": "Description", "documentation": "

A description of the application.

" }, "Tags": { "shape": "TagMap", "documentation": "

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.

" } } }, "CreateConfigurationProfileRequest": { "type": "structure", "required": [ "ApplicationId", "Name", "LocationUri" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "Name": { "shape": "LongName", "documentation": "

A name for the configuration profile.

" }, "Description": { "shape": "Description", "documentation": "

A description of the configuration profile.

" }, "LocationUri": { "shape": "Uri", "documentation": "

A URI to locate the configuration. You can specify the following:

" }, "RetrievalRoleArn": { "shape": "RoleArn", "documentation": "

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": { "shape": "ValidatorList", "documentation": "

A list of methods for validating the configuration.

" }, "Tags": { "shape": "TagMap", "documentation": "

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": { "shape": "ConfigurationProfileType", "documentation": "

The type of configurations contained in the profile. AppConfig supports feature flags and freeform 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 for Type:

AWS.AppConfig.FeatureFlags

AWS.Freeform

" }, "KmsKeyIdentifier": { "shape": "KmsKeyIdentifier", "documentation": "

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.

" } } }, "CreateDeploymentStrategyRequest": { "type": "structure", "required": [ "Name", "DeploymentDurationInMinutes", "GrowthFactor" ], "members": { "Name": { "shape": "Name", "documentation": "

A name for the deployment strategy.

" }, "Description": { "shape": "Description", "documentation": "

A description of the deployment strategy.

" }, "DeploymentDurationInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

Total amount of time for a deployment to last.

", "box": true }, "FinalBakeTimeInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

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": { "shape": "GrowthFactor", "documentation": "

The percentage of targets to receive a deployed configuration during each interval.

", "box": true }, "GrowthType": { "shape": "GrowthType", "documentation": "

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 a Step 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*(2^N). In this formula, G is the growth factor specified by the user and N 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*(2^0)

2*(2^1)

2*(2^2)

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.

" }, "ReplicateTo": { "shape": "ReplicateTo", "documentation": "

Save the deployment strategy to a Systems Manager (SSM) document.

" }, "Tags": { "shape": "TagMap", "documentation": "

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.

" } } }, "CreateEnvironmentRequest": { "type": "structure", "required": [ "ApplicationId", "Name" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "Name": { "shape": "Name", "documentation": "

A name for the environment.

" }, "Description": { "shape": "Description", "documentation": "

A description of the environment.

" }, "Monitors": { "shape": "MonitorList", "documentation": "

Amazon CloudWatch alarms to monitor during the deployment process.

" }, "Tags": { "shape": "TagMap", "documentation": "

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.

" } } }, "CreateExtensionAssociationRequest": { "type": "structure", "required": [ "ExtensionIdentifier", "ResourceIdentifier" ], "members": { "ExtensionIdentifier": { "shape": "Identifier", "documentation": "

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

" }, "ExtensionVersionNumber": { "shape": "Integer", "documentation": "

The version number of the extension. If not specified, AppConfig uses the maximum version of the extension.

", "box": true }, "ResourceIdentifier": { "shape": "Identifier", "documentation": "

The ARN of an application, configuration profile, or environment.

" }, "Parameters": { "shape": "ParameterValueMap", "documentation": "

The parameter names and values defined in the extensions. Extension parameters marked Required must be entered for this field.

" }, "Tags": { "shape": "TagMap", "documentation": "

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.

" } } }, "CreateExtensionRequest": { "type": "structure", "required": [ "Name", "Actions" ], "members": { "Name": { "shape": "ExtensionOrParameterName", "documentation": "

A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

" }, "Description": { "shape": "Description", "documentation": "

Information about the extension.

" }, "Actions": { "shape": "ActionsMap", "documentation": "

The actions defined in the extension.

" }, "Parameters": { "shape": "ParameterMap", "documentation": "

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.

" }, "Tags": { "shape": "TagMap", "documentation": "

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": { "shape": "Integer", "documentation": "

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.

", "box": true, "location": "header", "locationName": "Latest-Version-Number" } } }, "CreateHostedConfigurationVersionRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId", "Content", "ContentType" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

", "location": "uri", "locationName": "ConfigurationProfileId" }, "Description": { "shape": "Description", "documentation": "

A description of the configuration.

", "location": "header", "locationName": "Description" }, "Content": { "shape": "Blob", "documentation": "

The content of the configuration or the configuration data.

" }, "ContentType": { "shape": "StringWithLengthBetween1And255", "documentation": "

A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

", "location": "header", "locationName": "Content-Type" }, "LatestVersionNumber": { "shape": "Integer", "documentation": "

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.

", "box": true, "location": "header", "locationName": "Latest-Version-Number" }, "VersionLabel": { "shape": "VersionLabel", "documentation": "

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\".

", "location": "header", "locationName": "VersionLabel" } }, "payload": "Content" }, "DeleteApplicationRequest": { "type": "structure", "required": [ "ApplicationId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The ID of the application to delete.

", "location": "uri", "locationName": "ApplicationId" } } }, "DeleteConfigurationProfileRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID that includes the configuration profile you want to delete.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The ID of the configuration profile you want to delete.

", "location": "uri", "locationName": "ConfigurationProfileId" } } }, "DeleteDeploymentStrategyRequest": { "type": "structure", "required": [ "DeploymentStrategyId" ], "members": { "DeploymentStrategyId": { "shape": "DeploymentStrategyId", "documentation": "

The ID of the deployment strategy you want to delete.

", "location": "uri", "locationName": "DeploymentStrategyId" } } }, "DeleteEnvironmentRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID that includes the environment that you want to delete.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The ID of the environment that you want to delete.

", "location": "uri", "locationName": "EnvironmentId" } } }, "DeleteExtensionAssociationRequest": { "type": "structure", "required": [ "ExtensionAssociationId" ], "members": { "ExtensionAssociationId": { "shape": "Id", "documentation": "

The ID of the extension association to delete.

", "location": "uri", "locationName": "ExtensionAssociationId" } } }, "DeleteExtensionRequest": { "type": "structure", "required": [ "ExtensionIdentifier" ], "members": { "ExtensionIdentifier": { "shape": "Identifier", "documentation": "

The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.

", "location": "uri", "locationName": "ExtensionIdentifier" }, "VersionNumber": { "shape": "Integer", "documentation": "

A specific version of an extension to delete. If omitted, the highest version is deleted.

", "box": true, "location": "querystring", "locationName": "version" } } }, "DeleteHostedConfigurationVersionRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId", "VersionNumber" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

", "location": "uri", "locationName": "ConfigurationProfileId" }, "VersionNumber": { "shape": "Integer", "documentation": "

The versions number to delete.

", "location": "uri", "locationName": "VersionNumber" } } }, "Deployment": { "type": "structure", "members": { "ApplicationId": { "shape": "Id", "documentation": "

The ID of the application that was deployed.

" }, "EnvironmentId": { "shape": "Id", "documentation": "

The ID of the environment that was deployed.

" }, "DeploymentStrategyId": { "shape": "Id", "documentation": "

The ID of the deployment strategy that was deployed.

" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The ID of the configuration profile that was deployed.

" }, "DeploymentNumber": { "shape": "Integer", "documentation": "

The sequence number of the deployment.

" }, "ConfigurationName": { "shape": "Name", "documentation": "

The name of the configuration.

" }, "ConfigurationLocationUri": { "shape": "Uri", "documentation": "

Information about the source location of the configuration.

" }, "ConfigurationVersion": { "shape": "Version", "documentation": "

The configuration version that was deployed.

" }, "Description": { "shape": "Description", "documentation": "

The description of the deployment.

" }, "DeploymentDurationInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

Total amount of time the deployment lasted.

" }, "GrowthType": { "shape": "GrowthType", "documentation": "

The algorithm used to define how percentage grew over time.

" }, "GrowthFactor": { "shape": "Percentage", "documentation": "

The percentage of targets to receive a deployed configuration during each interval.

" }, "FinalBakeTimeInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.

" }, "State": { "shape": "DeploymentState", "documentation": "

The state of the deployment.

" }, "EventLog": { "shape": "DeploymentEvents", "documentation": "

A list containing all events related to a deployment. The most recent events are displayed first.

" }, "PercentageComplete": { "shape": "Percentage", "documentation": "

The percentage of targets for which the deployment is available.

" }, "StartedAt": { "shape": "Iso8601DateTime", "documentation": "

The time the deployment started.

" }, "CompletedAt": { "shape": "Iso8601DateTime", "documentation": "

The time the deployment completed.

" }, "AppliedExtensions": { "shape": "AppliedExtensions", "documentation": "

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.

" }, "KmsKeyArn": { "shape": "Arn", "documentation": "

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": { "shape": "KmsKeyIdentifier", "documentation": "

The Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.

" }, "VersionLabel": { "shape": "VersionLabel", "documentation": "

A user-defined label for an AppConfig hosted configuration version.

" } } }, "DeploymentEvent": { "type": "structure", "members": { "EventType": { "shape": "DeploymentEventType", "documentation": "

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.

" }, "TriggeredBy": { "shape": "TriggeredBy", "documentation": "

The entity that triggered the deployment event. Events can be triggered by a user, AppConfig, an Amazon CloudWatch alarm, or an internal error.

" }, "Description": { "shape": "Description", "documentation": "

A description of the deployment event. Descriptions include, but are not limited to, the following:

" }, "ActionInvocations": { "shape": "ActionInvocations", "documentation": "

The list of extensions that were invoked as part of the deployment.

" }, "OccurredAt": { "shape": "Iso8601DateTime", "documentation": "

The date and time the event occurred.

" } }, "documentation": "

An object that describes a deployment event.

" }, "DeploymentEventType": { "type": "string", "enum": [ "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED" ] }, "DeploymentEvents": { "type": "list", "member": { "shape": "DeploymentEvent" } }, "DeploymentList": { "type": "list", "member": { "shape": "DeploymentSummary" } }, "DeploymentState": { "type": "string", "enum": [ "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK" ] }, "DeploymentStrategies": { "type": "structure", "members": { "Items": { "shape": "DeploymentStrategyList", "documentation": "

The elements from this collection.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "DeploymentStrategy": { "type": "structure", "members": { "Id": { "shape": "Id", "documentation": "

The deployment strategy ID.

" }, "Name": { "shape": "Name", "documentation": "

The name of the deployment strategy.

" }, "Description": { "shape": "Description", "documentation": "

The description of the deployment strategy.

" }, "DeploymentDurationInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

Total amount of time the deployment lasted.

" }, "GrowthType": { "shape": "GrowthType", "documentation": "

The algorithm used to define how percentage grew over time.

" }, "GrowthFactor": { "shape": "Percentage", "documentation": "

The percentage of targets that received a deployed configuration during each interval.

" }, "FinalBakeTimeInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.

" }, "ReplicateTo": { "shape": "ReplicateTo", "documentation": "

Save the deployment strategy to a Systems Manager (SSM) document.

" } } }, "DeploymentStrategyId": { "type": "string", "pattern": "(^[a-z0-9]{4,7}$|^AppConfig\\.[A-Za-z0-9]{9,40}$)" }, "DeploymentStrategyList": { "type": "list", "member": { "shape": "DeploymentStrategy" } }, "DeploymentSummary": { "type": "structure", "members": { "DeploymentNumber": { "shape": "Integer", "documentation": "

The sequence number of the deployment.

" }, "ConfigurationName": { "shape": "Name", "documentation": "

The name of the configuration.

" }, "ConfigurationVersion": { "shape": "Version", "documentation": "

The version of the configuration.

" }, "DeploymentDurationInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

Total amount of time the deployment lasted.

" }, "GrowthType": { "shape": "GrowthType", "documentation": "

The algorithm used to define how percentage grows over time.

" }, "GrowthFactor": { "shape": "Percentage", "documentation": "

The percentage of targets to receive a deployed configuration during each interval.

" }, "FinalBakeTimeInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

The amount of time that AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.

" }, "State": { "shape": "DeploymentState", "documentation": "

The state of the deployment.

" }, "PercentageComplete": { "shape": "Percentage", "documentation": "

The percentage of targets for which the deployment is available.

" }, "StartedAt": { "shape": "Iso8601DateTime", "documentation": "

Time the deployment started.

" }, "CompletedAt": { "shape": "Iso8601DateTime", "documentation": "

Time the deployment completed.

" }, "VersionLabel": { "shape": "VersionLabel", "documentation": "

A user-defined label for an AppConfig hosted configuration version.

" } }, "documentation": "

Information about the deployment.

" }, "Deployments": { "type": "structure", "members": { "Items": { "shape": "DeploymentList", "documentation": "

The elements from this collection.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "Description": { "type": "string", "max": 1024, "min": 0 }, "DynamicParameterKey": { "type": "string", "pattern": "^([^#\\n]{1,96})#([^\\/#\\n]{1,64})$" }, "DynamicParameterMap": { "type": "map", "key": { "shape": "DynamicParameterKey" }, "value": { "shape": "StringWithLengthBetween1And2048" }, "max": 10, "min": 1 }, "Environment": { "type": "structure", "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

" }, "Id": { "shape": "Id", "documentation": "

The environment ID.

" }, "Name": { "shape": "Name", "documentation": "

The name of the environment.

" }, "Description": { "shape": "Description", "documentation": "

The description of the environment.

" }, "State": { "shape": "EnvironmentState", "documentation": "

The state of the environment. An environment can be in one of the following states: READY_FOR_DEPLOYMENT, DEPLOYING, ROLLING_BACK, or ROLLED_BACK

" }, "Monitors": { "shape": "MonitorList", "documentation": "

Amazon CloudWatch alarms monitored during the deployment.

" } } }, "EnvironmentList": { "type": "list", "member": { "shape": "Environment" } }, "EnvironmentState": { "type": "string", "enum": [ "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK" ] }, "Environments": { "type": "structure", "members": { "Items": { "shape": "EnvironmentList", "documentation": "

The elements from this collection.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "Extension": { "type": "structure", "members": { "Id": { "shape": "Id", "documentation": "

The system-generated ID of the extension.

" }, "Name": { "shape": "Name", "documentation": "

The extension name.

" }, "VersionNumber": { "shape": "Integer", "documentation": "

The extension version number.

" }, "Arn": { "shape": "Arn", "documentation": "

The system-generated Amazon Resource Name (ARN) for the extension.

" }, "Description": { "shape": "Description", "documentation": "

Information about the extension.

" }, "Actions": { "shape": "ActionsMap", "documentation": "

The actions defined in the extension.

" }, "Parameters": { "shape": "ParameterMap", "documentation": "

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.

" } } }, "ExtensionAssociation": { "type": "structure", "members": { "Id": { "shape": "Identifier", "documentation": "

The system-generated ID for the association.

" }, "ExtensionArn": { "shape": "Arn", "documentation": "

The ARN of the extension defined in the association.

" }, "ResourceArn": { "shape": "Arn", "documentation": "

The ARNs of applications, configuration profiles, or environments defined in the association.

" }, "Arn": { "shape": "Arn", "documentation": "

The system-generated Amazon Resource Name (ARN) for the extension.

" }, "Parameters": { "shape": "ParameterValueMap", "documentation": "

The parameter names and values defined in the association.

" }, "ExtensionVersionNumber": { "shape": "Integer", "documentation": "

The version number for the extension defined in the association.

" } } }, "ExtensionAssociationSummaries": { "type": "list", "member": { "shape": "ExtensionAssociationSummary" } }, "ExtensionAssociationSummary": { "type": "structure", "members": { "Id": { "shape": "Identifier", "documentation": "

The extension association ID. This ID is used to call other ExtensionAssociation API actions such as GetExtensionAssociation or DeleteExtensionAssociation.

" }, "ExtensionArn": { "shape": "Arn", "documentation": "

The system-generated Amazon Resource Name (ARN) for the extension.

" }, "ResourceArn": { "shape": "Arn", "documentation": "

The ARNs of applications, configuration profiles, or environments defined in the association.

" } }, "documentation": "

Information about an association between an extension and an AppConfig resource such as an application, environment, or configuration profile. Call GetExtensionAssociation to get more information about an association.

" }, "ExtensionAssociations": { "type": "structure", "members": { "Items": { "shape": "ExtensionAssociationSummaries", "documentation": "

The list of extension associations. Each item represents an extension association to an application, environment, or configuration profile.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "ExtensionOrParameterName": { "type": "string", "pattern": "^[^\\/#:\\n]{1,64}$" }, "ExtensionSummaries": { "type": "list", "member": { "shape": "ExtensionSummary" } }, "ExtensionSummary": { "type": "structure", "members": { "Id": { "shape": "Id", "documentation": "

The system-generated ID of the extension.

" }, "Name": { "shape": "Name", "documentation": "

The extension name.

" }, "VersionNumber": { "shape": "Integer", "documentation": "

The extension version number.

" }, "Arn": { "shape": "Arn", "documentation": "

The system-generated Amazon Resource Name (ARN) for the extension.

" }, "Description": { "shape": "Description", "documentation": "

Information about the extension.

" } }, "documentation": "

Information about an extension. Call GetExtension to get more information about an extension.

" }, "Extensions": { "type": "structure", "members": { "Items": { "shape": "ExtensionSummaries", "documentation": "

The list of available extensions. The list includes Amazon Web Services authored and user-created extensions.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "GetApplicationRequest": { "type": "structure", "required": [ "ApplicationId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The ID of the application you want to get.

", "location": "uri", "locationName": "ApplicationId" } } }, "GetConfigurationProfileRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The ID of the application that includes the configuration profile you want to get.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The ID of the configuration profile that you want to get.

", "location": "uri", "locationName": "ConfigurationProfileId" } } }, "GetConfigurationRequest": { "type": "structure", "required": [ "Application", "Environment", "Configuration", "ClientId" ], "members": { "Application": { "shape": "StringWithLengthBetween1And64", "documentation": "

The application to get. Specify either the application name or the application ID.

", "location": "uri", "locationName": "Application" }, "Environment": { "shape": "StringWithLengthBetween1And64", "documentation": "

The environment to get. Specify either the environment name or the environment ID.

", "location": "uri", "locationName": "Environment" }, "Configuration": { "shape": "StringWithLengthBetween1And64", "documentation": "

The configuration to get. Specify either the configuration name or the configuration ID.

", "location": "uri", "locationName": "Configuration" }, "ClientId": { "shape": "StringWithLengthBetween1And64", "documentation": "

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.

", "location": "querystring", "locationName": "client_id" }, "ClientConfigurationVersion": { "shape": "Version", "documentation": "

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 send ClientConfigurationVersion 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 for ClientConfigurationVersion comes from the ConfigurationVersion 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.

", "location": "querystring", "locationName": "client_configuration_version" } } }, "GetDeploymentRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId", "DeploymentNumber" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The ID of the application that includes the deployment you want to get.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The ID of the environment that includes the deployment you want to get.

", "location": "uri", "locationName": "EnvironmentId" }, "DeploymentNumber": { "shape": "Integer", "documentation": "

The sequence number of the deployment.

", "box": true, "location": "uri", "locationName": "DeploymentNumber" } } }, "GetDeploymentStrategyRequest": { "type": "structure", "required": [ "DeploymentStrategyId" ], "members": { "DeploymentStrategyId": { "shape": "DeploymentStrategyId", "documentation": "

The ID of the deployment strategy to get.

", "location": "uri", "locationName": "DeploymentStrategyId" } } }, "GetEnvironmentRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The ID of the application that includes the environment you want to get.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The ID of the environment that you want to get.

", "location": "uri", "locationName": "EnvironmentId" } } }, "GetExtensionAssociationRequest": { "type": "structure", "required": [ "ExtensionAssociationId" ], "members": { "ExtensionAssociationId": { "shape": "Id", "documentation": "

The extension association ID to get.

", "location": "uri", "locationName": "ExtensionAssociationId" } } }, "GetExtensionRequest": { "type": "structure", "required": [ "ExtensionIdentifier" ], "members": { "ExtensionIdentifier": { "shape": "Identifier", "documentation": "

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

", "location": "uri", "locationName": "ExtensionIdentifier" }, "VersionNumber": { "shape": "Integer", "documentation": "

The extension version number. If no version number was defined, AppConfig uses the highest version.

", "box": true, "location": "querystring", "locationName": "version_number" } } }, "GetHostedConfigurationVersionRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId", "VersionNumber" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

", "location": "uri", "locationName": "ConfigurationProfileId" }, "VersionNumber": { "shape": "Integer", "documentation": "

The version.

", "location": "uri", "locationName": "VersionNumber" } } }, "GrowthFactor": { "type": "float", "max": 100, "min": 1 }, "GrowthType": { "type": "string", "enum": [ "LINEAR", "EXPONENTIAL" ] }, "HostedConfigurationVersion": { "type": "structure", "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "header", "locationName": "Application-Id" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

", "location": "header", "locationName": "Configuration-Profile-Id" }, "VersionNumber": { "shape": "Integer", "documentation": "

The configuration version.

", "location": "header", "locationName": "Version-Number" }, "Description": { "shape": "Description", "documentation": "

A description of the configuration.

", "location": "header", "locationName": "Description" }, "Content": { "shape": "Blob", "documentation": "

The content of the configuration or the configuration data.

" }, "ContentType": { "shape": "StringWithLengthBetween1And255", "documentation": "

A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

", "location": "header", "locationName": "Content-Type" }, "VersionLabel": { "shape": "VersionLabel", "documentation": "

A user-defined label for an AppConfig hosted configuration version.

", "location": "header", "locationName": "VersionLabel" }, "KmsKeyArn": { "shape": "Arn", "documentation": "

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.

", "location": "header", "locationName": "KmsKeyArn" } }, "payload": "Content" }, "HostedConfigurationVersionSummary": { "type": "structure", "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

" }, "VersionNumber": { "shape": "Integer", "documentation": "

The configuration version.

" }, "Description": { "shape": "Description", "documentation": "

A description of the configuration.

" }, "ContentType": { "shape": "StringWithLengthBetween1And255", "documentation": "

A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

" }, "VersionLabel": { "shape": "VersionLabel", "documentation": "

A user-defined label for an AppConfig hosted configuration version.

" }, "KmsKeyArn": { "shape": "Arn", "documentation": "

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.

" } }, "documentation": "

Information about the configuration.

" }, "HostedConfigurationVersionSummaryList": { "type": "list", "member": { "shape": "HostedConfigurationVersionSummary" } }, "HostedConfigurationVersions": { "type": "structure", "members": { "Items": { "shape": "HostedConfigurationVersionSummaryList", "documentation": "

The elements from this collection.

" }, "NextToken": { "shape": "NextToken", "documentation": "

The token for the next set of items to return. Use this token to get the next set of results.

" } } }, "Id": { "type": "string", "pattern": "[a-z0-9]{4,7}" }, "Identifier": { "type": "string", "max": 2048, "min": 1 }, "Integer": { "type": "integer" }, "Iso8601DateTime": { "type": "timestamp", "timestampFormat": "iso8601" }, "KmsKeyIdentifier": { "type": "string", "max": 2048, "min": 1 }, "KmsKeyIdentifierOrEmpty": { "type": "string", "max": 2048, "min": 0 }, "ListApplicationsRequest": { "type": "structure", "members": { "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

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.

", "location": "querystring", "locationName": "next_token" } } }, "ListConfigurationProfilesRequest": { "type": "structure", "required": [ "ApplicationId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

A token to start the list. Use this token to get the next set of results.

", "location": "querystring", "locationName": "next_token" }, "Type": { "shape": "ConfigurationProfileType", "documentation": "

A filter based on the type of configurations that the configuration profile contains. A configuration can be a feature flag or a freeform configuration.

", "location": "querystring", "locationName": "type" } } }, "ListDeploymentStrategiesRequest": { "type": "structure", "members": { "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

A token to start the list. Use this token to get the next set of results.

", "location": "querystring", "locationName": "next_token" } } }, "ListDeploymentsRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The environment ID.

", "location": "uri", "locationName": "EnvironmentId" }, "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

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.

", "location": "querystring", "locationName": "next_token" } } }, "ListEnvironmentsRequest": { "type": "structure", "required": [ "ApplicationId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

A token to start the list. Use this token to get the next set of results.

", "location": "querystring", "locationName": "next_token" } } }, "ListExtensionAssociationsRequest": { "type": "structure", "members": { "ResourceIdentifier": { "shape": "Arn", "documentation": "

The ARN of an application, configuration profile, or environment.

", "location": "querystring", "locationName": "resource_identifier" }, "ExtensionIdentifier": { "shape": "Identifier", "documentation": "

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

", "location": "querystring", "locationName": "extension_identifier" }, "ExtensionVersionNumber": { "shape": "Integer", "documentation": "

The version number for the extension defined in the association.

", "box": true, "location": "querystring", "locationName": "extension_version_number" }, "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

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.

", "location": "querystring", "locationName": "next_token" } } }, "ListExtensionsRequest": { "type": "structure", "members": { "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

A token to start the list. Use this token to get the next set of results.

", "location": "querystring", "locationName": "next_token" }, "Name": { "shape": "QueryName", "documentation": "

The extension name.

", "location": "querystring", "locationName": "name" } } }, "ListHostedConfigurationVersionsRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

", "location": "uri", "locationName": "ConfigurationProfileId" }, "MaxResults": { "shape": "MaxResults", "documentation": "

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.

", "box": true, "location": "querystring", "locationName": "max_results" }, "NextToken": { "shape": "NextToken", "documentation": "

A token to start the list. Use this token to get the next set of results.

", "location": "querystring", "locationName": "next_token" }, "VersionLabel": { "shape": "QueryName", "documentation": "

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.

", "location": "querystring", "locationName": "version_label" } } }, "ListTagsForResourceRequest": { "type": "structure", "required": [ "ResourceArn" ], "members": { "ResourceArn": { "shape": "Arn", "documentation": "

The resource ARN.

", "location": "uri", "locationName": "ResourceArn" } } }, "LongName": { "type": "string", "max": 128, "min": 1 }, "MaxResults": { "type": "integer", "max": 50, "min": 1 }, "MinutesBetween0And24Hours": { "type": "integer", "max": 1440, "min": 0 }, "Monitor": { "type": "structure", "required": [ "AlarmArn" ], "members": { "AlarmArn": { "shape": "StringWithLengthBetween1And2048", "documentation": "

Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.

" }, "AlarmRoleArn": { "shape": "RoleArn", "documentation": "

ARN of an Identity and Access Management (IAM) role for AppConfig to monitor AlarmArn.

" } }, "documentation": "

Amazon CloudWatch alarms to monitor during the deployment process.

" }, "MonitorList": { "type": "list", "member": { "shape": "Monitor" }, "max": 5, "min": 0 }, "Name": { "type": "string", "max": 64, "min": 1 }, "NextToken": { "type": "string", "max": 2048, "min": 1 }, "Parameter": { "type": "structure", "members": { "Description": { "shape": "Description", "documentation": "

Information about the parameter.

" }, "Required": { "shape": "Boolean", "documentation": "

A parameter value must be specified in the extension association.

" }, "Dynamic": { "shape": "Boolean", "documentation": "

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.

" } }, "documentation": "

A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked. Parameter values are specified in an extension association. For more information about extensions, see Extending workflows in the AppConfig User Guide.

" }, "ParameterMap": { "type": "map", "key": { "shape": "ExtensionOrParameterName" }, "value": { "shape": "Parameter" }, "max": 10, "min": 1 }, "ParameterValueMap": { "type": "map", "key": { "shape": "ExtensionOrParameterName" }, "value": { "shape": "StringWithLengthBetween1And2048" }, "max": 10, "min": 0 }, "Percentage": { "type": "float", "max": 100, "min": 1 }, "QueryName": { "type": "string", "max": 64, "min": 1 }, "ReplicateTo": { "type": "string", "enum": [ "NONE", "SSM_DOCUMENT" ] }, "ResourceTags": { "type": "structure", "members": { "Tags": { "shape": "TagMap", "documentation": "

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.

" } } }, "RoleArn": { "type": "string", "max": 2048, "min": 20, "pattern": "^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):(iam)::\\d{12}:role[/].*)$" }, "StartDeploymentRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId", "DeploymentStrategyId", "ConfigurationProfileId", "ConfigurationVersion" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The environment ID.

", "location": "uri", "locationName": "EnvironmentId" }, "DeploymentStrategyId": { "shape": "DeploymentStrategyId", "documentation": "

The deployment strategy ID.

" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

" }, "ConfigurationVersion": { "shape": "Version", "documentation": "

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": { "shape": "Description", "documentation": "

A description of the deployment.

" }, "Tags": { "shape": "TagMap", "documentation": "

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": { "shape": "KmsKeyIdentifier", "documentation": "

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": { "shape": "DynamicParameterMap", "documentation": "

A map of dynamic extension parameter names to values to pass to associated extensions with PRE_START_DEPLOYMENT actions.

" } } }, "StopDeploymentRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId", "DeploymentNumber" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The environment ID.

", "location": "uri", "locationName": "EnvironmentId" }, "DeploymentNumber": { "shape": "Integer", "documentation": "

The sequence number of the deployment.

", "box": true, "location": "uri", "locationName": "DeploymentNumber" } } }, "String": { "type": "string" }, "StringWithLengthBetween0And32768": { "type": "string", "max": 32768, "min": 0, "sensitive": true }, "StringWithLengthBetween1And2048": { "type": "string", "max": 2048, "min": 1 }, "StringWithLengthBetween1And255": { "type": "string", "max": 255, "min": 1 }, "StringWithLengthBetween1And64": { "type": "string", "max": 64, "min": 1 }, "TagKey": { "type": "string", "max": 128, "min": 1 }, "TagKeyList": { "type": "list", "member": { "shape": "TagKey" }, "max": 50, "min": 0 }, "TagMap": { "type": "map", "key": { "shape": "TagKey" }, "value": { "shape": "TagValue" }, "max": 50, "min": 0 }, "TagResourceRequest": { "type": "structure", "required": [ "ResourceArn", "Tags" ], "members": { "ResourceArn": { "shape": "Arn", "documentation": "

The ARN of the resource for which to retrieve tags.

", "location": "uri", "locationName": "ResourceArn" }, "Tags": { "shape": "TagMap", "documentation": "

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.

" } } }, "TagValue": { "type": "string", "max": 256 }, "TriggeredBy": { "type": "string", "enum": [ "USER", "APPCONFIG", "CLOUDWATCH_ALARM", "INTERNAL_ERROR" ] }, "UntagResourceRequest": { "type": "structure", "required": [ "ResourceArn", "TagKeys" ], "members": { "ResourceArn": { "shape": "Arn", "documentation": "

The ARN of the resource for which to remove tags.

", "location": "uri", "locationName": "ResourceArn" }, "TagKeys": { "shape": "TagKeyList", "documentation": "

The tag keys to delete.

", "location": "querystring", "locationName": "tagKeys" } } }, "UpdateApplicationRequest": { "type": "structure", "required": [ "ApplicationId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "Name": { "shape": "Name", "documentation": "

The name of the application.

" }, "Description": { "shape": "Description", "documentation": "

A description of the application.

" } } }, "UpdateConfigurationProfileRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The ID of the configuration profile.

", "location": "uri", "locationName": "ConfigurationProfileId" }, "Name": { "shape": "Name", "documentation": "

The name of the configuration profile.

" }, "Description": { "shape": "Description", "documentation": "

A description of the configuration profile.

" }, "RetrievalRoleArn": { "shape": "RoleArn", "documentation": "

The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

" }, "Validators": { "shape": "ValidatorList", "documentation": "

A list of methods for validating the configuration.

" }, "KmsKeyIdentifier": { "shape": "KmsKeyIdentifierOrEmpty", "documentation": "

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.

" } } }, "UpdateDeploymentStrategyRequest": { "type": "structure", "required": [ "DeploymentStrategyId" ], "members": { "DeploymentStrategyId": { "shape": "DeploymentStrategyId", "documentation": "

The deployment strategy ID.

", "location": "uri", "locationName": "DeploymentStrategyId" }, "Description": { "shape": "Description", "documentation": "

A description of the deployment strategy.

" }, "DeploymentDurationInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

Total amount of time for a deployment to last.

", "box": true }, "FinalBakeTimeInMinutes": { "shape": "MinutesBetween0And24Hours", "documentation": "

The amount of time that AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.

", "box": true }, "GrowthFactor": { "shape": "GrowthFactor", "documentation": "

The percentage of targets to receive a deployed configuration during each interval.

", "box": true }, "GrowthType": { "shape": "GrowthType", "documentation": "

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*(2^N). In this formula, G is the growth factor specified by the user and N 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*(2^0)

2*(2^1)

2*(2^2)

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.

" } } }, "UpdateEnvironmentRequest": { "type": "structure", "required": [ "ApplicationId", "EnvironmentId" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "EnvironmentId": { "shape": "Id", "documentation": "

The environment ID.

", "location": "uri", "locationName": "EnvironmentId" }, "Name": { "shape": "Name", "documentation": "

The name of the environment.

" }, "Description": { "shape": "Description", "documentation": "

A description of the environment.

" }, "Monitors": { "shape": "MonitorList", "documentation": "

Amazon CloudWatch alarms to monitor during the deployment process.

" } } }, "UpdateExtensionAssociationRequest": { "type": "structure", "required": [ "ExtensionAssociationId" ], "members": { "ExtensionAssociationId": { "shape": "Id", "documentation": "

The system-generated ID for the association.

", "location": "uri", "locationName": "ExtensionAssociationId" }, "Parameters": { "shape": "ParameterValueMap", "documentation": "

The parameter names and values defined in the extension.

" } } }, "UpdateExtensionRequest": { "type": "structure", "required": [ "ExtensionIdentifier" ], "members": { "ExtensionIdentifier": { "shape": "Identifier", "documentation": "

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

", "location": "uri", "locationName": "ExtensionIdentifier" }, "Description": { "shape": "Description", "documentation": "

Information about the extension.

" }, "Actions": { "shape": "ActionsMap", "documentation": "

The actions defined in the extension.

" }, "Parameters": { "shape": "ParameterMap", "documentation": "

One or more parameters for the actions called by the extension.

" }, "VersionNumber": { "shape": "Integer", "documentation": "

The extension version number.

", "box": true } } }, "Uri": { "type": "string", "max": 2048, "min": 1 }, "ValidateConfigurationRequest": { "type": "structure", "required": [ "ApplicationId", "ConfigurationProfileId", "ConfigurationVersion" ], "members": { "ApplicationId": { "shape": "Id", "documentation": "

The application ID.

", "location": "uri", "locationName": "ApplicationId" }, "ConfigurationProfileId": { "shape": "Id", "documentation": "

The configuration profile ID.

", "location": "uri", "locationName": "ConfigurationProfileId" }, "ConfigurationVersion": { "shape": "Version", "documentation": "

The version of the configuration to validate.

", "location": "querystring", "locationName": "configuration_version" } } }, "Validator": { "type": "structure", "required": [ "Type", "Content" ], "members": { "Type": { "shape": "ValidatorType", "documentation": "

AppConfig supports validators of type JSON_SCHEMA and LAMBDA

" }, "Content": { "shape": "StringWithLengthBetween0And32768", "documentation": "

Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.

" } }, "documentation": "

A validator provides a syntactic or semantic check to ensure the configuration that you want to deploy functions as intended. To validate your application configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.

" }, "ValidatorList": { "type": "list", "member": { "shape": "Validator" }, "max": 2, "min": 0 }, "ValidatorType": { "type": "string", "enum": [ "JSON_SCHEMA", "LAMBDA" ] }, "ValidatorTypeList": { "type": "list", "member": { "shape": "ValidatorType" }, "max": 2, "min": 0 }, "Version": { "type": "string", "max": 1024, "min": 1 }, "VersionLabel": { "type": "string", "max": 64, "min": 1, "pattern": ".*[^0-9].*" } }, "documentation": "

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.

AppConfig is a capability of Amazon Web Services Systems Manager.

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:

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 or Production environment, Lambda functions, or containers. You can also define environments for application subcomponents, such as the Web, Mobile, and Back-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:

When you call the StartDeployment API action, AppConfig performs the following tasks:

  1. Retrieves the configuration data from the underlying data store by using the location URI in the configuration profile.

  2. Verifies the configuration data is syntactically and semantically correct by using the validators you specified when you created your configuration profile.

  3. 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.

" }