Interface CfnTask.ContainerTaskConfigurationProperty

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

@Stability(Stable) public static interface CfnTask.ContainerTaskConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for running a custom container image on managed compute.

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.iotsitewise.*;
 ContainerTaskConfigurationProperty containerTaskConfigurationProperty = ContainerTaskConfigurationProperty.builder()
         .ecrUri("ecrUri")
         .processingType("processingType")
         .processingUnit("processingUnit")
         .taskExecutionRole("taskExecutionRole")
         // the properties below are optional
         .command(List.of("command"))
         .environmentVariables(Map.of(
                 "environmentVariablesKey", "environmentVariables"))
         .timeoutSeconds(123)
         .build();
 

See Also: