AWS Fundamentals Logo
AWS Fundamentals
AWS::AppStream::Application

AppStream Application

Resource Type definition for AWS::AppStream::Application

Properties

12 configurable properties. 6 required. Click a row to see details.

Filter:
PropertyTypeFlags
AppBlockArn
string
Required
IconS3Location
S3Location
Required
InstanceFamilies
Array<string>
RequiredCreate-only
LaunchPath
string
Required
Name
string
RequiredCreate-only
Platforms
Array<string>
RequiredCreate-only
AttributesToDelete
Array<string>
Write-only
Description
string
DisplayName
string
LaunchParameters
string
Tags
Array<Tag>
WorkingDirectory
string

Return Values

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

AttributeTypeDescription
Arnstring-
CreatedTimestring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

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

Resources:
  MyResource:
    Type: AWS::AppStream::Application
    Properties:
      Name: "my-name"
      IconS3Location: "value"
      LaunchPath: "value"
      Platforms: []
      InstanceFamilies: []
      AppBlockArn: "arn:aws:service:region:account:resource"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

s3:GetObjectappstream:CreateApplicationappstream:TagResource

read

appstream:DescribeApplicationsappstream:ListTagsForResource

update

appstream:UpdateApplicationappstream:DescribeApplicationsappstream:TagResourceappstream:UntagResources3:GetObject

delete

appstream:DeleteApplicationappstream:DescribeApplications

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

ServiceAppStream
Properties14
Required6
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDelete

Immutable After Creation

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

NameInstanceFamiliesPlatforms

External Links