Class CfnApplicationMixinProps
Properties for CfnApplicationPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationMixinProps : ICfnApplicationMixinProps
Syntax (vb)
Public Class CfnApplicationMixinProps Implements ICfnApplicationMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins;
var cfnApplicationMixinProps = new CfnApplicationMixinProps {
ApplicationName = "applicationName",
ComputePlatform = "computePlatform",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnApplicationMixinProps() | Properties for CfnApplicationPropsMixin. |
Properties
| ApplicationName | A name for the application. |
| ComputePlatform | The compute platform that CodeDeploy deploys the application to. |
| Tags | The metadata that you apply to CodeDeploy applications to help you organize and categorize them. |
Constructors
CfnApplicationMixinProps()
Properties for CfnApplicationPropsMixin.
public CfnApplicationMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins;
var cfnApplicationMixinProps = new CfnApplicationMixinProps {
ApplicationName = "applicationName",
ComputePlatform = "computePlatform",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
ApplicationName
A name for the application.
public string? ApplicationName { get; set; }
Property Value
Remarks
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 <code>ApplicationName</code> are not supported.
ComputePlatform
The compute platform that CodeDeploy deploys the application to.
public string? ComputePlatform { get; set; }
Property Value
Remarks
Tags
The metadata that you apply to CodeDeploy applications to help you organize and categorize them.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Each tag consists of a key and an optional value, both of which you define.