Interface LaunchTargetBindOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LaunchTargetBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:51.612Z")
@Stability(Stable)
public interface LaunchTargetBindOptions
extends software.amazon.jsii.JsiiSerializable
Options for binding a launch target to an ECS run job task.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ecs.*;
import software.amazon.awscdk.services.stepfunctions.tasks.*;
Cluster cluster;
TaskDefinition taskDefinition;
LaunchTargetBindOptions launchTargetBindOptions = LaunchTargetBindOptions.builder()
.taskDefinition(taskDefinition)
// the properties below are optional
.cluster(cluster)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLaunchTargetBindOptionsstatic final classAn implementation forLaunchTargetBindOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTaskDefinition
Task definition to run Docker containers in Amazon ECS. -
getCluster
A regional grouping of one or more container instances on which you can run tasks and services.Default: - No cluster
-
builder
- Returns:
- a
LaunchTargetBindOptions.BuilderofLaunchTargetBindOptions
-