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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPipelineAttributesstatic final classAn implementation forPipelineAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic PipelineAttributes.Builderbuilder()default String(experimental) The account the pipeline is in.default String(experimental) The ARN of the pipeline.default String(experimental) The name of the pipeline.default String(experimental) The region the pipeline is in.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccount
(experimental) The account the pipeline is in.Default: - same account as the stack
-
getPipelineArn
(experimental) The ARN of the pipeline.Default: - Either this or pipelineName must be provided
-
getPipelineName
(experimental) The name of the pipeline.Default: - Either this or pipelineArn must be provided
-
getRegion
(experimental) The region the pipeline is in.Default: - same region as the stack
-
builder
- Returns:
- a
PipelineAttributes.BuilderofPipelineAttributes
-