@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.308Z") @Stability(value=Stable) public interface CfnHostedConfigurationVersionProps extends software.amazon.jsii.JsiiSerializable
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)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnHostedConfigurationVersionProps.Builder
A builder for
CfnHostedConfigurationVersionProps |
static class |
CfnHostedConfigurationVersionProps.Jsii$Proxy
An implementation for
CfnHostedConfigurationVersionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnHostedConfigurationVersionProps.Builder |
builder() |
String |
getApplicationId()
The application ID.
|
String |
getConfigurationProfileId()
The configuration profile ID.
|
String |
getContent()
The content of the configuration or the configuration data.
|
String |
getContentType()
A standard MIME type describing the format of the configuration content.
|
default String |
getDescription()
A description of the configuration.
|
default Number |
getLatestVersionNumber()
An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version.
|
@Stability(value=Stable) @NotNull String getApplicationId()
@Stability(value=Stable) @NotNull String getConfigurationProfileId()
@Stability(value=Stable) @NotNull String getContent()
@Stability(value=Stable) @NotNull String getContentType()
For more information, see Content-Type .
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Number getLatestVersionNumber()
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.
@Stability(value=Stable) static CfnHostedConfigurationVersionProps.Builder builder()
Copyright © 2022. All rights reserved.