Interface CfnPipe.BatchContainerOverridesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.BatchContainerOverridesProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.BatchContainerOverridesProperty extends software.amazon.jsii.JsiiSerializable
The overrides that are sent to a container.

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.pipes.*;
 BatchContainerOverridesProperty batchContainerOverridesProperty = BatchContainerOverridesProperty.builder()
         .command(List.of("command"))
         .environment(List.of(BatchEnvironmentVariableProperty.builder()
                 .name("name")
                 .value("value")
                 .build()))
         .instanceType("instanceType")
         .resourceRequirements(List.of(BatchResourceRequirementProperty.builder()
                 .type("type")
                 .value("value")
                 .build()))
         .build();
 

See Also: