PipelineAttributes

class aws_cdk.aws_sagemaker_alpha.PipelineAttributes(*, account=None, pipeline_arn=None, pipeline_name=None, region=None)

Bases: object

(experimental) Attributes for importing a SageMaker Pipeline.

Parameters:
  • account (Optional[str]) – (experimental) The account the pipeline is in. Default: - same account as the stack

  • pipeline_arn (Optional[str]) – (experimental) The ARN of the pipeline. Default: - Either this or pipelineName must be provided

  • pipeline_name (Optional[str]) – (experimental) The name of the pipeline. Default: - Either this or pipelineArn must be provided

  • region (Optional[str]) – (experimental) The region the pipeline is in. Default: - same region as the stack

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_sagemaker_alpha as sagemaker_alpha

pipeline_attributes = sagemaker_alpha.PipelineAttributes(
    account="account",
    pipeline_arn="pipelineArn",
    pipeline_name="pipelineName",
    region="region"
)

Attributes

account

(experimental) The account the pipeline is in.

Default:
  • same account as the stack

Stability:

experimental

pipeline_arn

(experimental) The ARN of the pipeline.

Default:
  • Either this or pipelineName must be provided

Stability:

experimental

pipeline_name

(experimental) The name of the pipeline.

Default:
  • Either this or pipelineArn must be provided

Stability:

experimental

region

(experimental) The region the pipeline is in.

Default:
  • same region as the stack

Stability:

experimental