Interface CfnTaskPropsMixin.TaskConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTaskPropsMixin.TaskConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTaskPropsMixin
@Stability(Stable)
public static interface CfnTaskPropsMixin.TaskConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The task execution configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.*;
TaskConfigurationProperty taskConfigurationProperty = TaskConfigurationProperty.builder()
.containerTaskConfiguration(ContainerTaskConfigurationProperty.builder()
.command(List.of("command"))
.ecrUri("ecrUri")
.environmentVariables(Map.of(
"environmentVariablesKey", "environmentVariables"))
.processingType("processingType")
.processingUnit("processingUnit")
.taskExecutionRole("taskExecutionRole")
.timeoutSeconds(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTaskPropsMixin.TaskConfigurationPropertystatic final classAn implementation forCfnTaskPropsMixin.TaskConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerTaskConfiguration
Configuration for running a custom container image on managed compute.Returns union: either
IResolvableorCfnTaskPropsMixin.ContainerTaskConfigurationProperty- See Also:
-
builder
-