Interface TaskSetReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TaskSetReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:16.760Z")
@Stability(Stable)
public interface TaskSetReference
extends software.amazon.jsii.JsiiSerializable
A reference to a TaskSet resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.interfaces.ecs.*;
TaskSetReference taskSetReference = TaskSetReference.builder()
.cluster("cluster")
.service("service")
.taskSetId("taskSetId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTaskSetReferencestatic final classAn implementation forTaskSetReference -
Method Summary
Modifier and TypeMethodDescriptionstatic TaskSetReference.Builderbuilder()The Cluster of the TaskSet resource.The Service of the TaskSet resource.The Id of the TaskSet resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCluster
The Cluster of the TaskSet resource. -
getService
The Service of the TaskSet resource. -
getTaskSetId
The Id of the TaskSet resource. -
builder
- Returns:
- a
TaskSetReference.BuilderofTaskSetReference
-