AWS Fundamentals Logo
AWS Fundamentals
AWS::AppConfig::Deployment

AppConfig Deployment

Resource Type definition for AWS::AppConfig::Deployment

Properties

9 configurable properties. 5 required. Click a row to see details.

Filter:
PropertyTypeFlags
ApplicationId
string
RequiredCreate-only
ConfigurationProfileId
string
RequiredCreate-only
ConfigurationVersion
string
RequiredCreate-only
DeploymentStrategyId
string
RequiredCreate-only
EnvironmentId
string
RequiredCreate-only
Description
string
Create-only
DynamicExtensionParameters
Array<DynamicExtensionParameters>
Create-onlyWrite-only
KmsKeyIdentifier
string
Create-only
Tags
Array<Tag>
Create-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
DeploymentNumberstringThe sequence number of the deployment.
StatestringThe state of the deployment.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::AppConfig::Deployment

Resources:
  MyResource:
    Type: AWS::AppConfig::Deployment
    Properties:
      ApplicationId: "my-applicationid"
      ConfigurationProfileId: "my-configurationprofileid"
      DeploymentStrategyId: "my-deploymentstrategyid"
      EnvironmentId: "my-environmentid"
      ConfigurationVersion: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

read

appconfig:GetDeploymentappconfig:ListTagsForResource

create

appconfig:StartDeploymentappconfig:GetDeploymentappconfig:TagResourceappconfig:ListTagsForResourcekms:GenerateDataKey

list

appconfig:ListDeployments

delete

appconfig:StopDeployment

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceAppConfig
Properties11
Required5
TaggingSupported
Primary IDApplicationId

Supported Operations

ReadCreateListDelete

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ApplicationIdConfigurationProfileIdDeploymentStrategyIdEnvironmentIdDescriptionConfigurationVersionKmsKeyIdentifierDynamicExtensionParametersTags

External Links