interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeDeploy.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodedeploy#CfnApplicationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.codedeploy.CfnApplicationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_codedeploy.CfnApplicationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codedeploy » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
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/cfn-property-mixins';
const cfnApplicationMixinProps: codedeploy.CfnApplicationMixinProps = {
applicationName: 'applicationName',
computePlatform: 'computePlatform',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | IFunction | 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 | IFunction
(optional)
A name for the application.
If you don't specify a name, CloudFormation generates a unique physical ID and uses that ID for the application name. For more information, see Name Type .
Updates to
ApplicationNameare 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.

.NET
Go
Java
Python
TypeScript