agent-claw: automated task changes
This commit is contained in:
25
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/pipeline.d.ts
generated
vendored
Normal file
25
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/pipeline.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { Grant, IGrantable } from '../../aws-iam';
|
||||
import type { IResource } from '../../core';
|
||||
import type { IPipelineRef } from '../../interfaces/generated/aws-sagemaker-interfaces.generated';
|
||||
/**
|
||||
* The interface for a SageMaker Pipeline resource.
|
||||
*/
|
||||
export interface IPipeline extends IResource, IPipelineRef {
|
||||
/**
|
||||
* The ARN of the pipeline.
|
||||
*
|
||||
* @attribute
|
||||
*/
|
||||
readonly pipelineArn: string;
|
||||
/**
|
||||
* The name of the pipeline.
|
||||
*
|
||||
* @attribute
|
||||
*/
|
||||
readonly pipelineName: string;
|
||||
/**
|
||||
* Permits an IAM principal to start this pipeline execution
|
||||
* @param grantee The principal to grant access to
|
||||
*/
|
||||
grantStartPipelineExecution(grantee: IGrantable): Grant;
|
||||
}
|
||||
Reference in New Issue
Block a user