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;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/endpoint.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/endpoint.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});
|
||||
3
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/index.d.ts
generated
vendored
Normal file
3
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from './sagemaker.generated';
|
||||
export * from './endpoint';
|
||||
export * from './pipeline';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/index.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
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;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/pipeline.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/pipeline.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});
|
||||
50
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker-canned-metrics.generated.d.ts
generated
vendored
Normal file
50
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker-canned-metrics.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
export interface MetricWithDims<D> {
|
||||
readonly namespace: string;
|
||||
readonly metricName: string;
|
||||
readonly statistic: string;
|
||||
readonly dimensionsMap: D;
|
||||
}
|
||||
export declare class SageMakerMetrics {
|
||||
static invocationsSum(this: void, dimensions: {
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}): MetricWithDims<{
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}>;
|
||||
static invocation5XxErrorsSum(this: void, dimensions: {
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}): MetricWithDims<{
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}>;
|
||||
static invocation4XxErrorsSum(this: void, dimensions: {
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}): MetricWithDims<{
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}>;
|
||||
static invocationsPerInstanceSum(this: void, dimensions: {
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}): MetricWithDims<{
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}>;
|
||||
static modelLatencySum(this: void, dimensions: {
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}): MetricWithDims<{
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}>;
|
||||
static overheadLatencySum(this: void, dimensions: {
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}): MetricWithDims<{
|
||||
EndpointName: string;
|
||||
VariantName: string;
|
||||
}>;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker-canned-metrics.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker-canned-metrics.generated.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SageMakerMetrics=void 0;class SageMakerMetrics{static invocationsSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"Invocations",dimensionsMap:dimensions,statistic:"Sum"}}static invocation5XxErrorsSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"Invocation5XXErrors",dimensionsMap:dimensions,statistic:"Sum"}}static invocation4XxErrorsSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"Invocation4XXErrors",dimensionsMap:dimensions,statistic:"Sum"}}static invocationsPerInstanceSum(dimensions){return{namespace:"AWS/SageMaker",metricName:"InvocationsPerInstance",dimensionsMap:dimensions,statistic:"Sum"}}static modelLatencySum(dimensions){return{namespace:"AWS/SageMaker",metricName:"ModelLatency",dimensionsMap:dimensions,statistic:"Sum"}}static overheadLatencySum(dimensions){return{namespace:"AWS/SageMaker",metricName:"OverheadLatency",dimensionsMap:dimensions,statistic:"Sum"}}}exports.SageMakerMetrics=SageMakerMetrics;
|
||||
19056
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.d.ts
generated
vendored
Normal file
19056
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user