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.98.0 (build 00b106d)", date="2024-05-08T21:35:02.308Z") @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();