interface CfnApplicationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodeDeploy.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnApplicationProps |
Java | software.amazon.awscdk.services.codedeploy.CfnApplicationProps |
Python | aws_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
Name | Type | Description |
---|---|---|
application | string | A name for the application. |
compute | string | The compute platform that CodeDeploy deploys the application to. |
tags? | Cfn [] | 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:
Cfn
[]
(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.