Interface HostedConfigurationProps

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-05T20:26:40.516Z") @Stability(Deprecated) @Deprecated public interface HostedConfigurationProps extends software.amazon.jsii.JsiiSerializable, ConfigurationProps
Deprecated.
(deprecated) Properties for HostedConfiguration.

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.kms.*;
 Application application;
 ConfigurationContent configurationContent;
 DeploymentStrategy deploymentStrategy;
 Environment environment;
 Key key;
 IValidator validator;
 HostedConfigurationProps hostedConfigurationProps = HostedConfigurationProps.builder()
         .application(application)
         .content(configurationContent)
         // the properties below are optional
         .deploymentKey(key)
         .deploymentStrategy(deploymentStrategy)
         .deployTo(List.of(environment))
         .description("description")
         .latestVersionNumber(123)
         .name("name")
         .type(ConfigurationType.FREEFORM)
         .validators(List.of(validator))
         .versionLabel("versionLabel")
         .build();