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();
 
  • Method Details

    • getApplicationId

      @Stability(Stable) @NotNull String getApplicationId()
      The application ID.
    • getConfigurationProfileId

      @Stability(Stable) @NotNull String getConfigurationProfileId()
      The configuration profile ID.
    • getContent

      @Stability(Stable) @NotNull String getContent()
      The content of the configuration or the configuration data.
    • getContentType

      @Stability(Stable) @NotNull String getContentType()
      A standard MIME type describing the format of the configuration content.

      For more information, see Content-Type .

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description of the configuration.
    • getLatestVersionNumber

      @Stability(Stable) @Nullable default Number 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

      @Stability(Stable) @Nullable default String getVersionLabel()
      A user-defined label for an AWS AppConfig hosted configuration version.
    • builder

      @Stability(Stable) static CfnHostedConfigurationVersionProps.Builder builder()
      Returns:
      a CfnHostedConfigurationVersionProps.Builder of CfnHostedConfigurationVersionProps