@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-27T20:28:49.374Z") @Stability(value=Stable) public interface LaunchTargetBindOptions extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
LaunchTargetBindOptions.Builder
A builder for
LaunchTargetBindOptions |
static class |
LaunchTargetBindOptions.Jsii$Proxy
An implementation for
LaunchTargetBindOptions |
| Modifier and Type | Method and Description |
|---|---|
static LaunchTargetBindOptions.Builder |
builder() |
default ICluster |
getCluster()
A regional grouping of one or more container instances on which you can run tasks and services.
|
ITaskDefinition |
getTaskDefinition()
Task definition to run Docker containers in Amazon ECS.
|
@Stability(value=Stable) @NotNull ITaskDefinition getTaskDefinition()
@Stability(value=Stable) @Nullable default ICluster getCluster()
Default: - No cluster
@Stability(value=Stable) static LaunchTargetBindOptions.Builder builder()
LaunchTargetBindOptions.Builder of LaunchTargetBindOptionsCopyright © 2022. All rights reserved.