Interface CfnTaskMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTaskMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:52:03.968Z")
@Stability(Stable)
public interface CfnTaskMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTaskPropsMixin.
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.*;
CfnTaskMixinProps cfnTaskMixinProps = CfnTaskMixinProps.builder()
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.taskConfiguration(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())
.taskName("taskName")
.workspaceName("workspaceName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTaskMixinPropsstatic final classAn implementation forCfnTaskMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTaskMixinProps.Builderbuilder()default StringA description of the task.getTags()An array of key-value pairs to apply to this resource.default ObjectThe task execution configuration.default StringThe name of the task.default StringThe name of the workspace.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the task.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
getTaskConfiguration
The task execution configuration.Returns union: either
IResolvableorCfnTaskPropsMixin.TaskConfigurationProperty- See Also:
-
getTaskName
The name of the task.Must be unique within the workspace.
- See Also:
-
getWorkspaceName
The name of the workspace.- See Also:
-
builder
- Returns:
- a
CfnTaskMixinProps.BuilderofCfnTaskMixinProps
-