@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.953Z") @Stability(value=Stable) public interface CfnPipelineProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipelineProps.Builder
A builder for
CfnPipelineProps |
static class |
CfnPipelineProps.Jsii$Proxy
An implementation for
CfnPipelineProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipelineProps.Builder |
builder() |
default Object |
getParallelismConfiguration()
`AWS::SageMaker::Pipeline.ParallelismConfiguration`.
|
Object |
getPipelineDefinition()
The definition of the pipeline.
|
default String |
getPipelineDescription()
The description of the pipeline.
|
default String |
getPipelineDisplayName()
The display name of the pipeline.
|
String |
getPipelineName()
The name of the pipeline.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
|
default List<CfnTag> |
getTags()
The tags of the pipeline.
|
@Stability(value=Stable) @NotNull Object getPipelineDefinition()
This can be either a JSON string or an Amazon S3 location.
@Stability(value=Stable) @NotNull String getPipelineName()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getParallelismConfiguration()
@Stability(value=Stable) @Nullable default String getPipelineDescription()
@Stability(value=Stable) @Nullable default String getPipelineDisplayName()
@Stability(value=Stable) static CfnPipelineProps.Builder builder()
CfnPipelineProps.Builder of CfnPipelinePropsCopyright © 2022. All rights reserved.