@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.
@@ -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 { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class MediaStoreDataServiceException 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
+ 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 { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
3
- import { Readable } from "stream";
4
- import { MediaStoreDataServiceException as __BaseException } from "./MediaStoreDataServiceException";
5
-
6
- export declare class ContainerNotFoundException extends __BaseException {
7
- readonly name: "ContainerNotFoundException";
8
- readonly $fault: "client";
9
- Message?: string;
10
-
11
- constructor(opts: __ExceptionOptionType<ContainerNotFoundException, __BaseException>);
12
- }
13
- export interface DeleteObjectRequest {
14
-
15
- Path: string | undefined;
16
- }
17
- export interface DeleteObjectResponse {
18
- }
19
-
20
- export declare class InternalServerError extends __BaseException {
21
- readonly name: "InternalServerError";
22
- readonly $fault: "server";
23
- Message?: string;
24
-
25
- constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
26
- }
27
-
28
- export declare class ObjectNotFoundException extends __BaseException {
29
- readonly name: "ObjectNotFoundException";
30
- readonly $fault: "client";
31
- Message?: string;
32
-
33
- constructor(opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>);
34
- }
35
- export interface DescribeObjectRequest {
36
-
37
- Path: string | undefined;
38
- }
39
- export interface DescribeObjectResponse {
40
-
41
- ETag?: string;
42
-
43
- ContentType?: string;
44
-
45
- ContentLength?: number;
46
-
47
- CacheControl?: string;
48
-
49
- LastModified?: Date;
50
- }
51
- export interface GetObjectRequest {
52
-
53
- Path: string | undefined;
54
-
55
- Range?: string;
56
- }
57
- export interface GetObjectResponse {
58
-
59
- Body?: Readable | ReadableStream | Blob;
60
-
61
- CacheControl?: string;
62
-
63
- ContentRange?: string;
64
-
65
- ContentLength?: number;
66
-
67
- ContentType?: string;
68
-
69
- ETag?: string;
70
-
71
- LastModified?: Date;
72
-
73
- StatusCode: number | undefined;
74
- }
75
-
76
- export declare class RequestedRangeNotSatisfiableException extends __BaseException {
77
- readonly name: "RequestedRangeNotSatisfiableException";
78
- readonly $fault: "client";
79
- Message?: string;
80
-
81
- constructor(opts: __ExceptionOptionType<RequestedRangeNotSatisfiableException, __BaseException>);
82
- }
83
- export declare enum ItemType {
84
- FOLDER = "FOLDER",
85
- OBJECT = "OBJECT"
86
- }
87
-
88
- export interface Item {
89
-
90
- Name?: string;
91
-
92
- Type?: ItemType | string;
93
-
94
- ETag?: string;
95
-
96
- LastModified?: Date;
97
-
98
- ContentType?: string;
99
-
100
- ContentLength?: number;
101
- }
102
- export interface ListItemsRequest {
103
-
104
- Path?: string;
105
-
106
- MaxResults?: number;
107
-
108
- NextToken?: string;
109
- }
110
- export interface ListItemsResponse {
111
-
112
- Items?: Item[];
113
-
114
- NextToken?: string;
115
- }
116
- export declare enum StorageClass {
117
- TEMPORAL = "TEMPORAL"
118
- }
119
- export declare enum UploadAvailability {
120
- STANDARD = "STANDARD",
121
- STREAMING = "STREAMING"
122
- }
123
- export interface PutObjectRequest {
124
-
125
- Body: Readable | ReadableStream | Blob | undefined;
126
-
127
- Path: string | undefined;
128
-
129
- ContentType?: string;
130
-
131
- CacheControl?: string;
132
-
133
- StorageClass?: StorageClass | string;
134
-
135
- UploadAvailability?: UploadAvailability | string;
136
- }
137
- export interface PutObjectResponse {
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 extends PaginationConfiguration {
5
- client: MediaStoreData | MediaStoreDataClient;
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 { ListItemsCommandInput, ListItemsCommandOutput } from "../commands/ListItemsCommand";
3
- import { MediaStoreDataPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListItems(config: MediaStoreDataPaginationConfiguration, input: ListItemsCommandInput, ...additionalArguments: any): Paginator<ListItemsCommandOutput>;
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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { DeleteObjectCommandInput, DeleteObjectCommandOutput } from "../commands/DeleteObjectCommand";
4
- import { DescribeObjectCommandInput, DescribeObjectCommandOutput } from "../commands/DescribeObjectCommand";
5
- import { GetObjectCommandInput, GetObjectCommandOutput } from "../commands/GetObjectCommand";
6
- import { ListItemsCommandInput, ListItemsCommandOutput } from "../commands/ListItemsCommand";
7
- import { PutObjectCommandInput, PutObjectCommandOutput } from "../commands/PutObjectCommand";
8
- export declare const serializeAws_restJson1DeleteObjectCommand: (input: DeleteObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1DescribeObjectCommand: (input: DescribeObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1GetObjectCommand: (input: GetObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const serializeAws_restJson1ListItemsCommand: (input: ListItemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
- export declare const serializeAws_restJson1PutObjectCommand: (input: PutObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
- export declare const deserializeAws_restJson1DeleteObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteObjectCommandOutput>;
14
- export declare const deserializeAws_restJson1DescribeObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeObjectCommandOutput>;
15
- export declare const deserializeAws_restJson1GetObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectCommandOutput>;
16
- export declare const deserializeAws_restJson1ListItemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListItemsCommandOutput>;
17
- export declare const deserializeAws_restJson1PutObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutObjectCommandOutput>;
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
- export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
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 { 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
+ };