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-22T02:23:56.549Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHostedConfigurationProps
static final class
An implementation forHostedConfigurationProps
-
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.awscdk.services.appconfig.ConfigurationProps
getApplication
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
HostedConfigurationProps.Builder
ofHostedConfigurationProps
-