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