ConfigurationType

class aws_cdk.aws_appconfig.ConfigurationType(value)

Bases: Enum

The configuration type.

ExampleMetadata:

infused

Example:

# application: appconfig.Application


appconfig.HostedConfiguration(self, "MyHostedConfiguration",
    application=application,
    content=appconfig.ConfigurationContent.from_inline_text("This is my configuration content."),
    type=appconfig.ConfigurationType.FEATURE_FLAGS
)

Attributes

FEATURE_FLAGS

Feature flag configuration profile.

This configuration stores its data in the AWS AppConfig hosted configuration store and the URI is simply hosted.

FREEFORM

Freeform configuration profile.

Allows you to store your data in the AWS AppConfig hosted configuration store or another Systems Manager capability or AWS service that integrates with AWS AppConfig.

See:

https://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-free-form-configurations-creating.html