interface DefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.M2.Mixins.CfnApplicationPropsMixin.DefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsm2/mixins#CfnApplicationPropsMixin_DefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.m2.mixins.CfnApplicationPropsMixin.DefinitionProperty |
Python | aws_cdk.mixins_preview.aws_m2.mixins.CfnApplicationPropsMixin.DefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_m2 » mixins » CfnApplicationPropsMixin » DefinitionProperty |
The application definition for a particular application.
You can specify either inline JSON or an Amazon S3 bucket location.
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 definitionProperty: m2_mixins.CfnApplicationPropsMixin.DefinitionProperty = {
content: 'content',
s3Location: 's3Location',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | The content of the application definition. |
| s3 | string | The S3 bucket that contains the application definition. |
content?
Type:
string
(optional)
The content of the application definition.
This is a JSON object that contains the resource configuration/definitions that identify an application.
s3Location?
Type:
string
(optional)
The S3 bucket that contains the application definition.

.NET
Go
Java
Python
TypeScript