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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHostedConfigurationVersionPropsstatic final classAn implementation forCfnHostedConfigurationVersionProps
- 
Method SummaryModifier 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- 
getApplicationIdThe application ID.
- 
getConfigurationProfileIdThe configuration profile ID.
- 
getContentThe content of the configuration or the configuration data.
- 
getContentTypeA standard MIME type describing the format of the configuration content.For more information, see Content-Type . 
- 
getDescriptionA description of the configuration.
- 
getLatestVersionNumberAn 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. 
- 
getVersionLabelA user-defined label for an AWS AppConfig hosted configuration version.
- 
builder
 
-