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.125.0 (build fdbe357)", date="2026-01-23T11:19:39.192Z") @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.*;
 import software.amazon.awscdk.interfaces.appconfig.*;
 Application application;
 IDeploymentStrategyRef deploymentStrategyRef;
 Environment environment;
 Key key;
 IValidator validator;
 ConfigurationProps configurationProps = ConfigurationProps.builder()
         .application(application)
         // the properties below are optional
         .deletionProtectionCheck(DeletionProtectionCheck.ACCOUNT_DEFAULT)
         .deploymentKey(key)
         .deploymentStrategy(deploymentStrategyRef)
         .deployTo(List.of(environment))
         .description("description")
         .name("name")
         .type(ConfigurationType.FREEFORM)
         .validators(List.of(validator))
         .build();