Show / Hide Table of Contents

Class CfnCodeDeployBlueGreenApplication

The application actually being deployed.

Inheritance
System.Object
CfnCodeDeployBlueGreenApplication
Implements
ICfnCodeDeployBlueGreenApplication
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class CfnCodeDeployBlueGreenApplication : Object, ICfnCodeDeployBlueGreenApplication
Syntax (vb)
Public Class CfnCodeDeployBlueGreenApplication
    Inherits Object
    Implements ICfnCodeDeployBlueGreenApplication
Remarks

Type of the {@link CfnCodeDeployBlueGreenHookProps.applications} property.

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;
CfnCodeDeployBlueGreenApplication cfnCodeDeployBlueGreenApplication = new CfnCodeDeployBlueGreenApplication {
    EcsAttributes = new CfnCodeDeployBlueGreenEcsAttributes {
        TaskDefinitions = new [] { "taskDefinitions" },
        TaskSets = new [] { "taskSets" },
        TrafficRouting = new CfnTrafficRouting {
            ProdTrafficRoute = new CfnTrafficRoute {
                LogicalId = "logicalId",
                Type = "type"
            },
            TargetGroups = new [] { "targetGroups" },
            TestTrafficRoute = new CfnTrafficRoute {
                LogicalId = "logicalId",
                Type = "type"
            }
        }
    },
    Target = new CfnCodeDeployBlueGreenApplicationTarget {
        LogicalId = "logicalId",
        Type = "type"
    }
};

Synopsis

Constructors

CfnCodeDeployBlueGreenApplication()

Properties

EcsAttributes

The detailed attributes of the deployed target.

Target

The target that is being deployed.

Constructors

CfnCodeDeployBlueGreenApplication()

public CfnCodeDeployBlueGreenApplication()

Properties

EcsAttributes

The detailed attributes of the deployed target.

public ICfnCodeDeployBlueGreenEcsAttributes EcsAttributes { get; set; }
Property Value

ICfnCodeDeployBlueGreenEcsAttributes

Target

The target that is being deployed.

public ICfnCodeDeployBlueGreenApplicationTarget Target { get; set; }
Property Value

ICfnCodeDeployBlueGreenApplicationTarget

Implements

ICfnCodeDeployBlueGreenApplication
Back to top Generated by DocFX