Interface CfnPipelineProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipelineProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:35.521Z") @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();
 
  • Method Details

    • getPipelineDefinition

      @Stability(Stable) @NotNull Object getPipelineDefinition()
      The definition of the pipeline.

      This can be either a JSON string or an Amazon S3 location.

    • getPipelineName

      @Stability(Stable) @NotNull String getPipelineName()
      The name of the pipeline.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
    • getParallelismConfiguration

      @Stability(Stable) @Nullable default Object getParallelismConfiguration()
      AWS::SageMaker::Pipeline.ParallelismConfiguration.
    • getPipelineDescription

      @Stability(Stable) @Nullable default String getPipelineDescription()
      The description of the pipeline.
    • getPipelineDisplayName

      @Stability(Stable) @Nullable default String getPipelineDisplayName()
      The display name of the pipeline.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags of the pipeline.
    • builder

      @Stability(Stable) static CfnPipelineProps.Builder builder()
      Returns:
      a CfnPipelineProps.Builder of CfnPipelineProps