AWS Fundamentals Logo
AWS Fundamentals
AWS::AppConfig::ConfigurationProfile

AppConfig ConfigurationProfile

An example resource schema demonstrating some basic constructs and validation rules.

Properties

10 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
ApplicationId
string
RequiredCreate-only
LocationUri
string
RequiredCreate-only
Name
string
Required
DeletionProtectionCheck
string
Write-only
Description
string
KmsKeyIdentifier
string
RetrievalRoleArn
string
Tags
Array<Tags>
Type
string
Create-only
Validators
Array<Validators>

Return Values

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

AttributeTypeDescription
ConfigurationProfileIdstringThe configuration profile ID
KmsKeyArnstringThe Amazon Resource Name of the AWS Key Management Service key to encrypt new configuration data versions in the AWS AppConfig hosted configuration store. This attribute is only used for hosted configuration types. To encrypt data managed in other configuration stores, see the documentation for h...

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

Resources:
  MyResource:
    Type: AWS::AppConfig::ConfigurationProfile
    Properties:
      LocationUri: "value"
      ApplicationId: "my-applicationid"
      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.

read

appconfig:GetConfigurationProfileappconfig:ListTagsForResource

create

appconfig:CreateConfigurationProfileappconfig:GetConfigurationProfileappconfig:TagResourceappconfig:ListTagsForResourceiam:PassRole

update

appconfig:UpdateConfigurationProfileappconfig:TagResourceappconfig:UntagResourceiam:PassRole

list

appconfig:ListConfigurationProfiles

delete

appconfig:DeleteConfigurationProfile

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
Properties12
Required3
TaggingSupported
Primary IDApplicationId

Supported Operations

ReadCreateUpdateListDelete

Immutable After Creation

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

LocationUriTypeApplicationId

External Links