Show / Hide Table of Contents

Class CfnCodeDeployBlueGreenApplicationTarget

Type of the CfnCodeDeployBlueGreenApplication.target property.

Inheritance
object
CfnCodeDeployBlueGreenApplicationTarget
Implements
ICfnCodeDeployBlueGreenApplicationTarget
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCodeDeployBlueGreenApplicationTarget : ICfnCodeDeployBlueGreenApplicationTarget
Syntax (vb)
Public Class CfnCodeDeployBlueGreenApplicationTarget Implements ICfnCodeDeployBlueGreenApplicationTarget
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;

            var cfnCodeDeployBlueGreenApplicationTarget = new CfnCodeDeployBlueGreenApplicationTarget {
                LogicalId = "logicalId",
                Type = "type"
            };

Synopsis

Constructors

CfnCodeDeployBlueGreenApplicationTarget()

Type of the CfnCodeDeployBlueGreenApplication.target property.

Properties

LogicalId

The logical id of the target resource.

Type

The resource type of the target being deployed.

Constructors

CfnCodeDeployBlueGreenApplicationTarget()

Type of the CfnCodeDeployBlueGreenApplication.target property.

public CfnCodeDeployBlueGreenApplicationTarget()
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;

            var cfnCodeDeployBlueGreenApplicationTarget = new CfnCodeDeployBlueGreenApplicationTarget {
                LogicalId = "logicalId",
                Type = "type"
            };

Properties

LogicalId

The logical id of the target resource.

public string LogicalId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Type

The resource type of the target being deployed.

public string Type { get; set; }
Property Value

string

Remarks

Right now, the only allowed value is 'AWS::ECS::Service'.

Implements

ICfnCodeDeployBlueGreenApplicationTarget
Back to top Generated by DocFX