Interface SourcedConfigurationProps

All Superinterfaces:
ConfigurationOptions, ConfigurationProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SourcedConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:35.294Z") @Stability(Deprecated) @Deprecated public interface SourcedConfigurationProps extends software.amazon.jsii.JsiiSerializable, ConfigurationProps
Deprecated.
(deprecated) Properties for SourcedConfiguration.

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.alpha.*;
 import software.amazon.awscdk.services.iam.*;
 import software.amazon.awscdk.services.kms.*;
 Application application;
 ConfigurationSource configurationSource;
 DeploymentStrategy deploymentStrategy;
 Environment environment;
 Key key;
 Role role;
 IValidator validator;
 SourcedConfigurationProps sourcedConfigurationProps = SourcedConfigurationProps.builder()
         .application(application)
         .location(configurationSource)
         // the properties below are optional
         .deploymentKey(key)
         .deploymentStrategy(deploymentStrategy)
         .deployTo(List.of(environment))
         .description("description")
         .name("name")
         .retrievalRole(role)
         .type(ConfigurationType.FREEFORM)
         .validators(List.of(validator))
         .versionNumber("versionNumber")
         .build();