@aws-sdk/client-s3outposts 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,147 +1,162 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { S3OutpostsServiceException as __BaseException } from "./S3OutpostsServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
-
12
- export declare class ConflictException extends __BaseException {
13
- readonly name: "ConflictException";
14
- readonly $fault: "client";
15
- Message?: string;
16
-
17
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
18
- }
19
- export declare enum EndpointAccessType {
20
- CUSTOMER_OWNED_IP = "CustomerOwnedIp",
21
- PRIVATE = "Private"
22
- }
23
- export interface CreateEndpointRequest {
24
-
25
- OutpostId: string | undefined;
26
-
27
- SubnetId: string | undefined;
28
-
29
- SecurityGroupId: string | undefined;
30
-
31
- AccessType?: EndpointAccessType | string;
32
-
33
- CustomerOwnedIpv4Pool?: string;
34
- }
35
- export interface CreateEndpointResult {
36
-
37
- EndpointArn?: string;
38
- }
39
-
40
- export declare class InternalServerException extends __BaseException {
41
- readonly name: "InternalServerException";
42
- readonly $fault: "server";
43
- Message?: string;
44
-
45
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
46
- }
47
-
48
- export declare class ResourceNotFoundException extends __BaseException {
49
- readonly name: "ResourceNotFoundException";
50
- readonly $fault: "client";
51
- Message?: string;
52
-
53
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
54
- }
55
-
56
- export declare class ValidationException extends __BaseException {
57
- readonly name: "ValidationException";
58
- readonly $fault: "client";
59
- Message?: string;
60
-
61
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
62
- }
63
- export interface DeleteEndpointRequest {
64
-
65
- EndpointId: string | undefined;
66
-
67
- OutpostId: string | undefined;
68
- }
69
-
70
- export interface NetworkInterface {
71
-
72
- NetworkInterfaceId?: string;
73
- }
74
- export declare enum EndpointStatus {
75
- AVAILABLE = "Available",
76
- DELETING = "Deleting",
77
- PENDING = "Pending"
78
- }
79
-
80
- export interface Endpoint {
81
-
82
- EndpointArn?: string;
83
-
84
- OutpostsId?: string;
85
-
86
- CidrBlock?: string;
87
-
88
- Status?: EndpointStatus | string;
89
-
90
- CreationTime?: Date;
91
-
92
- NetworkInterfaces?: NetworkInterface[];
93
-
94
- VpcId?: string;
95
-
96
- SubnetId?: string;
97
-
98
- SecurityGroupId?: string;
99
-
100
- AccessType?: EndpointAccessType | string;
101
-
102
- CustomerOwnedIpv4Pool?: string;
103
- }
104
- export interface ListEndpointsRequest {
105
-
106
- NextToken?: string;
107
-
108
- MaxResults?: number;
109
- }
110
- export interface ListEndpointsResult {
111
-
112
- Endpoints?: Endpoint[];
113
-
114
- NextToken?: string;
115
- }
116
- export interface ListSharedEndpointsRequest {
117
-
118
- NextToken?: string;
119
-
120
- MaxResults?: number;
121
-
122
- OutpostId: string | undefined;
123
- }
124
- export interface ListSharedEndpointsResult {
125
-
126
- Endpoints?: Endpoint[];
127
-
128
- NextToken?: string;
129
- }
130
-
131
- export declare const CreateEndpointRequestFilterSensitiveLog: (obj: CreateEndpointRequest) => any;
132
-
133
- export declare const CreateEndpointResultFilterSensitiveLog: (obj: CreateEndpointResult) => any;
134
-
135
- export declare const DeleteEndpointRequestFilterSensitiveLog: (obj: DeleteEndpointRequest) => any;
136
-
137
- export declare const NetworkInterfaceFilterSensitiveLog: (obj: NetworkInterface) => any;
138
-
139
- export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
140
-
141
- export declare const ListEndpointsRequestFilterSensitiveLog: (obj: ListEndpointsRequest) => any;
142
-
143
- export declare const ListEndpointsResultFilterSensitiveLog: (obj: ListEndpointsResult) => any;
144
-
145
- export declare const ListSharedEndpointsRequestFilterSensitiveLog: (obj: ListSharedEndpointsRequest) => any;
146
-
147
- export declare const ListSharedEndpointsResultFilterSensitiveLog: (obj: ListSharedEndpointsResult) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { S3OutpostsServiceException as __BaseException } from "./S3OutpostsServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+
14
+ export declare class ConflictException extends __BaseException {
15
+ readonly name: "ConflictException";
16
+ readonly $fault: "client";
17
+ Message?: string;
18
+
19
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
+ }
21
+ export declare enum EndpointAccessType {
22
+ CUSTOMER_OWNED_IP = "CustomerOwnedIp",
23
+ PRIVATE = "Private",
24
+ }
25
+ export interface CreateEndpointRequest {
26
+ OutpostId: string | undefined;
27
+
28
+ SubnetId: string | undefined;
29
+
30
+ SecurityGroupId: string | undefined;
31
+
32
+ AccessType?: EndpointAccessType | string;
33
+
34
+ CustomerOwnedIpv4Pool?: string;
35
+ }
36
+ export interface CreateEndpointResult {
37
+ EndpointArn?: string;
38
+ }
39
+
40
+ export declare class InternalServerException extends __BaseException {
41
+ readonly name: "InternalServerException";
42
+ readonly $fault: "server";
43
+ Message?: string;
44
+
45
+ constructor(
46
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
47
+ );
48
+ }
49
+
50
+ export declare class ResourceNotFoundException extends __BaseException {
51
+ readonly name: "ResourceNotFoundException";
52
+ readonly $fault: "client";
53
+ Message?: string;
54
+
55
+ constructor(
56
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
57
+ );
58
+ }
59
+
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+ Message?: string;
64
+
65
+ constructor(
66
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
67
+ );
68
+ }
69
+ export interface DeleteEndpointRequest {
70
+ EndpointId: string | undefined;
71
+
72
+ OutpostId: string | undefined;
73
+ }
74
+
75
+ export interface NetworkInterface {
76
+ NetworkInterfaceId?: string;
77
+ }
78
+ export declare enum EndpointStatus {
79
+ AVAILABLE = "Available",
80
+ DELETING = "Deleting",
81
+ PENDING = "Pending",
82
+ }
83
+
84
+ export interface Endpoint {
85
+ EndpointArn?: string;
86
+
87
+ OutpostsId?: string;
88
+
89
+ CidrBlock?: string;
90
+
91
+ Status?: EndpointStatus | string;
92
+
93
+ CreationTime?: Date;
94
+
95
+ NetworkInterfaces?: NetworkInterface[];
96
+
97
+ VpcId?: string;
98
+
99
+ SubnetId?: string;
100
+
101
+ SecurityGroupId?: string;
102
+
103
+ AccessType?: EndpointAccessType | string;
104
+
105
+ CustomerOwnedIpv4Pool?: string;
106
+ }
107
+ export interface ListEndpointsRequest {
108
+ NextToken?: string;
109
+
110
+ MaxResults?: number;
111
+ }
112
+ export interface ListEndpointsResult {
113
+ Endpoints?: Endpoint[];
114
+
115
+ NextToken?: string;
116
+ }
117
+ export interface ListSharedEndpointsRequest {
118
+ NextToken?: string;
119
+
120
+ MaxResults?: number;
121
+
122
+ OutpostId: string | undefined;
123
+ }
124
+ export interface ListSharedEndpointsResult {
125
+ Endpoints?: Endpoint[];
126
+
127
+ NextToken?: string;
128
+ }
129
+
130
+ export declare const CreateEndpointRequestFilterSensitiveLog: (
131
+ obj: CreateEndpointRequest
132
+ ) => any;
133
+
134
+ export declare const CreateEndpointResultFilterSensitiveLog: (
135
+ obj: CreateEndpointResult
136
+ ) => any;
137
+
138
+ export declare const DeleteEndpointRequestFilterSensitiveLog: (
139
+ obj: DeleteEndpointRequest
140
+ ) => any;
141
+
142
+ export declare const NetworkInterfaceFilterSensitiveLog: (
143
+ obj: NetworkInterface
144
+ ) => any;
145
+
146
+ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
147
+
148
+ export declare const ListEndpointsRequestFilterSensitiveLog: (
149
+ obj: ListEndpointsRequest
150
+ ) => any;
151
+
152
+ export declare const ListEndpointsResultFilterSensitiveLog: (
153
+ obj: ListEndpointsResult
154
+ ) => any;
155
+
156
+ export declare const ListSharedEndpointsRequestFilterSensitiveLog: (
157
+ obj: ListSharedEndpointsRequest
158
+ ) => any;
159
+
160
+ export declare const ListSharedEndpointsResultFilterSensitiveLog: (
161
+ obj: ListSharedEndpointsResult
162
+ ) => any;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { S3Outposts } from "../S3Outposts";
3
- import { S3OutpostsClient } from "../S3OutpostsClient";
4
- export interface S3OutpostsPaginationConfiguration extends PaginationConfiguration {
5
- client: S3Outposts | S3OutpostsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { S3Outposts } from "../S3Outposts";
3
+ import { S3OutpostsClient } from "../S3OutpostsClient";
4
+ export interface S3OutpostsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: S3Outposts | S3OutpostsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "../commands/ListEndpointsCommand";
3
- import { S3OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEndpoints(config: S3OutpostsPaginationConfiguration, input: ListEndpointsCommandInput, ...additionalArguments: any): Paginator<ListEndpointsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEndpointsCommandInput,
4
+ ListEndpointsCommandOutput,
5
+ } from "../commands/ListEndpointsCommand";
6
+ import { S3OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEndpoints(
8
+ config: S3OutpostsPaginationConfiguration,
9
+ input: ListEndpointsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEndpointsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "../commands/ListSharedEndpointsCommand";
3
- import { S3OutpostsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSharedEndpoints(config: S3OutpostsPaginationConfiguration, input: ListSharedEndpointsCommandInput, ...additionalArguments: any): Paginator<ListSharedEndpointsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSharedEndpointsCommandInput,
4
+ ListSharedEndpointsCommandOutput,
5
+ } from "../commands/ListSharedEndpointsCommand";
6
+ import { S3OutpostsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSharedEndpoints(
8
+ config: S3OutpostsPaginationConfiguration,
9
+ input: ListSharedEndpointsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSharedEndpointsCommandOutput>;
@@ -1,3 +1,3 @@
1
- export * from "./Interfaces";
2
- export * from "./ListEndpointsPaginator";
3
- export * from "./ListSharedEndpointsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListEndpointsPaginator";
3
+ export * from "./ListSharedEndpointsPaginator";
@@ -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 { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "../commands/CreateEndpointCommand";
4
- import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "../commands/DeleteEndpointCommand";
5
- import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "../commands/ListEndpointsCommand";
6
- import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "../commands/ListSharedEndpointsCommand";
7
- export declare const serializeAws_restJson1CreateEndpointCommand: (input: CreateEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
- export declare const serializeAws_restJson1DeleteEndpointCommand: (input: DeleteEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
- export declare const serializeAws_restJson1ListEndpointsCommand: (input: ListEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
- export declare const serializeAws_restJson1ListSharedEndpointsCommand: (input: ListSharedEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
- export declare const deserializeAws_restJson1CreateEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEndpointCommandOutput>;
12
- export declare const deserializeAws_restJson1DeleteEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEndpointCommandOutput>;
13
- export declare const deserializeAws_restJson1ListEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEndpointsCommandOutput>;
14
- export declare const deserializeAws_restJson1ListSharedEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSharedEndpointsCommandOutput>;
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
+ CreateEndpointCommandInput,
8
+ CreateEndpointCommandOutput,
9
+ } from "../commands/CreateEndpointCommand";
10
+ import {
11
+ DeleteEndpointCommandInput,
12
+ DeleteEndpointCommandOutput,
13
+ } from "../commands/DeleteEndpointCommand";
14
+ import {
15
+ ListEndpointsCommandInput,
16
+ ListEndpointsCommandOutput,
17
+ } from "../commands/ListEndpointsCommand";
18
+ import {
19
+ ListSharedEndpointsCommandInput,
20
+ ListSharedEndpointsCommandOutput,
21
+ } from "../commands/ListSharedEndpointsCommand";
22
+ export declare const serializeAws_restJson1CreateEndpointCommand: (
23
+ input: CreateEndpointCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1DeleteEndpointCommand: (
27
+ input: DeleteEndpointCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1ListEndpointsCommand: (
31
+ input: ListEndpointsCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1ListSharedEndpointsCommand: (
35
+ input: ListSharedEndpointsCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const deserializeAws_restJson1CreateEndpointCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<CreateEndpointCommandOutput>;
42
+ export declare const deserializeAws_restJson1DeleteEndpointCommand: (
43
+ output: __HttpResponse,
44
+ context: __SerdeContext
45
+ ) => Promise<DeleteEndpointCommandOutput>;
46
+ export declare const deserializeAws_restJson1ListEndpointsCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<ListEndpointsCommandOutput>;
50
+ export declare const deserializeAws_restJson1ListSharedEndpointsCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<ListSharedEndpointsCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { S3OutpostsClientConfig } from "./S3OutpostsClient";
3
-
4
- export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
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 { S3OutpostsClientConfig } from "./S3OutpostsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };