@aws-sdk/client-sagemaker-a2i-runtime 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { StopHumanLoopRequest, StopHumanLoopResponse } from "../models/models_0";
4
- import { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
5
- export interface StopHumanLoopCommandInput extends StopHumanLoopRequest {
6
- }
7
- export interface StopHumanLoopCommandOutput extends StopHumanLoopResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopHumanLoopCommand extends $Command<StopHumanLoopCommandInput, StopHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig> {
11
- readonly input: StopHumanLoopCommandInput;
12
- constructor(input: StopHumanLoopCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerA2IRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopHumanLoopCommandInput, StopHumanLoopCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ StopHumanLoopRequest,
10
+ StopHumanLoopResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ SageMakerA2IRuntimeClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../SageMakerA2IRuntimeClient";
17
+ export interface StopHumanLoopCommandInput extends StopHumanLoopRequest {}
18
+ export interface StopHumanLoopCommandOutput
19
+ extends StopHumanLoopResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StopHumanLoopCommand extends $Command<
23
+ StopHumanLoopCommandInput,
24
+ StopHumanLoopCommandOutput,
25
+ SageMakerA2IRuntimeClientResolvedConfig
26
+ > {
27
+ readonly input: StopHumanLoopCommandInput;
28
+ constructor(input: StopHumanLoopCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SageMakerA2IRuntimeClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StopHumanLoopCommandInput, StopHumanLoopCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,5 +1,5 @@
1
- export * from "./DeleteHumanLoopCommand";
2
- export * from "./DescribeHumanLoopCommand";
3
- export * from "./ListHumanLoopsCommand";
4
- export * from "./StartHumanLoopCommand";
5
- export * from "./StopHumanLoopCommand";
1
+ export * from "./DeleteHumanLoopCommand";
2
+ export * from "./DescribeHumanLoopCommand";
3
+ export * from "./ListHumanLoopsCommand";
4
+ export * from "./StartHumanLoopCommand";
5
+ export * from "./StopHumanLoopCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./SageMakerA2IRuntime";
2
- export * from "./SageMakerA2IRuntimeClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { SageMakerA2IRuntimeServiceException } from "./models/SageMakerA2IRuntimeServiceException";
1
+ export * from "./SageMakerA2IRuntime";
2
+ export * from "./SageMakerA2IRuntimeClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SageMakerA2IRuntimeServiceException } from "./models/SageMakerA2IRuntimeServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SageMakerA2IRuntimeServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class SageMakerA2IRuntimeServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";
@@ -1,189 +1,213 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { SageMakerA2IRuntimeServiceException as __BaseException } from "./SageMakerA2IRuntimeServiceException";
3
- export interface DeleteHumanLoopRequest {
4
-
5
- HumanLoopName: string | undefined;
6
- }
7
- export interface DeleteHumanLoopResponse {
8
- }
9
-
10
- export declare class InternalServerException extends __BaseException {
11
- readonly name: "InternalServerException";
12
- readonly $fault: "server";
13
- Message?: string;
14
-
15
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
16
- }
17
-
18
- export declare class ResourceNotFoundException extends __BaseException {
19
- readonly name: "ResourceNotFoundException";
20
- readonly $fault: "client";
21
- Message?: string;
22
-
23
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
24
- }
25
-
26
- export declare class ThrottlingException extends __BaseException {
27
- readonly name: "ThrottlingException";
28
- readonly $fault: "client";
29
- Message?: string;
30
-
31
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
32
- }
33
-
34
- export declare class ValidationException extends __BaseException {
35
- readonly name: "ValidationException";
36
- readonly $fault: "client";
37
- Message?: string;
38
-
39
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
40
- }
41
- export interface DescribeHumanLoopRequest {
42
-
43
- HumanLoopName: string | undefined;
44
- }
45
-
46
- export interface HumanLoopOutput {
47
-
48
- OutputS3Uri: string | undefined;
49
- }
50
- export declare enum HumanLoopStatus {
51
- COMPLETED = "Completed",
52
- FAILED = "Failed",
53
- IN_PROGRESS = "InProgress",
54
- STOPPED = "Stopped",
55
- STOPPING = "Stopping"
56
- }
57
- export interface DescribeHumanLoopResponse {
58
-
59
- CreationTime: Date | undefined;
60
-
61
- FailureReason?: string;
62
-
63
- FailureCode?: string;
64
-
65
- HumanLoopStatus: HumanLoopStatus | string | undefined;
66
-
67
- HumanLoopName: string | undefined;
68
-
69
- HumanLoopArn: string | undefined;
70
-
71
- FlowDefinitionArn: string | undefined;
72
-
73
- HumanLoopOutput?: HumanLoopOutput;
74
- }
75
- export declare enum SortOrder {
76
- ASCENDING = "Ascending",
77
- DESCENDING = "Descending"
78
- }
79
- export interface ListHumanLoopsRequest {
80
-
81
- CreationTimeAfter?: Date;
82
-
83
- CreationTimeBefore?: Date;
84
-
85
- FlowDefinitionArn: string | undefined;
86
-
87
- SortOrder?: SortOrder | string;
88
-
89
- NextToken?: string;
90
-
91
- MaxResults?: number;
92
- }
93
-
94
- export interface HumanLoopSummary {
95
-
96
- HumanLoopName?: string;
97
-
98
- HumanLoopStatus?: HumanLoopStatus | string;
99
-
100
- CreationTime?: Date;
101
-
102
- FailureReason?: string;
103
-
104
- FlowDefinitionArn?: string;
105
- }
106
- export interface ListHumanLoopsResponse {
107
-
108
- HumanLoopSummaries: HumanLoopSummary[] | undefined;
109
-
110
- NextToken?: string;
111
- }
112
-
113
- export declare class ConflictException extends __BaseException {
114
- readonly name: "ConflictException";
115
- readonly $fault: "client";
116
- Message?: string;
117
-
118
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
119
- }
120
-
121
- export declare class ServiceQuotaExceededException extends __BaseException {
122
- readonly name: "ServiceQuotaExceededException";
123
- readonly $fault: "client";
124
- Message?: string;
125
-
126
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
127
- }
128
- export declare enum ContentClassifier {
129
- FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
130
- FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation"
131
- }
132
-
133
- export interface HumanLoopDataAttributes {
134
-
135
- ContentClassifiers: (ContentClassifier | string)[] | undefined;
136
- }
137
-
138
- export interface HumanLoopInput {
139
-
140
- InputContent: string | undefined;
141
- }
142
- export interface StartHumanLoopRequest {
143
-
144
- HumanLoopName: string | undefined;
145
-
146
- FlowDefinitionArn: string | undefined;
147
-
148
- HumanLoopInput: HumanLoopInput | undefined;
149
-
150
- DataAttributes?: HumanLoopDataAttributes;
151
- }
152
- export interface StartHumanLoopResponse {
153
-
154
- HumanLoopArn?: string;
155
- }
156
- export interface StopHumanLoopRequest {
157
-
158
- HumanLoopName: string | undefined;
159
- }
160
- export interface StopHumanLoopResponse {
161
- }
162
-
163
- export declare const DeleteHumanLoopRequestFilterSensitiveLog: (obj: DeleteHumanLoopRequest) => any;
164
-
165
- export declare const DeleteHumanLoopResponseFilterSensitiveLog: (obj: DeleteHumanLoopResponse) => any;
166
-
167
- export declare const DescribeHumanLoopRequestFilterSensitiveLog: (obj: DescribeHumanLoopRequest) => any;
168
-
169
- export declare const HumanLoopOutputFilterSensitiveLog: (obj: HumanLoopOutput) => any;
170
-
171
- export declare const DescribeHumanLoopResponseFilterSensitiveLog: (obj: DescribeHumanLoopResponse) => any;
172
-
173
- export declare const ListHumanLoopsRequestFilterSensitiveLog: (obj: ListHumanLoopsRequest) => any;
174
-
175
- export declare const HumanLoopSummaryFilterSensitiveLog: (obj: HumanLoopSummary) => any;
176
-
177
- export declare const ListHumanLoopsResponseFilterSensitiveLog: (obj: ListHumanLoopsResponse) => any;
178
-
179
- export declare const HumanLoopDataAttributesFilterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
180
-
181
- export declare const HumanLoopInputFilterSensitiveLog: (obj: HumanLoopInput) => any;
182
-
183
- export declare const StartHumanLoopRequestFilterSensitiveLog: (obj: StartHumanLoopRequest) => any;
184
-
185
- export declare const StartHumanLoopResponseFilterSensitiveLog: (obj: StartHumanLoopResponse) => any;
186
-
187
- export declare const StopHumanLoopRequestFilterSensitiveLog: (obj: StopHumanLoopRequest) => any;
188
-
189
- export declare const StopHumanLoopResponseFilterSensitiveLog: (obj: StopHumanLoopResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SageMakerA2IRuntimeServiceException as __BaseException } from "./SageMakerA2IRuntimeServiceException";
3
+ export interface DeleteHumanLoopRequest {
4
+ HumanLoopName: string | undefined;
5
+ }
6
+ export interface DeleteHumanLoopResponse {}
7
+
8
+ export declare class InternalServerException extends __BaseException {
9
+ readonly name: "InternalServerException";
10
+ readonly $fault: "server";
11
+ Message?: string;
12
+
13
+ constructor(
14
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
15
+ );
16
+ }
17
+
18
+ export declare class ResourceNotFoundException extends __BaseException {
19
+ readonly name: "ResourceNotFoundException";
20
+ readonly $fault: "client";
21
+ Message?: string;
22
+
23
+ constructor(
24
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
25
+ );
26
+ }
27
+
28
+ export declare class ThrottlingException extends __BaseException {
29
+ readonly name: "ThrottlingException";
30
+ readonly $fault: "client";
31
+ Message?: string;
32
+
33
+ constructor(
34
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
35
+ );
36
+ }
37
+
38
+ export declare class ValidationException extends __BaseException {
39
+ readonly name: "ValidationException";
40
+ readonly $fault: "client";
41
+ Message?: string;
42
+
43
+ constructor(
44
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
45
+ );
46
+ }
47
+ export interface DescribeHumanLoopRequest {
48
+ HumanLoopName: string | undefined;
49
+ }
50
+
51
+ export interface HumanLoopOutput {
52
+ OutputS3Uri: string | undefined;
53
+ }
54
+ export declare enum HumanLoopStatus {
55
+ COMPLETED = "Completed",
56
+ FAILED = "Failed",
57
+ IN_PROGRESS = "InProgress",
58
+ STOPPED = "Stopped",
59
+ STOPPING = "Stopping",
60
+ }
61
+ export interface DescribeHumanLoopResponse {
62
+ CreationTime: Date | undefined;
63
+
64
+ FailureReason?: string;
65
+
66
+ FailureCode?: string;
67
+
68
+ HumanLoopStatus: HumanLoopStatus | string | undefined;
69
+
70
+ HumanLoopName: string | undefined;
71
+
72
+ HumanLoopArn: string | undefined;
73
+
74
+ FlowDefinitionArn: string | undefined;
75
+
76
+ HumanLoopOutput?: HumanLoopOutput;
77
+ }
78
+ export declare enum SortOrder {
79
+ ASCENDING = "Ascending",
80
+ DESCENDING = "Descending",
81
+ }
82
+ export interface ListHumanLoopsRequest {
83
+ CreationTimeAfter?: Date;
84
+
85
+ CreationTimeBefore?: Date;
86
+
87
+ FlowDefinitionArn: string | undefined;
88
+
89
+ SortOrder?: SortOrder | string;
90
+
91
+ NextToken?: string;
92
+
93
+ MaxResults?: number;
94
+ }
95
+
96
+ export interface HumanLoopSummary {
97
+ HumanLoopName?: string;
98
+
99
+ HumanLoopStatus?: HumanLoopStatus | string;
100
+
101
+ CreationTime?: Date;
102
+
103
+ FailureReason?: string;
104
+
105
+ FlowDefinitionArn?: string;
106
+ }
107
+ export interface ListHumanLoopsResponse {
108
+ HumanLoopSummaries: HumanLoopSummary[] | undefined;
109
+
110
+ NextToken?: string;
111
+ }
112
+
113
+ export declare class ConflictException extends __BaseException {
114
+ readonly name: "ConflictException";
115
+ readonly $fault: "client";
116
+ Message?: string;
117
+
118
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
119
+ }
120
+
121
+ export declare class ServiceQuotaExceededException extends __BaseException {
122
+ readonly name: "ServiceQuotaExceededException";
123
+ readonly $fault: "client";
124
+ Message?: string;
125
+
126
+ constructor(
127
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
128
+ );
129
+ }
130
+ export declare enum ContentClassifier {
131
+ FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
132
+ FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation",
133
+ }
134
+
135
+ export interface HumanLoopDataAttributes {
136
+ ContentClassifiers: (ContentClassifier | string)[] | undefined;
137
+ }
138
+
139
+ export interface HumanLoopInput {
140
+ InputContent: string | undefined;
141
+ }
142
+ export interface StartHumanLoopRequest {
143
+ HumanLoopName: string | undefined;
144
+
145
+ FlowDefinitionArn: string | undefined;
146
+
147
+ HumanLoopInput: HumanLoopInput | undefined;
148
+
149
+ DataAttributes?: HumanLoopDataAttributes;
150
+ }
151
+ export interface StartHumanLoopResponse {
152
+ HumanLoopArn?: string;
153
+ }
154
+ export interface StopHumanLoopRequest {
155
+ HumanLoopName: string | undefined;
156
+ }
157
+ export interface StopHumanLoopResponse {}
158
+
159
+ export declare const DeleteHumanLoopRequestFilterSensitiveLog: (
160
+ obj: DeleteHumanLoopRequest
161
+ ) => any;
162
+
163
+ export declare const DeleteHumanLoopResponseFilterSensitiveLog: (
164
+ obj: DeleteHumanLoopResponse
165
+ ) => any;
166
+
167
+ export declare const DescribeHumanLoopRequestFilterSensitiveLog: (
168
+ obj: DescribeHumanLoopRequest
169
+ ) => any;
170
+
171
+ export declare const HumanLoopOutputFilterSensitiveLog: (
172
+ obj: HumanLoopOutput
173
+ ) => any;
174
+
175
+ export declare const DescribeHumanLoopResponseFilterSensitiveLog: (
176
+ obj: DescribeHumanLoopResponse
177
+ ) => any;
178
+
179
+ export declare const ListHumanLoopsRequestFilterSensitiveLog: (
180
+ obj: ListHumanLoopsRequest
181
+ ) => any;
182
+
183
+ export declare const HumanLoopSummaryFilterSensitiveLog: (
184
+ obj: HumanLoopSummary
185
+ ) => any;
186
+
187
+ export declare const ListHumanLoopsResponseFilterSensitiveLog: (
188
+ obj: ListHumanLoopsResponse
189
+ ) => any;
190
+
191
+ export declare const HumanLoopDataAttributesFilterSensitiveLog: (
192
+ obj: HumanLoopDataAttributes
193
+ ) => any;
194
+
195
+ export declare const HumanLoopInputFilterSensitiveLog: (
196
+ obj: HumanLoopInput
197
+ ) => any;
198
+
199
+ export declare const StartHumanLoopRequestFilterSensitiveLog: (
200
+ obj: StartHumanLoopRequest
201
+ ) => any;
202
+
203
+ export declare const StartHumanLoopResponseFilterSensitiveLog: (
204
+ obj: StartHumanLoopResponse
205
+ ) => any;
206
+
207
+ export declare const StopHumanLoopRequestFilterSensitiveLog: (
208
+ obj: StopHumanLoopRequest
209
+ ) => any;
210
+
211
+ export declare const StopHumanLoopResponseFilterSensitiveLog: (
212
+ obj: StopHumanLoopResponse
213
+ ) => any;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { SageMakerA2IRuntime } from "../SageMakerA2IRuntime";
3
- import { SageMakerA2IRuntimeClient } from "../SageMakerA2IRuntimeClient";
4
- export interface SageMakerA2IRuntimePaginationConfiguration extends PaginationConfiguration {
5
- client: SageMakerA2IRuntime | SageMakerA2IRuntimeClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SageMakerA2IRuntime } from "../SageMakerA2IRuntime";
3
+ import { SageMakerA2IRuntimeClient } from "../SageMakerA2IRuntimeClient";
4
+ export interface SageMakerA2IRuntimePaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: SageMakerA2IRuntime | SageMakerA2IRuntimeClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput } from "../commands/ListHumanLoopsCommand";
3
- import { SageMakerA2IRuntimePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListHumanLoops(config: SageMakerA2IRuntimePaginationConfiguration, input: ListHumanLoopsCommandInput, ...additionalArguments: any): Paginator<ListHumanLoopsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListHumanLoopsCommandInput,
4
+ ListHumanLoopsCommandOutput,
5
+ } from "../commands/ListHumanLoopsCommand";
6
+ import { SageMakerA2IRuntimePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListHumanLoops(
8
+ config: SageMakerA2IRuntimePaginationConfiguration,
9
+ input: ListHumanLoopsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListHumanLoopsCommandOutput>;
@@ -1,2 +1,2 @@
1
- export * from "./Interfaces";
2
- export * from "./ListHumanLoopsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListHumanLoopsPaginator";
@@ -1,17 +1,65 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput } from "../commands/DeleteHumanLoopCommand";
4
- import { DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput } from "../commands/DescribeHumanLoopCommand";
5
- import { ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput } from "../commands/ListHumanLoopsCommand";
6
- import { StartHumanLoopCommandInput, StartHumanLoopCommandOutput } from "../commands/StartHumanLoopCommand";
7
- import { StopHumanLoopCommandInput, StopHumanLoopCommandOutput } from "../commands/StopHumanLoopCommand";
8
- export declare const serializeAws_restJson1DeleteHumanLoopCommand: (input: DeleteHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1DescribeHumanLoopCommand: (input: DescribeHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1ListHumanLoopsCommand: (input: ListHumanLoopsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const serializeAws_restJson1StartHumanLoopCommand: (input: StartHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
- export declare const serializeAws_restJson1StopHumanLoopCommand: (input: StopHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
- export declare const deserializeAws_restJson1DeleteHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHumanLoopCommandOutput>;
14
- export declare const deserializeAws_restJson1DescribeHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHumanLoopCommandOutput>;
15
- export declare const deserializeAws_restJson1ListHumanLoopsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHumanLoopsCommandOutput>;
16
- export declare const deserializeAws_restJson1StartHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartHumanLoopCommandOutput>;
17
- export declare const deserializeAws_restJson1StopHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopHumanLoopCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ DeleteHumanLoopCommandInput,
8
+ DeleteHumanLoopCommandOutput,
9
+ } from "../commands/DeleteHumanLoopCommand";
10
+ import {
11
+ DescribeHumanLoopCommandInput,
12
+ DescribeHumanLoopCommandOutput,
13
+ } from "../commands/DescribeHumanLoopCommand";
14
+ import {
15
+ ListHumanLoopsCommandInput,
16
+ ListHumanLoopsCommandOutput,
17
+ } from "../commands/ListHumanLoopsCommand";
18
+ import {
19
+ StartHumanLoopCommandInput,
20
+ StartHumanLoopCommandOutput,
21
+ } from "../commands/StartHumanLoopCommand";
22
+ import {
23
+ StopHumanLoopCommandInput,
24
+ StopHumanLoopCommandOutput,
25
+ } from "../commands/StopHumanLoopCommand";
26
+ export declare const serializeAws_restJson1DeleteHumanLoopCommand: (
27
+ input: DeleteHumanLoopCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1DescribeHumanLoopCommand: (
31
+ input: DescribeHumanLoopCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1ListHumanLoopsCommand: (
35
+ input: ListHumanLoopsCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_restJson1StartHumanLoopCommand: (
39
+ input: StartHumanLoopCommandInput,
40
+ context: __SerdeContext
41
+ ) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_restJson1StopHumanLoopCommand: (
43
+ input: StopHumanLoopCommandInput,
44
+ context: __SerdeContext
45
+ ) => Promise<__HttpRequest>;
46
+ export declare const deserializeAws_restJson1DeleteHumanLoopCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<DeleteHumanLoopCommandOutput>;
50
+ export declare const deserializeAws_restJson1DescribeHumanLoopCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<DescribeHumanLoopCommandOutput>;
54
+ export declare const deserializeAws_restJson1ListHumanLoopsCommand: (
55
+ output: __HttpResponse,
56
+ context: __SerdeContext
57
+ ) => Promise<ListHumanLoopsCommandOutput>;
58
+ export declare const deserializeAws_restJson1StartHumanLoopCommand: (
59
+ output: __HttpResponse,
60
+ context: __SerdeContext
61
+ ) => Promise<StartHumanLoopCommandOutput>;
62
+ export declare const deserializeAws_restJson1StopHumanLoopCommand: (
63
+ output: __HttpResponse,
64
+ context: __SerdeContext
65
+ ) => Promise<StopHumanLoopCommandOutput>;