AWS Fundamentals Logo
AWS Fundamentals
AWS::AppConfig::HostedConfigurationVersion

AppConfig HostedConfigurationVersion

Resource Type definition for AWS::AppConfig::HostedConfigurationVersion

Properties

7 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
ApplicationId
string
RequiredCreate-only
ConfigurationProfileId
string
RequiredCreate-only
Content
string
RequiredCreate-only
ContentType
string
RequiredCreate-only
Description
string
Create-only
LatestVersionNumber
integer
Create-onlyWrite-only
VersionLabel
string
Create-only

Return Values

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

AttributeTypeDescription
VersionNumberstringCurrent version number of hosted configuration version.

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

Resources:
  MyResource:
    Type: AWS::AppConfig::HostedConfigurationVersion
    Properties:
      ApplicationId: "my-applicationid"
      ConfigurationProfileId: "my-configurationprofileid"
      Content: "value"
      ContentType: "value"
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

read

appconfig:GetHostedConfigurationVersion

create

appconfig:CreateHostedConfigurationVersion

list

appconfig:ListHostedConfigurationVersions

delete

appconfig:DeleteHostedConfigurationVersion

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
Properties8
Required4
TaggingNot supported
Primary IDApplicationId

Supported Operations

ReadCreateListDelete

Immutable After Creation

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

ApplicationIdConfigurationProfileIdDescriptionContentContentTypeLatestVersionNumberVersionLabel

External Links