interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.M2.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsm2/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.m2.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_m2.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_m2 » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
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 { mixins as m2_mixins } from '@aws-cdk/mixins-preview/aws-m2';
const cfnApplicationMixinProps: m2_mixins.CfnApplicationMixinProps = {
definition: {
content: 'content',
s3Location: 's3Location',
},
description: 'description',
engineType: 'engineType',
kmsKeyId: 'kmsKeyId',
name: 'name',
roleArn: 'roleArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| engine | string | The type of the target platform for this application. |
| kms | string | The identifier of a customer managed key. |
| name? | string | The name of the application. |
| 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. |
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.
engineType?
Type:
string
(optional)
The type of the target platform for this application.
kmsKeyId?
Type:
string
(optional)
The identifier of a customer managed key.
name?
Type:
string
(optional)
The name of the application.
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 .

.NET
Go
Java
Python
TypeScript