File tree 2 files changed +2
-14
lines changed
middleware-bucket-endpoint/src
middleware-sdk-s3-control/src
2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,6 @@ export interface BucketEndpointInputConfig {
14
14
* Whether to use the S3 Transfer Acceleration endpoint by default
15
15
*/
16
16
useAccelerateEndpoint ?: boolean ;
17
- /**
18
- * Enables IPv6/IPv4 dualstack endpoint. When a DNS lookup is performed on an endpoint of this type, it returns an “A”
19
- * record with an IPv4 address and an “AAAA” record with an IPv6 address. In most cases the network stack in the
20
- * client environment will automatically prefer the AAAA record and make a connection using the IPv6 address. Note,
21
- * however, that currently on Windows, the IPv4 address will be preferred.
22
- */
23
- useDualstackEndpoint : Provider < boolean > ;
24
17
/**
25
18
* Whether to override the request region with the region inferred from requested resource's ARN. Defaults to false
26
19
*/
@@ -36,6 +29,7 @@ interface PreviouslyResolved {
36
29
isCustomEndpoint : boolean ;
37
30
region : Provider < string > ;
38
31
regionInfoProvider : RegionInfoProvider ;
32
+ useDualstackEndpoint : Provider < boolean > ;
39
33
}
40
34
41
35
export interface BucketEndpointResolvedConfig {
Original file line number Diff line number Diff line change @@ -2,13 +2,6 @@ import { Provider, RegionInfoProvider } from "@aws-sdk/types";
2
2
export { NODE_USE_ARN_REGION_CONFIG_OPTIONS } from "@aws-sdk/middleware-bucket-endpoint" ;
3
3
4
4
export interface S3ControlInputConfig {
5
- /**
6
- * Enables IPv6/IPv4 dualstack endpoint. When a DNS lookup is performed on an endpoint of this type, it returns an “A”
7
- * record with an IPv4 address and an “AAAA” record with an IPv6 address. In most cases the network stack in the
8
- * client environment will automatically prefer the AAAA record and make a connection using the IPv6 address. Note,
9
- * however, that currently on Windows, the IPv4 address will be preferred.
10
- */
11
- useDualstackEndpoint : Provider < boolean > ;
12
5
/**
13
6
* Whether to override the request region with the region inferred from requested resource's ARN. Defaults to false
14
7
*/
@@ -19,6 +12,7 @@ interface PreviouslyResolved {
19
12
isCustomEndpoint : boolean ;
20
13
region : Provider < string > ;
21
14
regionInfoProvider : RegionInfoProvider ;
15
+ useDualstackEndpoint : Provider < boolean > ;
22
16
}
23
17
24
18
export interface S3ControlResolvedConfig {
You can’t perform that action at this time.
0 commit comments