agent-claw: automated task changes
This commit is contained in:
13
cdk/node_modules/aws-cdk-lib/aws-sagemaker/.jsiirc.json
generated
vendored
Normal file
13
cdk/node_modules/aws-cdk-lib/aws-sagemaker/.jsiirc.json
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"targets": {
|
||||
"java": {
|
||||
"package": "software.amazon.awscdk.services.sagemaker"
|
||||
},
|
||||
"dotnet": {
|
||||
"namespace": "Amazon.CDK.AWS.Sagemaker"
|
||||
},
|
||||
"python": {
|
||||
"module": "aws_cdk.aws_sagemaker"
|
||||
}
|
||||
}
|
||||
}
|
||||
32
cdk/node_modules/aws-cdk-lib/aws-sagemaker/README.md
generated
vendored
Normal file
32
cdk/node_modules/aws-cdk-lib/aws-sagemaker/README.md
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# Amazon SageMaker Construct Library
|
||||
|
||||
|
||||
This module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.
|
||||
|
||||
```ts nofixture
|
||||
import * as sagemaker from 'aws-cdk-lib/aws-sagemaker';
|
||||
```
|
||||
|
||||
<!--BEGIN CFNONLY DISCLAIMER-->
|
||||
|
||||
There are no official hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet. Here are some suggestions on how to proceed:
|
||||
|
||||
- Search [Construct Hub for SageMaker construct libraries](https://constructs.dev/search?q=sagemaker)
|
||||
- Use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, in the same way you would use [the CloudFormation AWS::SageMaker resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SageMaker.html) directly.
|
||||
|
||||
|
||||
> An experimental construct library for this service is available in preview. Since it is not stable yet, it is distributed
|
||||
> as a separate package so that you can pin its version independently of the rest of the CDK. See the package:
|
||||
>
|
||||
> <span class="package-reference">@aws-cdk/aws-sagemaker-alpha</span>
|
||||
|
||||
<!--BEGIN CFNONLY DISCLAIMER-->
|
||||
|
||||
There are no hand-written ([L2](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) constructs for this service yet.
|
||||
However, you can still use the automatically generated [L1](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_l1_using) constructs, and use this service exactly as you would using CloudFormation directly.
|
||||
|
||||
For more information on the resources and properties available for this service, see the [CloudFormation documentation for AWS::SageMaker](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SageMaker.html).
|
||||
|
||||
(Read the [CDK Contributing Guide](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and submit an RFC if you are interested in contributing to this construct library.)
|
||||
|
||||
<!--END CFNONLY DISCLAIMER-->
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-sagemaker/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/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