AWS Fundamentals Logo
AWS Fundamentals
AWS::Amplify::App

Amplify App

The AWS::Amplify::App resource creates Apps in the Amplify Console. An App is a collection of branches.

Properties

18 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
Required
AccessToken
string
Write-only
AutoBranchCreationConfig
AutoBranchCreationConfig
Write-only
BasicAuthConfig
BasicAuthConfig
Write-only
BuildSpec
string
CacheConfig
CacheConfig
ComputeRoleArn
string
CustomHeaders
string
CustomRules
Array<CustomRule>
Description
string
EnableBranchAutoDeletion
boolean
EnvironmentVariables
Array<EnvironmentVariable>
IAMServiceRole
string
JobConfig
JobConfig
OauthToken
string
Write-only
Platform
string
Repository
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
AppIdstring-
AppNamestring-
Arnstring-
DefaultDomainstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Amplify::App

Resources:
  MyResource:
    Type: AWS::Amplify::App
    Properties:
      Name: "my-name"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

amplify:GetAppamplify:CreateAppamplify:TagResourcecodecommit:GetRepositorycodecommit:PutRepositoryTriggerscodecommit:GetRepositoryTriggerssns:CreateTopicsns:Subscribe

delete

amplify:GetAppamplify:DeleteAppcodecommit:GetRepositorycodecommit:GetRepositoryTriggerscodecommit:PutRepositoryTriggerssns:Unsubscribeiam:PassRole

list

amplify:GetAppamplify:ListAppsamplify:ListTagsForResourceiam:PassRole

read

amplify:GetAppamplify:ListTagsForResourcecodecommit:GetRepositorycodecommit:GetRepositoryTriggersiam:PassRole

update

amplify:GetAppamplify:UpdateAppamplify:ListTagsForResourceamplify:TagResourceamplify:UntagResourcecodecommit:GetRepositorycodecommit:PutRepositoryTriggerscodecommit:GetRepositoryTriggers

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

ServiceAmplify
Properties22
Required1
TaggingSupported
Primary IDArn

Supported Operations

CreateDeleteListReadUpdate

Related Resources

External Links