Interface LaunchTargetBindOptions
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- LaunchTargetBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:48.114Z")
@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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLaunchTargetBindOptionsstatic final classAn implementation forLaunchTargetBindOptions
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getTaskDefinitionTask definition to run Docker containers in Amazon ECS.
- 
getClusterA regional grouping of one or more container instances on which you can run tasks and services.Default: - No cluster 
- 
builder- Returns:
- a LaunchTargetBindOptions.BuilderofLaunchTargetBindOptions
 
 
-