UNPKG

7.12 kBTypeScriptView Raw
1import {Request} from '../lib/request';
2import {Response} from '../lib/response';
3import {AWSError} from '../lib/error';
4import {Service} from '../lib/service';
5import {ServiceConfigurationOptions} from '../lib/service';
6import {ConfigBase as Config} from '../lib/config';
7interface Blob {}
8declare class SageMakerRuntime extends Service {
9 /**
10 * Constructs a service object. This object has one method for each API operation.
11 */
12 constructor(options?: SageMakerRuntime.Types.ClientConfiguration)
13 config: Config & SageMakerRuntime.Types.ClientConfiguration;
14 /**
15 * After you deploy a model into production using Amazon SageMaker hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint. For an overview of Amazon SageMaker, see How It Works. Amazon SageMaker strips all POST headers except those supported by the API. Amazon SageMaker might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpoint are authenticated by using AWS Signature Version 4. For information, see Authenticating Requests (AWS Signature Version 4) in the Amazon S3 API Reference. A customer's model containers must respond to requests within 60 seconds. The model itself can have a maximum processing time of 60 seconds before responding to the /invocations. If your model is going to take 50-60 seconds of processing time, the SDK socket timeout should be set to be 70 seconds. Endpoints are scoped to an individual account, and are not public. The URL does not contain the account ID, but Amazon SageMaker determines the account ID from the authentication token that is supplied by the caller.
16 */
17 invokeEndpoint(params: SageMakerRuntime.Types.InvokeEndpointInput, callback?: (err: AWSError, data: SageMakerRuntime.Types.InvokeEndpointOutput) => void): Request<SageMakerRuntime.Types.InvokeEndpointOutput, AWSError>;
18 /**
19 * After you deploy a model into production using Amazon SageMaker hosting services, your client applications use this API to get inferences from the model hosted at the specified endpoint. For an overview of Amazon SageMaker, see How It Works. Amazon SageMaker strips all POST headers except those supported by the API. Amazon SageMaker might add additional headers. You should not rely on the behavior of headers outside those enumerated in the request syntax. Calls to InvokeEndpoint are authenticated by using AWS Signature Version 4. For information, see Authenticating Requests (AWS Signature Version 4) in the Amazon S3 API Reference. A customer's model containers must respond to requests within 60 seconds. The model itself can have a maximum processing time of 60 seconds before responding to the /invocations. If your model is going to take 50-60 seconds of processing time, the SDK socket timeout should be set to be 70 seconds. Endpoints are scoped to an individual account, and are not public. The URL does not contain the account ID, but Amazon SageMaker determines the account ID from the authentication token that is supplied by the caller.
20 */
21 invokeEndpoint(callback?: (err: AWSError, data: SageMakerRuntime.Types.InvokeEndpointOutput) => void): Request<SageMakerRuntime.Types.InvokeEndpointOutput, AWSError>;
22}
23declare namespace SageMakerRuntime {
24 export type BodyBlob = Buffer|Uint8Array|Blob|string;
25 export type CustomAttributesHeader = string;
26 export type EndpointName = string;
27 export type Header = string;
28 export interface InvokeEndpointInput {
29 /**
30 * The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
31 */
32 EndpointName: EndpointName;
33 /**
34 * Provides input data, in the format specified in the ContentType request header. Amazon SageMaker passes all of the data in the body to the model. For information about the format of the request body, see Common Data Formats—Inference.
35 */
36 Body: BodyBlob;
37 /**
38 * The MIME type of the input data in the request body.
39 */
40 ContentType?: Header;
41 /**
42 * The desired MIME type of the inference in the response.
43 */
44 Accept?: Header;
45 /**
46 * Provides additional information about a request for an inference submitted to a model hosted at an Amazon SageMaker endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to provide an ID that you can use to track a request or to provide other metadata that a service endpoint was programmed to process. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). This feature is currently supported in the AWS SDKs but not in the Amazon SageMaker Python SDK.
47 */
48 CustomAttributes?: CustomAttributesHeader;
49 /**
50 * Specifies the model to be requested for an inference when invoking a multi-model endpoint.
51 */
52 TargetModel?: TargetModelHeader;
53 }
54 export interface InvokeEndpointOutput {
55 /**
56 * Includes the inference provided by the model. For information about the format of the response body, see Common Data Formats—Inference.
57 */
58 Body: BodyBlob;
59 /**
60 * The MIME type of the inference returned in the response body.
61 */
62 ContentType?: Header;
63 /**
64 * Identifies the production variant that was invoked.
65 */
66 InvokedProductionVariant?: Header;
67 /**
68 * Provides additional information in the response about the inference returned by a model hosted at an Amazon SageMaker endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to return an ID received in the CustomAttributes header of a request or other metadata that a service endpoint was programmed to produce. The value must consist of no more than 1024 visible US-ASCII characters as specified in Section 3.3.6. Field Value Components of the Hypertext Transfer Protocol (HTTP/1.1). If the customer wants the custom attribute returned, the model must set the custom attribute to be included on the way back. This feature is currently supported in the AWS SDKs but not in the Amazon SageMaker Python SDK.
69 */
70 CustomAttributes?: CustomAttributesHeader;
71 }
72 export type TargetModelHeader = string;
73 /**
74 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
75 */
76 export type apiVersion = "2017-05-13"|"latest"|string;
77 export interface ClientApiVersions {
78 /**
79 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
80 */
81 apiVersion?: apiVersion;
82 }
83 export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
84 /**
85 * Contains interfaces for use with the SageMakerRuntime client.
86 */
87 export import Types = SageMakerRuntime;
88}
89export = SageMakerRuntime;