enum ConfigurationType
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppConfig.ConfigurationType |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#ConfigurationType |
![]() | software.amazon.awscdk.services.appconfig.ConfigurationType |
![]() | aws_cdk.aws_appconfig.ConfigurationType |
![]() | aws-cdk-lib » aws_appconfig » ConfigurationType |
The configuration type.
Example
declare const application: appconfig.Application;
new appconfig.HostedConfiguration(this, 'MyHostedConfiguration', {
application,
content: appconfig.ConfigurationContent.fromInlineText('This is my configuration content.'),
type: appconfig.ConfigurationType.FEATURE_FLAGS,
});
Members
Name | Description |
---|---|
FREEFORM | Freeform configuration profile. |
FEATURE_FLAGS | Feature flag configuration profile. |
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.
FEATURE_FLAGS
Feature flag configuration profile.
This configuration stores its data in the AWS AppConfig hosted configuration store and the URI is simply hosted.