@aws-sdk/client-mediastore-data 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/MediaStoreData.d.ts +89 -30
- package/dist-types/ts3.4/MediaStoreDataClient.d.ts +135 -78
- package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeObjectCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetObjectCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListItemsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutObjectCommand.d.ts +39 -24
- 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/MediaStoreDataServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +138 -166
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListItemsPaginator.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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./MediaStoreData";
|
|
2
|
-
export * from "./MediaStoreDataClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { MediaStoreDataServiceException } from "./models/MediaStoreDataServiceException";
|
|
1
|
+
export * from "./MediaStoreData";
|
|
2
|
+
export * from "./MediaStoreDataClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { MediaStoreDataServiceException } from "./models/MediaStoreDataServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class MediaStoreDataServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|
|
@@ -1,166 +1,138 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
export interface
|
|
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
|
-
export
|
|
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
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
ContentSHA256?: string;
|
|
140
|
-
|
|
141
|
-
ETag?: string;
|
|
142
|
-
|
|
143
|
-
StorageClass?: StorageClass | string;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
export declare const DeleteObjectRequestFilterSensitiveLog: (obj: DeleteObjectRequest) => any;
|
|
147
|
-
|
|
148
|
-
export declare const DeleteObjectResponseFilterSensitiveLog: (obj: DeleteObjectResponse) => any;
|
|
149
|
-
|
|
150
|
-
export declare const DescribeObjectRequestFilterSensitiveLog: (obj: DescribeObjectRequest) => any;
|
|
151
|
-
|
|
152
|
-
export declare const DescribeObjectResponseFilterSensitiveLog: (obj: DescribeObjectResponse) => any;
|
|
153
|
-
|
|
154
|
-
export declare const GetObjectRequestFilterSensitiveLog: (obj: GetObjectRequest) => any;
|
|
155
|
-
|
|
156
|
-
export declare const GetObjectResponseFilterSensitiveLog: (obj: GetObjectResponse) => any;
|
|
157
|
-
|
|
158
|
-
export declare const ItemFilterSensitiveLog: (obj: Item) => any;
|
|
159
|
-
|
|
160
|
-
export declare const ListItemsRequestFilterSensitiveLog: (obj: ListItemsRequest) => any;
|
|
161
|
-
|
|
162
|
-
export declare const ListItemsResponseFilterSensitiveLog: (obj: ListItemsResponse) => any;
|
|
163
|
-
|
|
164
|
-
export declare const PutObjectRequestFilterSensitiveLog: (obj: PutObjectRequest) => any;
|
|
165
|
-
|
|
166
|
-
export declare const PutObjectResponseFilterSensitiveLog: (obj: PutObjectResponse) => any;
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Readable } from "stream";
|
|
3
|
+
import { MediaStoreDataServiceException as __BaseException } from "./MediaStoreDataServiceException";
|
|
4
|
+
export declare class ContainerNotFoundException extends __BaseException {
|
|
5
|
+
readonly name: "ContainerNotFoundException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<ContainerNotFoundException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export interface DeleteObjectRequest {
|
|
13
|
+
Path: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface DeleteObjectResponse {}
|
|
16
|
+
export declare class InternalServerError extends __BaseException {
|
|
17
|
+
readonly name: "InternalServerError";
|
|
18
|
+
readonly $fault: "server";
|
|
19
|
+
Message?: string;
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ObjectNotFoundException extends __BaseException {
|
|
25
|
+
readonly name: "ObjectNotFoundException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
Message?: string;
|
|
28
|
+
constructor(
|
|
29
|
+
opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export interface DescribeObjectRequest {
|
|
33
|
+
Path: string | undefined;
|
|
34
|
+
}
|
|
35
|
+
export interface DescribeObjectResponse {
|
|
36
|
+
ETag?: string;
|
|
37
|
+
ContentType?: string;
|
|
38
|
+
ContentLength?: number;
|
|
39
|
+
CacheControl?: string;
|
|
40
|
+
LastModified?: Date;
|
|
41
|
+
}
|
|
42
|
+
export interface GetObjectRequest {
|
|
43
|
+
Path: string | undefined;
|
|
44
|
+
Range?: string;
|
|
45
|
+
}
|
|
46
|
+
export interface GetObjectResponse {
|
|
47
|
+
Body?: Readable | ReadableStream | Blob;
|
|
48
|
+
CacheControl?: string;
|
|
49
|
+
ContentRange?: string;
|
|
50
|
+
ContentLength?: number;
|
|
51
|
+
ContentType?: string;
|
|
52
|
+
ETag?: string;
|
|
53
|
+
LastModified?: Date;
|
|
54
|
+
StatusCode: number | undefined;
|
|
55
|
+
}
|
|
56
|
+
export declare class RequestedRangeNotSatisfiableException extends __BaseException {
|
|
57
|
+
readonly name: "RequestedRangeNotSatisfiableException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
Message?: string;
|
|
60
|
+
constructor(
|
|
61
|
+
opts: __ExceptionOptionType<
|
|
62
|
+
RequestedRangeNotSatisfiableException,
|
|
63
|
+
__BaseException
|
|
64
|
+
>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
export declare enum ItemType {
|
|
68
|
+
FOLDER = "FOLDER",
|
|
69
|
+
OBJECT = "OBJECT",
|
|
70
|
+
}
|
|
71
|
+
export interface Item {
|
|
72
|
+
Name?: string;
|
|
73
|
+
Type?: ItemType | string;
|
|
74
|
+
ETag?: string;
|
|
75
|
+
LastModified?: Date;
|
|
76
|
+
ContentType?: string;
|
|
77
|
+
ContentLength?: number;
|
|
78
|
+
}
|
|
79
|
+
export interface ListItemsRequest {
|
|
80
|
+
Path?: string;
|
|
81
|
+
MaxResults?: number;
|
|
82
|
+
NextToken?: string;
|
|
83
|
+
}
|
|
84
|
+
export interface ListItemsResponse {
|
|
85
|
+
Items?: Item[];
|
|
86
|
+
NextToken?: string;
|
|
87
|
+
}
|
|
88
|
+
export declare enum StorageClass {
|
|
89
|
+
TEMPORAL = "TEMPORAL",
|
|
90
|
+
}
|
|
91
|
+
export declare enum UploadAvailability {
|
|
92
|
+
STANDARD = "STANDARD",
|
|
93
|
+
STREAMING = "STREAMING",
|
|
94
|
+
}
|
|
95
|
+
export interface PutObjectRequest {
|
|
96
|
+
Body: Readable | ReadableStream | Blob | undefined;
|
|
97
|
+
Path: string | undefined;
|
|
98
|
+
ContentType?: string;
|
|
99
|
+
CacheControl?: string;
|
|
100
|
+
StorageClass?: StorageClass | string;
|
|
101
|
+
UploadAvailability?: UploadAvailability | string;
|
|
102
|
+
}
|
|
103
|
+
export interface PutObjectResponse {
|
|
104
|
+
ContentSHA256?: string;
|
|
105
|
+
ETag?: string;
|
|
106
|
+
StorageClass?: StorageClass | string;
|
|
107
|
+
}
|
|
108
|
+
export declare const DeleteObjectRequestFilterSensitiveLog: (
|
|
109
|
+
obj: DeleteObjectRequest
|
|
110
|
+
) => any;
|
|
111
|
+
export declare const DeleteObjectResponseFilterSensitiveLog: (
|
|
112
|
+
obj: DeleteObjectResponse
|
|
113
|
+
) => any;
|
|
114
|
+
export declare const DescribeObjectRequestFilterSensitiveLog: (
|
|
115
|
+
obj: DescribeObjectRequest
|
|
116
|
+
) => any;
|
|
117
|
+
export declare const DescribeObjectResponseFilterSensitiveLog: (
|
|
118
|
+
obj: DescribeObjectResponse
|
|
119
|
+
) => any;
|
|
120
|
+
export declare const GetObjectRequestFilterSensitiveLog: (
|
|
121
|
+
obj: GetObjectRequest
|
|
122
|
+
) => any;
|
|
123
|
+
export declare const GetObjectResponseFilterSensitiveLog: (
|
|
124
|
+
obj: GetObjectResponse
|
|
125
|
+
) => any;
|
|
126
|
+
export declare const ItemFilterSensitiveLog: (obj: Item) => any;
|
|
127
|
+
export declare const ListItemsRequestFilterSensitiveLog: (
|
|
128
|
+
obj: ListItemsRequest
|
|
129
|
+
) => any;
|
|
130
|
+
export declare const ListItemsResponseFilterSensitiveLog: (
|
|
131
|
+
obj: ListItemsResponse
|
|
132
|
+
) => any;
|
|
133
|
+
export declare const PutObjectRequestFilterSensitiveLog: (
|
|
134
|
+
obj: PutObjectRequest
|
|
135
|
+
) => any;
|
|
136
|
+
export declare const PutObjectResponseFilterSensitiveLog: (
|
|
137
|
+
obj: PutObjectResponse
|
|
138
|
+
) => any;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { MediaStoreData } from "../MediaStoreData";
|
|
3
|
-
import { MediaStoreDataClient } from "../MediaStoreDataClient";
|
|
4
|
-
export interface MediaStoreDataPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { MediaStoreData } from "../MediaStoreData";
|
|
3
|
+
import { MediaStoreDataClient } from "../MediaStoreDataClient";
|
|
4
|
+
export interface MediaStoreDataPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: MediaStoreData | MediaStoreDataClient;
|
|
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
|
+
ListItemsCommandInput,
|
|
4
|
+
ListItemsCommandOutput,
|
|
5
|
+
} from "../commands/ListItemsCommand";
|
|
6
|
+
import { MediaStoreDataPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListItems(
|
|
8
|
+
config: MediaStoreDataPaginationConfiguration,
|
|
9
|
+
input: ListItemsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListItemsCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListItemsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListItemsPaginator";
|
|
@@ -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
|
+
DeleteObjectCommandInput,
|
|
8
|
+
DeleteObjectCommandOutput,
|
|
9
|
+
} from "../commands/DeleteObjectCommand";
|
|
10
|
+
import {
|
|
11
|
+
DescribeObjectCommandInput,
|
|
12
|
+
DescribeObjectCommandOutput,
|
|
13
|
+
} from "../commands/DescribeObjectCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetObjectCommandInput,
|
|
16
|
+
GetObjectCommandOutput,
|
|
17
|
+
} from "../commands/GetObjectCommand";
|
|
18
|
+
import {
|
|
19
|
+
ListItemsCommandInput,
|
|
20
|
+
ListItemsCommandOutput,
|
|
21
|
+
} from "../commands/ListItemsCommand";
|
|
22
|
+
import {
|
|
23
|
+
PutObjectCommandInput,
|
|
24
|
+
PutObjectCommandOutput,
|
|
25
|
+
} from "../commands/PutObjectCommand";
|
|
26
|
+
export declare const serializeAws_restJson1DeleteObjectCommand: (
|
|
27
|
+
input: DeleteObjectCommandInput,
|
|
28
|
+
context: __SerdeContext
|
|
29
|
+
) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1DescribeObjectCommand: (
|
|
31
|
+
input: DescribeObjectCommandInput,
|
|
32
|
+
context: __SerdeContext
|
|
33
|
+
) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_restJson1GetObjectCommand: (
|
|
35
|
+
input: GetObjectCommandInput,
|
|
36
|
+
context: __SerdeContext
|
|
37
|
+
) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_restJson1ListItemsCommand: (
|
|
39
|
+
input: ListItemsCommandInput,
|
|
40
|
+
context: __SerdeContext
|
|
41
|
+
) => Promise<__HttpRequest>;
|
|
42
|
+
export declare const serializeAws_restJson1PutObjectCommand: (
|
|
43
|
+
input: PutObjectCommandInput,
|
|
44
|
+
context: __SerdeContext
|
|
45
|
+
) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const deserializeAws_restJson1DeleteObjectCommand: (
|
|
47
|
+
output: __HttpResponse,
|
|
48
|
+
context: __SerdeContext
|
|
49
|
+
) => Promise<DeleteObjectCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_restJson1DescribeObjectCommand: (
|
|
51
|
+
output: __HttpResponse,
|
|
52
|
+
context: __SerdeContext
|
|
53
|
+
) => Promise<DescribeObjectCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_restJson1GetObjectCommand: (
|
|
55
|
+
output: __HttpResponse,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<GetObjectCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_restJson1ListItemsCommand: (
|
|
59
|
+
output: __HttpResponse,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<ListItemsCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_restJson1PutObjectCommand: (
|
|
63
|
+
output: __HttpResponse,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<PutObjectCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { MediaStoreDataClientConfig } from "./MediaStoreDataClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { MediaStoreDataClientConfig } from "./MediaStoreDataClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|