Show / Hide Table of Contents

Class CfnDeploymentProps

Properties for defining a CfnDeployment.

Inheritance
object
CfnDeploymentProps
Implements
ICfnDeploymentProps
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.M2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentProps : ICfnDeploymentProps
Syntax (vb)
Public Class CfnDeploymentProps Implements ICfnDeploymentProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.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.M2;

             var cfnDeploymentProps = new CfnDeploymentProps {
                 ApplicationId = "applicationId",
                 ApplicationVersion = 123,
                 EnvironmentId = "environmentId"
             };

Synopsis

Constructors

CfnDeploymentProps()

Properties for defining a CfnDeployment.

Properties

ApplicationId

The unique identifier of the application.

ApplicationVersion

The version of the application.

EnvironmentId

The unique identifier of the runtime environment.

Constructors

CfnDeploymentProps()

Properties for defining a CfnDeployment.

public CfnDeploymentProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.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.M2;

             var cfnDeploymentProps = new CfnDeploymentProps {
                 ApplicationId = "applicationId",
                 ApplicationVersion = 123,
                 EnvironmentId = "environmentId"
             };

Properties

ApplicationId

The unique identifier of the application.

public string ApplicationId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#cfn-m2-deployment-applicationid

ApplicationVersion

The version of the application.

public double ApplicationVersion { get; set; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#cfn-m2-deployment-applicationversion

EnvironmentId

The unique identifier of the runtime environment.

public string EnvironmentId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#cfn-m2-deployment-environmentid

Implements

ICfnDeploymentProps
Back to top Generated by DocFX