Class TaskSetReference
A reference to a TaskSet resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TaskSetReference : ITaskSetReference
Syntax (vb)
Public Class TaskSetReference Implements ITaskSetReference
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.Interfaces.ECS;
var taskSetReference = new TaskSetReference {
Cluster = "cluster",
Service = "service",
TaskSetId = "taskSetId"
};
Synopsis
Constructors
| TaskSetReference() | A reference to a TaskSet resource. |
Properties
| Cluster | The Cluster of the TaskSet resource. |
| Service | The Service of the TaskSet resource. |
| TaskSetId | The Id of the TaskSet resource. |
Constructors
TaskSetReference()
A reference to a TaskSet resource.
public TaskSetReference()
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.Interfaces.ECS;
var taskSetReference = new TaskSetReference {
Cluster = "cluster",
Service = "service",
TaskSetId = "taskSetId"
};
Properties
Cluster
The Cluster of the TaskSet resource.
public string Cluster { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Service
The Service of the TaskSet resource.
public string Service { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
TaskSetId
The Id of the TaskSet resource.
public string TaskSetId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated