@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.297Z") @Stability(value=Stable) public interface CfnConfigurationProfileProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appconfig.*;
CfnConfigurationProfileProps cfnConfigurationProfileProps = CfnConfigurationProfileProps.builder()
.applicationId("applicationId")
.locationUri("locationUri")
.name("name")
// the properties below are optional
.description("description")
.retrievalRoleArn("retrievalRoleArn")
.tags(List.of(TagsProperty.builder()
.key("key")
.value("value")
.build()))
.type("type")
.validators(List.of(ValidatorsProperty.builder()
.content("content")
.type("type")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfigurationProfileProps.Builder
A builder for
CfnConfigurationProfileProps |
static class |
CfnConfigurationProfileProps.Jsii$Proxy
An implementation for
CfnConfigurationProfileProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfigurationProfileProps.Builder |
builder() |
String |
getApplicationId()
The application ID.
|
default String |
getDescription()
A description of the configuration profile.
|
String |
getLocationUri()
A URI to locate the configuration.
|
String |
getName()
A name for the configuration profile.
|
default String |
getRetrievalRoleArn()
The ARN of an IAM role with permission to access the configuration at the specified `LocationUri` .
|
default List<CfnConfigurationProfile.TagsProperty> |
getTags()
Metadata to assign to the configuration profile.
|
default String |
getType()
The type of configurations contained in the profile.
|
default Object |
getValidators()
A list of methods for validating the configuration.
|
@Stability(value=Stable) @NotNull String getApplicationId()
@Stability(value=Stable) @NotNull String getLocationUri()
You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store and for feature flags, specify hosted . For an SSM document, specify either the document name in the format ssm-document://<Document_name> or the Amazon Resource Name (ARN). For a parameter, specify either the parameter name in the format ssm-parameter://<Parameter_name> or the ARN. For an Amazon S3 object, specify the URI in the following format: s3://<bucket>/<objectKey> . Here is an example: s3://my-bucket/my-app/us-east-1/my-config.json
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getRetrievalRoleArn()
A retrieval role ARN is not required for configurations stored in the AWS AppConfig hosted configuration store. It is required for all other sources that store your configuration.
@Stability(value=Stable) @Nullable default List<CfnConfigurationProfile.TagsProperty> getTags()
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
@Stability(value=Stable) @Nullable default String getType()
AWS AppConfig supports feature flags and freeform configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values for Type :
AWS.AppConfig.FeatureFlags
AWS.Freeform
@Stability(value=Stable) @Nullable default Object getValidators()
@Stability(value=Stable) static CfnConfigurationProfileProps.Builder builder()
Copyright © 2022. All rights reserved.