Interface CfnPipelineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipelineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.287Z")
@Stability(Stable)
public interface CfnPipelineProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPipeline
.
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.sagemaker.*; Object parallelismConfiguration; Object pipelineDefinition; CfnPipelineProps cfnPipelineProps = CfnPipelineProps.builder() .pipelineDefinition(pipelineDefinition) .pipelineName("pipelineName") .roleArn("roleArn") // the properties below are optional .parallelismConfiguration(parallelismConfiguration) .pipelineDescription("pipelineDescription") .pipelineDisplayName("pipelineDisplayName") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipelineProps
static final class
An implementation forCfnPipelineProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPipelineProps.Builder
builder()
default Object
The parallelism configuration applied to the pipeline.The definition of the pipeline.default String
The description of the pipeline.default String
The display name of the pipeline.The name of the pipeline.The 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
-
getPipelineDefinition
The definition of the pipeline.This can be either a JSON string or an Amazon S3 location.
- 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:
-
getParallelismConfiguration
The parallelism configuration applied to the pipeline.- See Also:
-
getPipelineDescription
The description of the pipeline.- See Also:
-
getPipelineDisplayName
The display name of the pipeline.- See Also:
-
getTags
The tags of the pipeline.- See Also:
-
builder
- Returns:
- a
CfnPipelineProps.Builder
ofCfnPipelineProps
-