AWS Fundamentals Logo
AWS Fundamentals
AWS::CodeDeploy::Application

CodeDeploy Application

The AWS::CodeDeploy::Application resource creates an AWS CodeDeploy application

Properties

3 configurable properties. Click a row to see details.

Filter:
PropertyTypeFlags
ApplicationName
string
Create-only
ComputePlatform
string
Create-only
Tags
Array<Tag>

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::CodeDeploy::Application

Resources:
  MyResource:
    Type: AWS::CodeDeploy::Application
    Properties:
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

codedeploy:CreateApplicationcodedeploy:TagResource

read

codedeploy:GetApplicationcodedeploy:ListTagsForResource

delete

codedeploy:GetApplicationcodedeploy:DeleteApplication

update

codedeploy:TagResourcecodedeploy:UntagResource

list

codedeploy:ListApplications

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

ServiceCodeDeploy
Properties3
Required0
TaggingSupported
Primary IDApplicationName

Supported Operations

CreateReadDeleteUpdateList

Immutable After Creation

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

ApplicationNameComputePlatform

External Links