interface PipelineAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.Alpha.PipelineAttributes |
Go | github.com/aws/aws-cdk-go/awscdksagemakeralpha/v2#PipelineAttributes |
Java | software.amazon.awscdk.services.sagemaker.alpha.PipelineAttributes |
Python | aws_cdk.aws_sagemaker_alpha.PipelineAttributes |
TypeScript (source) | @aws-cdk/aws-sagemaker-alpha ยป PipelineAttributes |
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 * as sagemaker_alpha from '@aws-cdk/aws-sagemaker-alpha';
const pipelineAttributes: sagemaker_alpha.PipelineAttributes = {
account: 'account',
pipelineArn: 'pipelineArn',
pipelineName: 'pipelineName',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| account? | string | The account the pipeline is in. |
| pipeline | string | The ARN of the pipeline. |
| pipeline | string | The name of the pipeline. |
| region? | string | The region the pipeline is in. |
account?
Type:
string
(optional, default: same account as the stack)
The account the pipeline is in.
pipelineArn?
Type:
string
(optional, default: Either this or pipelineName must be provided)
The ARN of the pipeline.
pipelineName?
Type:
string
(optional, default: Either this or pipelineArn must be provided)
The name of the pipeline.
region?
Type:
string
(optional, default: same region as the stack)
The region the pipeline is in.

.NET
Go
Java
Python
TypeScript (