Interface CfnPipelineMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipelineMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.151Z")
@Stability(Stable)
public interface CfnPipelineMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPipelinePropsMixin.
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.sagemaker.*;
Object parallelismConfiguration;
Object pipelineDefinition;
CfnPipelineMixinProps cfnPipelineMixinProps = CfnPipelineMixinProps.builder()
.parallelismConfiguration(parallelismConfiguration)
.pipelineDefinition(pipelineDefinition)
.pipelineDescription("pipelineDescription")
.pipelineDisplayName("pipelineDisplayName")
.pipelineName("pipelineName")
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipelineMixinPropsstatic final classAn implementation forCfnPipelineMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe parallelism configuration applied to the pipeline.default ObjectThe definition of the pipeline.default StringThe description of the pipeline.default StringThe display name of the pipeline.default StringThe name of the pipeline.default ObjectThe Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.getTags()The tags of the pipeline.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParallelismConfiguration
The parallelism configuration applied to the pipeline.- See Also:
-
getPipelineDefinition
The definition of the pipeline.This can be either a JSON string or an Amazon S3 location.
- See Also:
-
getPipelineDescription
The description of the pipeline.- See Also:
-
getPipelineDisplayName
The display name of the pipeline.- See Also:
-
getPipelineName
The name of the pipeline.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.- See Also:
-
getTags
The tags of the pipeline.- See Also:
-
builder
- Returns:
- a
CfnPipelineMixinProps.BuilderofCfnPipelineMixinProps
-