AWS Fundamentals Logo
AWS Fundamentals
AWS::AppConfig::Environment

AppConfig Environment

Resource Type definition for AWS::AppConfig::Environment

Properties

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

Filter:
PropertyTypeFlags
ApplicationId
string
RequiredCreate-only
Name
string
Required
DeletionProtectionCheck
string
Write-only
Description
string
Monitors
Array<Monitor>
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
EnvironmentIdstringThe environment 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::Environment

Resources:
  MyResource:
    Type: AWS::AppConfig::Environment
    Properties:
      Name: "my-name"
      ApplicationId: "my-applicationid"
      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:GetEnvironmentappconfig:ListTagsForResource

create

appconfig:CreateEnvironmentappconfig:GetEnvironmentappconfig:ListTagsForResourceappconfig:TagResourceiam:PassRole

update

appconfig:UpdateEnvironmentappconfig:TagResourceappconfig:UntagResourceiam:PassRole

list

appconfig:ListEnvironments

delete

appconfig:GetEnvironmentappconfig:DeleteEnvironment

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
Properties7
Required2
TaggingSupported
Primary IDApplicationId

Supported Operations

ReadCreateUpdateListDelete

Immutable After Creation

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

ApplicationId

External Links