Interface CfnApplicationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:46.280Z") @Stability(Stable) public interface CfnApplicationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnApplication.

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.codedeploy.*;
 CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
         .applicationName("applicationName")
         .computePlatform("computePlatform")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getApplicationName

      @Stability(Stable) @Nullable default String getApplicationName()
      A name for the application.

      If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the application name. For more information, see Name Type .

      Updates to ApplicationName are not supported.

    • getComputePlatform

      @Stability(Stable) @Nullable default String getComputePlatform()
      The compute platform that CodeDeploy deploys the application to.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The metadata that you apply to CodeDeploy applications to help you organize and categorize them.

      Each tag consists of a key and an optional value, both of which you define.

    • builder

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