interface CfnApplicationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.M2.CfnApplicationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsm2#CfnApplicationProps |
![]() | software.amazon.awscdk.services.m2.CfnApplicationProps |
![]() | aws_cdk.aws_m2.CfnApplicationProps |
![]() | aws-cdk-lib » aws_m2 » CfnApplicationProps |
Properties for defining a CfnApplication
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-application.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_m2 as m2 } from 'aws-cdk-lib';
const cfnApplicationProps: m2.CfnApplicationProps = {
engineType: 'engineType',
name: 'name',
// the properties below are optional
definition: {
content: 'content',
s3Location: 's3Location',
},
description: 'description',
kmsKeyId: 'kmsKeyId',
roleArn: 'roleArn',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
engine | string | The type of the target platform for this application. |
name | string | The name of the application. |
definition? | IResolvable | Definition | The application definition for a particular application. You can specify either inline JSON or an Amazon S3 bucket location. |
description? | string | The description of the application. |
kms | string | The identifier of a customer managed key. |
role | string | The Amazon Resource Name (ARN) of the role associated with the application. |
tags? | { [string]: string } | An array of key-value pairs to apply to this resource. |
engineType
Type:
string
The type of the target platform for this application.
name
Type:
string
The name of the application.
definition?
Type:
IResolvable
|
Definition
(optional)
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 .
description?
Type:
string
(optional)
The description of the application.
kmsKeyId?
Type:
string
(optional)
The identifier of a customer managed key.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the role associated with the application.
tags?
Type:
{ [string]: string }
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .