AWS Fundamentals Logo
AWS Fundamentals
AWS::AppConfig::DeploymentStrategy

AppConfig DeploymentStrategy

Resource Type definition for AWS::AppConfig::DeploymentStrategy

Properties

8 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
DeploymentDurationInMinutes
number
Required
GrowthFactor
number
Required
Name
string
RequiredCreate-only
ReplicateTo
string
RequiredCreate-only
Description
string
FinalBakeTimeInMinutes
number
GrowthType
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
IdstringThe deployment strategy ID.

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::DeploymentStrategy

Resources:
  MyResource:
    Type: AWS::AppConfig::DeploymentStrategy
    Properties:
      DeploymentDurationInMinutes: 1
      GrowthFactor: 1
      Name: "my-name"
      ReplicateTo: "NONE"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

appconfig:CreateDeploymentStrategyappconfig:TagResource

read

appconfig:GetDeploymentStrategyappconfig:ListTagsForResource

update

appconfig:UpdateDeploymentStrategyappconfig:TagResourceappconfig:UntagResource

delete

appconfig:DeleteDeploymentStrategy

list

appconfig:ListDeploymentStrategies

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
Properties9
Required4
TaggingSupported
Primary IDId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

NameReplicateTo

External Links