Interface CfnHostedConfigurationVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHostedConfigurationVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.489Z")
@Stability(Stable)
public interface CfnHostedConfigurationVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnHostedConfigurationVersion.
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.*;
CfnHostedConfigurationVersionProps cfnHostedConfigurationVersionProps = CfnHostedConfigurationVersionProps.builder()
.applicationId("applicationId")
.configurationProfileId("configurationProfileId")
.content("content")
.contentType("contentType")
// the properties below are optional
.description("description")
.latestVersionNumber(123)
.versionLabel("versionLabel")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHostedConfigurationVersionPropsstatic final classAn implementation forCfnHostedConfigurationVersionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The application ID.The configuration profile ID.The content of the configuration or the configuration data.A standard MIME type describing the format of the configuration content.default StringA description of the configuration.default NumberAn optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version.default StringA user-defined label for an AWS AppConfig hosted configuration version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The application ID. -
getConfigurationProfileId
The configuration profile ID. -
getContent
The content of the configuration or the configuration data. -
getContentType
A standard MIME type describing the format of the configuration content.For more information, see Content-Type .
-
getDescription
A description of the configuration. -
getLatestVersionNumber
An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version.To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
-
getVersionLabel
A user-defined label for an AWS AppConfig hosted configuration version. -
builder
-