Interface ConfigurationProps
- All Superinterfaces:
ConfigurationOptions
,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
HostedConfigurationProps
,SourcedConfigurationProps
- All Known Implementing Classes:
ConfigurationProps.Jsii$Proxy
,HostedConfigurationProps.Jsii$Proxy
,SourcedConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:03.808Z")
@Stability(Stable)
public interface ConfigurationProps
extends software.amazon.jsii.JsiiSerializable, ConfigurationOptions
Properties for the Configuration construct.
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.*; import software.amazon.awscdk.services.kms.*; Application application; DeploymentStrategy deploymentStrategy; Environment environment; Key key; IValidator validator; ConfigurationProps configurationProps = ConfigurationProps.builder() .application(application) // the properties below are optional .deploymentKey(key) .deploymentStrategy(deploymentStrategy) .deployTo(List.of(environment)) .description("description") .name("name") .type(ConfigurationType.FREEFORM) .validators(List.of(validator)) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forConfigurationProps
static final class
An implementation forConfigurationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigurationProps.Builder
builder()
The application associated with the configuration.Methods inherited from interface software.amazon.awscdk.services.appconfig.ConfigurationOptions
getDeploymentKey, getDeploymentStrategy, getDeployTo, getDescription, getName, getType, getValidators
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplication
The application associated with the configuration. -
builder
- Returns:
- a
ConfigurationProps.Builder
ofConfigurationProps
-