Interface PipelineAttributes

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-02T12:05:20.955Z") @Stability(Experimental) public interface PipelineAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for importing a SageMaker Pipeline.

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.alpha.*;
 PipelineAttributes pipelineAttributes = PipelineAttributes.builder()
         .account("account")
         .pipelineArn("pipelineArn")
         .pipelineName("pipelineName")
         .region("region")
         .build();
 
  • Method Details

    • getAccount

      @Stability(Experimental) @Nullable default String getAccount()
      (experimental) The account the pipeline is in.

      Default: - same account as the stack

    • getPipelineArn

      @Stability(Experimental) @Nullable default String getPipelineArn()
      (experimental) The ARN of the pipeline.

      Default: - Either this or pipelineName must be provided

    • getPipelineName

      @Stability(Experimental) @Nullable default String getPipelineName()
      (experimental) The name of the pipeline.

      Default: - Either this or pipelineArn must be provided

    • getRegion

      @Stability(Experimental) @Nullable default String getRegion()
      (experimental) The region the pipeline is in.

      Default: - same region as the stack

    • builder

      @Stability(Experimental) static PipelineAttributes.Builder builder()
      Returns:
      a PipelineAttributes.Builder of PipelineAttributes