aws-cdk-lib.aws_codedeploy.CfnApplicationProps

interface CfnApplicationProps

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.CfnApplicationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnApplicationProps
Javasoftware.amazon.awscdk.services.codedeploy.CfnApplicationProps
Pythonaws_cdk.aws_codedeploy.CfnApplicationProps
TypeScript aws-cdk-lib » aws_codedeploy » CfnApplicationProps

Properties for defining a CfnApplication.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codedeploy as codedeploy } from 'aws-cdk-lib';
const cfnApplicationProps: codedeploy.CfnApplicationProps = {
  applicationName: 'applicationName',
  computePlatform: 'computePlatform',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
applicationName?stringA name for the application.
computePlatform?stringThe compute platform that CodeDeploy deploys the application to.
tags?CfnTag[]The metadata that you apply to CodeDeploy applications to help you organize and categorize them.

applicationName?

Type: string (optional)

A name for the application.

If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the application name. For more information, see Name Type .

Updates to ApplicationName are not supported.


computePlatform?

Type: string (optional)

The compute platform that CodeDeploy deploys the application to.


tags?

Type: CfnTag[] (optional)

The metadata that you apply to CodeDeploy applications to help you organize and categorize them.

Each tag consists of a key and an optional value, both of which you define.