interface DefinitionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.M2.CfnApplication.DefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsm2#CfnApplication_DefinitionProperty |
Java | software.amazon.awscdk.services.m2.CfnApplication.DefinitionProperty |
Python | aws_cdk.aws_m2.CfnApplication.DefinitionProperty |
TypeScript | aws-cdk-lib » aws_m2 » CfnApplication » 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-lib';
const definitionProperty: m2.CfnApplication.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.