@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/SageMakerA2IRuntime.d.ts +94 -30
- package/dist-types/ts3.4/SageMakerA2IRuntimeClient.d.ts +160 -78
- package/dist-types/ts3.4/commands/DeleteHumanLoopCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeHumanLoopCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListHumanLoopsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartHumanLoopCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopHumanLoopCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +5 -5
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SageMakerA2IRuntimeServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +213 -189
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListHumanLoopsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +65 -17
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
export declare class ConflictException extends __BaseException {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
142
|
-
export interface StartHumanLoopRequest {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
export declare const
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
export declare const DescribeHumanLoopRequestFilterSensitiveLog: (
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
export declare const
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
export declare const
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
export declare const
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
export declare const
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
export declare const
|
|
188
|
-
|
|
189
|
-
|
|
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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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>;
|