Show / Hide Table of Contents

Interface ICfnApplicationProps

Properties for defining a CfnApplication.

Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.AWS.CodeDeploy.dll
Syntax (csharp)
public interface ICfnApplicationProps
Syntax (vb)
Public Interface ICfnApplicationProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html

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.AWS.CodeDeploy;

var cfnApplicationProps = new CfnApplicationProps {
    ApplicationName = "applicationName",
    ComputePlatform = "computePlatform",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

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.

Properties

ApplicationName

A name for the application.

virtual string ApplicationName { get; }
Property Value

System.String

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname

ComputePlatform

The compute platform that CodeDeploy deploys the application to.

virtual string ComputePlatform { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform

Tags

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

virtual ICfnTag[] Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-tags

Back to top Generated by DocFX