Interface IPipeline
The interface for a SageMaker Pipeline resource.
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPipeline : IResource
Syntax (vb)
Public Interface IPipeline
Inherits IResource, IConstruct, IDependable
Synopsis
Properties
PipelineArn | The ARN of the pipeline. |
PipelineName | The name of the pipeline. |
Methods
GrantStartPipelineExecution(IGrantable) | Permits an IAM principal to start this pipeline execution. |
Properties
PipelineArn
The ARN of the pipeline.
string PipelineArn { get; }
Property Value
System.String
Remarks
Attribute: true
PipelineName
The name of the pipeline.
string PipelineName { get; }
Property Value
System.String
Remarks
Attribute: true
Methods
GrantStartPipelineExecution(IGrantable)
Permits an IAM principal to start this pipeline execution.
Grant GrantStartPipelineExecution(IGrantable grantee)
Parameters
- grantee IGrantable
The principal to grant access to.
Returns