@aws-sdk/client-iot-jobs-data-plane 3.168.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,196 +1,222 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException";
3
-
4
- export declare class CertificateValidationException extends __BaseException {
5
- readonly name: "CertificateValidationException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<CertificateValidationException, __BaseException>);
9
- }
10
- export interface DescribeJobExecutionRequest {
11
-
12
- jobId: string | undefined;
13
-
14
- thingName: string | undefined;
15
-
16
- includeJobDocument?: boolean;
17
-
18
- executionNumber?: number;
19
- }
20
- export declare enum JobExecutionStatus {
21
- CANCELED = "CANCELED",
22
- FAILED = "FAILED",
23
- IN_PROGRESS = "IN_PROGRESS",
24
- QUEUED = "QUEUED",
25
- REJECTED = "REJECTED",
26
- REMOVED = "REMOVED",
27
- SUCCEEDED = "SUCCEEDED",
28
- TIMED_OUT = "TIMED_OUT"
29
- }
30
-
31
- export interface JobExecution {
32
-
33
- jobId?: string;
34
-
35
- thingName?: string;
36
-
37
- status?: JobExecutionStatus | string;
38
-
39
- statusDetails?: Record<string, string>;
40
-
41
- queuedAt?: number;
42
-
43
- startedAt?: number;
44
-
45
- lastUpdatedAt?: number;
46
-
47
- approximateSecondsBeforeTimedOut?: number;
48
-
49
- versionNumber?: number;
50
-
51
- executionNumber?: number;
52
-
53
- jobDocument?: string;
54
- }
55
- export interface DescribeJobExecutionResponse {
56
-
57
- execution?: JobExecution;
58
- }
59
-
60
- export declare class InvalidRequestException extends __BaseException {
61
- readonly name: "InvalidRequestException";
62
- readonly $fault: "client";
63
-
64
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
65
- }
66
-
67
- export declare class ResourceNotFoundException extends __BaseException {
68
- readonly name: "ResourceNotFoundException";
69
- readonly $fault: "client";
70
-
71
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
72
- }
73
-
74
- export declare class ServiceUnavailableException extends __BaseException {
75
- readonly name: "ServiceUnavailableException";
76
- readonly $fault: "server";
77
-
78
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
79
- }
80
-
81
- export declare class TerminalStateException extends __BaseException {
82
- readonly name: "TerminalStateException";
83
- readonly $fault: "client";
84
-
85
- constructor(opts: __ExceptionOptionType<TerminalStateException, __BaseException>);
86
- }
87
-
88
- export declare class ThrottlingException extends __BaseException {
89
- readonly name: "ThrottlingException";
90
- readonly $fault: "client";
91
-
92
- payload?: Uint8Array;
93
-
94
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
95
- }
96
- export interface GetPendingJobExecutionsRequest {
97
-
98
- thingName: string | undefined;
99
- }
100
-
101
- export interface JobExecutionSummary {
102
-
103
- jobId?: string;
104
-
105
- queuedAt?: number;
106
-
107
- startedAt?: number;
108
-
109
- lastUpdatedAt?: number;
110
-
111
- versionNumber?: number;
112
-
113
- executionNumber?: number;
114
- }
115
- export interface GetPendingJobExecutionsResponse {
116
-
117
- inProgressJobs?: JobExecutionSummary[];
118
-
119
- queuedJobs?: JobExecutionSummary[];
120
- }
121
-
122
- export declare class InvalidStateTransitionException extends __BaseException {
123
- readonly name: "InvalidStateTransitionException";
124
- readonly $fault: "client";
125
-
126
- constructor(opts: __ExceptionOptionType<InvalidStateTransitionException, __BaseException>);
127
- }
128
- export interface StartNextPendingJobExecutionRequest {
129
-
130
- thingName: string | undefined;
131
-
132
- statusDetails?: Record<string, string>;
133
-
134
- stepTimeoutInMinutes?: number;
135
- }
136
- export interface StartNextPendingJobExecutionResponse {
137
-
138
- execution?: JobExecution;
139
- }
140
- export interface UpdateJobExecutionRequest {
141
-
142
- jobId: string | undefined;
143
-
144
- thingName: string | undefined;
145
-
146
- status: JobExecutionStatus | string | undefined;
147
-
148
- statusDetails?: Record<string, string>;
149
-
150
- stepTimeoutInMinutes?: number;
151
-
152
- expectedVersion?: number;
153
-
154
- includeJobExecutionState?: boolean;
155
-
156
- includeJobDocument?: boolean;
157
-
158
- executionNumber?: number;
159
- }
160
-
161
- export interface JobExecutionState {
162
-
163
- status?: JobExecutionStatus | string;
164
-
165
- statusDetails?: Record<string, string>;
166
-
167
- versionNumber?: number;
168
- }
169
- export interface UpdateJobExecutionResponse {
170
-
171
- executionState?: JobExecutionState;
172
-
173
- jobDocument?: string;
174
- }
175
-
176
- export declare const DescribeJobExecutionRequestFilterSensitiveLog: (obj: DescribeJobExecutionRequest) => any;
177
-
178
- export declare const JobExecutionFilterSensitiveLog: (obj: JobExecution) => any;
179
-
180
- export declare const DescribeJobExecutionResponseFilterSensitiveLog: (obj: DescribeJobExecutionResponse) => any;
181
-
182
- export declare const GetPendingJobExecutionsRequestFilterSensitiveLog: (obj: GetPendingJobExecutionsRequest) => any;
183
-
184
- export declare const JobExecutionSummaryFilterSensitiveLog: (obj: JobExecutionSummary) => any;
185
-
186
- export declare const GetPendingJobExecutionsResponseFilterSensitiveLog: (obj: GetPendingJobExecutionsResponse) => any;
187
-
188
- export declare const StartNextPendingJobExecutionRequestFilterSensitiveLog: (obj: StartNextPendingJobExecutionRequest) => any;
189
-
190
- export declare const StartNextPendingJobExecutionResponseFilterSensitiveLog: (obj: StartNextPendingJobExecutionResponse) => any;
191
-
192
- export declare const UpdateJobExecutionRequestFilterSensitiveLog: (obj: UpdateJobExecutionRequest) => any;
193
-
194
- export declare const JobExecutionStateFilterSensitiveLog: (obj: JobExecutionState) => any;
195
-
196
- export declare const UpdateJobExecutionResponseFilterSensitiveLog: (obj: UpdateJobExecutionResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException";
3
+
4
+ export declare class CertificateValidationException extends __BaseException {
5
+ readonly name: "CertificateValidationException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<CertificateValidationException, __BaseException>
10
+ );
11
+ }
12
+ export interface DescribeJobExecutionRequest {
13
+ jobId: string | undefined;
14
+
15
+ thingName: string | undefined;
16
+
17
+ includeJobDocument?: boolean;
18
+
19
+ executionNumber?: number;
20
+ }
21
+ export declare enum JobExecutionStatus {
22
+ CANCELED = "CANCELED",
23
+ FAILED = "FAILED",
24
+ IN_PROGRESS = "IN_PROGRESS",
25
+ QUEUED = "QUEUED",
26
+ REJECTED = "REJECTED",
27
+ REMOVED = "REMOVED",
28
+ SUCCEEDED = "SUCCEEDED",
29
+ TIMED_OUT = "TIMED_OUT",
30
+ }
31
+
32
+ export interface JobExecution {
33
+ jobId?: string;
34
+
35
+ thingName?: string;
36
+
37
+ status?: JobExecutionStatus | string;
38
+
39
+ statusDetails?: Record<string, string>;
40
+
41
+ queuedAt?: number;
42
+
43
+ startedAt?: number;
44
+
45
+ lastUpdatedAt?: number;
46
+
47
+ approximateSecondsBeforeTimedOut?: number;
48
+
49
+ versionNumber?: number;
50
+
51
+ executionNumber?: number;
52
+
53
+ jobDocument?: string;
54
+ }
55
+ export interface DescribeJobExecutionResponse {
56
+ execution?: JobExecution;
57
+ }
58
+
59
+ export declare class InvalidRequestException extends __BaseException {
60
+ readonly name: "InvalidRequestException";
61
+ readonly $fault: "client";
62
+
63
+ constructor(
64
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
65
+ );
66
+ }
67
+
68
+ export declare class ResourceNotFoundException extends __BaseException {
69
+ readonly name: "ResourceNotFoundException";
70
+ readonly $fault: "client";
71
+
72
+ constructor(
73
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
74
+ );
75
+ }
76
+
77
+ export declare class ServiceUnavailableException extends __BaseException {
78
+ readonly name: "ServiceUnavailableException";
79
+ readonly $fault: "server";
80
+
81
+ constructor(
82
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
83
+ );
84
+ }
85
+
86
+ export declare class TerminalStateException extends __BaseException {
87
+ readonly name: "TerminalStateException";
88
+ readonly $fault: "client";
89
+
90
+ constructor(
91
+ opts: __ExceptionOptionType<TerminalStateException, __BaseException>
92
+ );
93
+ }
94
+
95
+ export declare class ThrottlingException extends __BaseException {
96
+ readonly name: "ThrottlingException";
97
+ readonly $fault: "client";
98
+
99
+ payload?: Uint8Array;
100
+
101
+ constructor(
102
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
103
+ );
104
+ }
105
+ export interface GetPendingJobExecutionsRequest {
106
+ thingName: string | undefined;
107
+ }
108
+
109
+ export interface JobExecutionSummary {
110
+ jobId?: string;
111
+
112
+ queuedAt?: number;
113
+
114
+ startedAt?: number;
115
+
116
+ lastUpdatedAt?: number;
117
+
118
+ versionNumber?: number;
119
+
120
+ executionNumber?: number;
121
+ }
122
+ export interface GetPendingJobExecutionsResponse {
123
+ inProgressJobs?: JobExecutionSummary[];
124
+
125
+ queuedJobs?: JobExecutionSummary[];
126
+ }
127
+
128
+ export declare class InvalidStateTransitionException extends __BaseException {
129
+ readonly name: "InvalidStateTransitionException";
130
+ readonly $fault: "client";
131
+
132
+ constructor(
133
+ opts: __ExceptionOptionType<
134
+ InvalidStateTransitionException,
135
+ __BaseException
136
+ >
137
+ );
138
+ }
139
+ export interface StartNextPendingJobExecutionRequest {
140
+ thingName: string | undefined;
141
+
142
+ statusDetails?: Record<string, string>;
143
+
144
+ stepTimeoutInMinutes?: number;
145
+ }
146
+ export interface StartNextPendingJobExecutionResponse {
147
+ execution?: JobExecution;
148
+ }
149
+ export interface UpdateJobExecutionRequest {
150
+ jobId: string | undefined;
151
+
152
+ thingName: string | undefined;
153
+
154
+ status: JobExecutionStatus | string | undefined;
155
+
156
+ statusDetails?: Record<string, string>;
157
+
158
+ stepTimeoutInMinutes?: number;
159
+
160
+ expectedVersion?: number;
161
+
162
+ includeJobExecutionState?: boolean;
163
+
164
+ includeJobDocument?: boolean;
165
+
166
+ executionNumber?: number;
167
+ }
168
+
169
+ export interface JobExecutionState {
170
+ status?: JobExecutionStatus | string;
171
+
172
+ statusDetails?: Record<string, string>;
173
+
174
+ versionNumber?: number;
175
+ }
176
+ export interface UpdateJobExecutionResponse {
177
+ executionState?: JobExecutionState;
178
+
179
+ jobDocument?: string;
180
+ }
181
+
182
+ export declare const DescribeJobExecutionRequestFilterSensitiveLog: (
183
+ obj: DescribeJobExecutionRequest
184
+ ) => any;
185
+
186
+ export declare const JobExecutionFilterSensitiveLog: (obj: JobExecution) => any;
187
+
188
+ export declare const DescribeJobExecutionResponseFilterSensitiveLog: (
189
+ obj: DescribeJobExecutionResponse
190
+ ) => any;
191
+
192
+ export declare const GetPendingJobExecutionsRequestFilterSensitiveLog: (
193
+ obj: GetPendingJobExecutionsRequest
194
+ ) => any;
195
+
196
+ export declare const JobExecutionSummaryFilterSensitiveLog: (
197
+ obj: JobExecutionSummary
198
+ ) => any;
199
+
200
+ export declare const GetPendingJobExecutionsResponseFilterSensitiveLog: (
201
+ obj: GetPendingJobExecutionsResponse
202
+ ) => any;
203
+
204
+ export declare const StartNextPendingJobExecutionRequestFilterSensitiveLog: (
205
+ obj: StartNextPendingJobExecutionRequest
206
+ ) => any;
207
+
208
+ export declare const StartNextPendingJobExecutionResponseFilterSensitiveLog: (
209
+ obj: StartNextPendingJobExecutionResponse
210
+ ) => any;
211
+
212
+ export declare const UpdateJobExecutionRequestFilterSensitiveLog: (
213
+ obj: UpdateJobExecutionRequest
214
+ ) => any;
215
+
216
+ export declare const JobExecutionStateFilterSensitiveLog: (
217
+ obj: JobExecutionState
218
+ ) => any;
219
+
220
+ export declare const UpdateJobExecutionResponseFilterSensitiveLog: (
221
+ obj: UpdateJobExecutionResponse
222
+ ) => any;
@@ -1,14 +1,53 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput } from "../commands/DescribeJobExecutionCommand";
4
- import { GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput } from "../commands/GetPendingJobExecutionsCommand";
5
- import { StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput } from "../commands/StartNextPendingJobExecutionCommand";
6
- import { UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput } from "../commands/UpdateJobExecutionCommand";
7
- export declare const serializeAws_restJson1DescribeJobExecutionCommand: (input: DescribeJobExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
- export declare const serializeAws_restJson1GetPendingJobExecutionsCommand: (input: GetPendingJobExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1StartNextPendingJobExecutionCommand: (input: StartNextPendingJobExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1UpdateJobExecutionCommand: (input: UpdateJobExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const deserializeAws_restJson1DescribeJobExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobExecutionCommandOutput>;
12
- export declare const deserializeAws_restJson1GetPendingJobExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPendingJobExecutionsCommandOutput>;
13
- export declare const deserializeAws_restJson1StartNextPendingJobExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartNextPendingJobExecutionCommandOutput>;
14
- export declare const deserializeAws_restJson1UpdateJobExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateJobExecutionCommandOutput>;
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
+ DescribeJobExecutionCommandInput,
8
+ DescribeJobExecutionCommandOutput,
9
+ } from "../commands/DescribeJobExecutionCommand";
10
+ import {
11
+ GetPendingJobExecutionsCommandInput,
12
+ GetPendingJobExecutionsCommandOutput,
13
+ } from "../commands/GetPendingJobExecutionsCommand";
14
+ import {
15
+ StartNextPendingJobExecutionCommandInput,
16
+ StartNextPendingJobExecutionCommandOutput,
17
+ } from "../commands/StartNextPendingJobExecutionCommand";
18
+ import {
19
+ UpdateJobExecutionCommandInput,
20
+ UpdateJobExecutionCommandOutput,
21
+ } from "../commands/UpdateJobExecutionCommand";
22
+ export declare const serializeAws_restJson1DescribeJobExecutionCommand: (
23
+ input: DescribeJobExecutionCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1GetPendingJobExecutionsCommand: (
27
+ input: GetPendingJobExecutionsCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1StartNextPendingJobExecutionCommand: (
31
+ input: StartNextPendingJobExecutionCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1UpdateJobExecutionCommand: (
35
+ input: UpdateJobExecutionCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const deserializeAws_restJson1DescribeJobExecutionCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<DescribeJobExecutionCommandOutput>;
42
+ export declare const deserializeAws_restJson1GetPendingJobExecutionsCommand: (
43
+ output: __HttpResponse,
44
+ context: __SerdeContext
45
+ ) => Promise<GetPendingJobExecutionsCommandOutput>;
46
+ export declare const deserializeAws_restJson1StartNextPendingJobExecutionCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<StartNextPendingJobExecutionCommandOutput>;
50
+ export declare const deserializeAws_restJson1UpdateJobExecutionCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<UpdateJobExecutionCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient";
3
-
4
- export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: IoTJobsDataPlaneClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };