Show / Hide Table of Contents

Class CfnApplicationProps

Properties for defining a CfnApplication.

Inheritance
object
CfnApplicationProps
Implements
ICfnApplicationProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps Implements ICfnApplicationProps
Remarks

See: 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

Constructors

CfnApplicationProps()

Properties for defining a CfnApplication.

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

CfnApplicationProps()

Properties for defining a CfnApplication.

public CfnApplicationProps()
Remarks

See: 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"
                 } }
             };

Properties

ApplicationName

A name for the application.

public object? ApplicationName { get; set; }
Property Value

object

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.

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

Type union: either string or IFunctionRef

ComputePlatform

The compute platform that CodeDeploy deploys the application to.

public string? ComputePlatform { get; set; }
Property Value

string

Remarks

See: 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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

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

Implements

ICfnApplicationProps
Back to top Generated by DocFX