Interface SourcedConfigurationProps
- All Superinterfaces:
ConfigurationOptions
,ConfigurationProps
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SourcedConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:12:51.923Z")
@Stability(Stable)
public interface SourcedConfigurationProps
extends software.amazon.jsii.JsiiSerializable, ConfigurationProps
Properties for SourcedConfiguration.
Example:
Application application; Bucket bucket; SourcedConfiguration.Builder.create(this, "MySourcedConfiguration") .application(application) .location(ConfigurationSource.fromBucket(bucket, "path/to/file.json")) .type(ConfigurationType.FEATURE_FLAGS) .name("MyConfig") .description("This is my sourced configuration from CDK.") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSourcedConfigurationProps
static final class
An implementation forSourcedConfigurationProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.appconfig.ConfigurationOptions
getDeploymentKey, getDeploymentStrategy, getDeployTo, getDescription, getName, getType, getValidators
Methods inherited from interface software.amazon.awscdk.services.appconfig.ConfigurationProps
getApplication
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocation
The location where the configuration is stored. -
getRetrievalRole
The IAM role to retrieve the configuration.Default: - Auto generated if location type is not ConfigurationSourceType.CODE_PIPELINE otherwise no role specified.
-
getVersionNumber
The version number of the sourced configuration to deploy.If this is not specified, then there will be no deployment.
Default: - None.
-
builder
- Returns:
- a
SourcedConfigurationProps.Builder
ofSourcedConfigurationProps
-