Interface HostedConfigurationOptions
- All Superinterfaces:
ConfigurationOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HostedConfigurationOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:56.549Z")
@Stability(Stable)
public interface HostedConfigurationOptions
extends software.amazon.jsii.JsiiSerializable, ConfigurationOptions
Options 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.*; import software.amazon.awscdk.services.kms.*; ConfigurationContent configurationContent; DeploymentStrategy deploymentStrategy; Environment environment; Key key; IValidator validator; HostedConfigurationOptions hostedConfigurationOptions = HostedConfigurationOptions.builder() .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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHostedConfigurationOptions
static final class
An implementation forHostedConfigurationOptions
-
Method Summary
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
-
getContent
The content of the hosted configuration. -
getLatestVersionNumber
The latest version number of the hosted configuration.Default: - None.
-
getVersionLabel
The version label of the hosted configuration.Default: - None.
-
builder
- Returns:
- a
HostedConfigurationOptions.Builder
ofHostedConfigurationOptions
-