AWS::AppConfig::ExperimentDefinition

AppConfig ExperimentDefinition

Resource Type definition for AWS::AppConfig::ExperimentDefinition

Properties

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

Filter:
PropertyTypeFlags
ApplicationIdentifier
string
RequiredCreate-only
AudienceRule
string
Required
ConfigurationProfileIdentifier
string
RequiredCreate-only
Control
Treatment
Required
EnvironmentIdentifier
string
RequiredCreate-only
FlagKey
string
RequiredCreate-only
Name
string
RequiredCreate-only
Treatments
Array<Treatment>
Required
AudienceDescription
string
Hypothesis
string
LaunchCriteria
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ApplicationIdstringThe resolved application ID (read-only, assigned by service).
CreatedAtstringISO-8601 creation timestamp.
IdstringThe experiment definition ID.
StatusstringCurrent status.
UpdatedAtstringISO-8601 last update timestamp.

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

Resources:
  MyResource:
    Type: AWS::AppConfig::ExperimentDefinition
    Properties:
      ApplicationIdentifier: "my-applicationidentifier"
      Name: "my-name"
      ConfigurationProfileIdentifier: "my-configurationprofileidentifier"
      EnvironmentIdentifier: "my-environmentidentifier"
      FlagKey: "value"
      Treatments: []
      Control: "value"
      AudienceRule: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

read

appconfig:GetExperimentDefinitionappconfig:ListTagsForResource

create

appconfig:CreateExperimentDefinitionappconfig:GetExperimentDefinitionappconfig:TagResourceappconfig:ListTagsForResource

update

appconfig:UpdateExperimentDefinitionappconfig:GetExperimentDefinitionappconfig:TagResourceappconfig:UntagResourceappconfig:ListTagsForResource

list

appconfig:ListExperimentDefinitions

delete

appconfig:DeleteExperimentDefinitionappconfig:GetExperimentDefinition

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
Properties17
Required8
TaggingSupported
Primary IDApplicationId

Supported Operations

ReadCreateUpdateListDelete

Immutable After Creation

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

ApplicationIdentifierNameConfigurationProfileIdentifierEnvironmentIdentifierFlagKey

External Links