interface DefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.M2.CfnApplicationPropsMixin.DefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsm2#CfnApplicationPropsMixin_DefinitionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.m2.CfnApplicationPropsMixin.DefinitionProperty |
Python | aws_cdk.cfn_property_mixins.aws_m2.CfnApplicationPropsMixin.DefinitionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_m2 » 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 { aws_m2 as m2 } from '@aws-cdk/cfn-property-mixins';
const definitionProperty: m2.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