Interface HostedConfigurationProps
- All Superinterfaces:
ConfigurationOptions,ConfigurationProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HostedConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:03.820Z")
@Stability(Stable)
public interface HostedConfigurationProps
extends software.amazon.jsii.JsiiSerializable, ConfigurationProps
Properties for HostedConfiguration.
Example:
Application app = new Application(this, "MyApp");
Environment env = Environment.Builder.create(this, "MyEnv")
.application(app)
.build();
HostedConfiguration.Builder.create(this, "MyHostedConfig")
.application(app)
.deployTo(List.of(env))
.content(ConfigurationContent.fromInlineText("This is my configuration content."))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHostedConfigurationPropsstatic final classAn implementation forHostedConfigurationProps -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.appconfig.ConfigurationOptions
getDeploymentKey, getDeploymentStrategy, getDeployTo, getDescription, getName, getType, getValidatorsMethods inherited from interface software.amazon.awscdk.services.appconfig.ConfigurationProps
getApplicationMethods 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
HostedConfigurationProps.BuilderofHostedConfigurationProps
-