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:29:59.837Z") @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.m2.*;
 CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
         .definition(DefinitionProperty.builder()
                 .content("content")
                 .s3Location("s3Location")
                 .build())
         .engineType("engineType")
         .name("name")
         // the properties below are optional
         .description("description")
         .kmsKeyId("kmsKeyId")
         .roleArn("roleArn")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 
  • Method Details

    • getDefinition

      @Stability(Stable) @NotNull Object getDefinition()
      The application definition for a particular application. You can specify either inline JSON or an Amazon S3 bucket location.

      For information about application definitions, see the AWS Mainframe Modernization User Guide .

    • getEngineType

      @Stability(Stable) @NotNull String getEngineType()
      The type of the target platform for this application.
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the application.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the application.
    • getKmsKeyId

      @Stability(Stable) @Nullable default String getKmsKeyId()
      The identifier of a customer managed key.
    • getRoleArn

      @Stability(Stable) @Nullable default String getRoleArn()
      AWS::M2::Application.RoleArn.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

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