aws-cdk-lib.aws_m2.CfnApplication.DefinitionProperty

interface DefinitionProperty

LanguageType name
.NETAmazon.CDK.AWS.M2.CfnApplication.DefinitionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsm2#CfnApplication_DefinitionProperty
Javasoftware.amazon.awscdk.services.m2.CfnApplication.DefinitionProperty
Pythonaws_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

NameTypeDescription
content?stringThe content of the application definition.
s3Location?stringThe 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.