Interface EcsRunTaskBaseProps

All Superinterfaces:
CommonEcsRunTaskProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EcsRunTaskBaseProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.962Z") @Stability(Deprecated) @Deprecated public interface EcsRunTaskBaseProps extends software.amazon.jsii.JsiiSerializable, CommonEcsRunTaskProps
Deprecated.
No replacement
(deprecated) Construction properties for the BaseRunTaskProps.

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.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 Cluster cluster;
 ContainerDefinition containerDefinition;
 Object parameters;
 TaskDefinition taskDefinition;
 EcsRunTaskBaseProps ecsRunTaskBaseProps = EcsRunTaskBaseProps.builder()
         .cluster(cluster)
         .taskDefinition(taskDefinition)
         // the properties below are optional
         .containerOverrides(List.of(ContainerOverride.builder()
                 .containerDefinition(containerDefinition)
                 // the properties below are optional
                 .command(List.of("command"))
                 .cpu(123)
                 .environment(List.of(TaskEnvironmentVariable.builder()
                         .name("name")
                         .value("value")
                         .build()))
                 .memoryLimit(123)
                 .memoryReservation(123)
                 .build()))
         .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
         .parameters(Map.of(
                 "parametersKey", parameters))
         .build();