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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builderbuilder()The application definition for a particular application.default StringThe description of the application.The type of the target platform for this application.default StringThe identifier of a customer managed key.getName()The name of the application.default StringAWS::M2::Application.RoleArn.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
The type of the target platform for this application. -
getName
The name of the application. -
getDescription
The description of the application. -
getKmsKeyId
The identifier of a customer managed key. -
getRoleArn
AWS::M2::Application.RoleArn. -
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-