Show / Hide Table of Contents

Class CfnPrimaryTaskSetProps

Properties for defining a CfnPrimaryTaskSet.

Inheritance
System.Object
CfnPrimaryTaskSetProps
Implements
ICfnPrimaryTaskSetProps
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public class CfnPrimaryTaskSetProps : Object, ICfnPrimaryTaskSetProps
Syntax (vb)
Public Class CfnPrimaryTaskSetProps
    Inherits Object
    Implements ICfnPrimaryTaskSetProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.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.ECS;

var cfnPrimaryTaskSetProps = new CfnPrimaryTaskSetProps {
    Cluster = "cluster",
    Service = "service",
    TaskSetId = "taskSetId"
};

Synopsis

Constructors

CfnPrimaryTaskSetProps()

Properties

Cluster

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set exists in.

Service

The short name or full Amazon Resource Name (ARN) of the service that the task set exists in.

TaskSetId

The short name or full Amazon Resource Name (ARN) of the task set to set as the primary task set in the deployment.

Constructors

CfnPrimaryTaskSetProps()

public CfnPrimaryTaskSetProps()

Properties

Cluster

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set exists in.

public string Cluster { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-cluster

Service

The short name or full Amazon Resource Name (ARN) of the service that the task set exists in.

public string Service { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-service

TaskSetId

The short name or full Amazon Resource Name (ARN) of the task set to set as the primary task set in the deployment.

public string TaskSetId { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-primarytaskset.html#cfn-ecs-primarytaskset-tasksetid

Implements

ICfnPrimaryTaskSetProps
Back to top Generated by DocFX