You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/middleware-sdk-s3-control/src/configurations.ts
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,12 @@ export { NODE_USE_ARN_REGION_CONFIG_OPTIONS } from "@aws-sdk/middleware-bucket-e
3
3
4
4
exportinterfaceS3ControlInputConfig{
5
5
/**
6
-
* Enables IPv6/IPv4 dualstack endpoint. When a DNS lookup is performed on an endpoint of this type, it returns an “A” record with an IPv4 address and an “AAAA” record with an IPv6 address. In most cases the network stack in the client environment will automatically prefer the AAAA record and make a connection using the IPv6 address. Note, however, that currently on Windows, the IPv4 address will be preferred.
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.
7
10
*/
8
-
useDualstackEndpoint?: boolean;
11
+
useDualstackEndpoint: Provider<boolean>;
9
12
/**
10
13
* Whether to override the request region with the region inferred from requested resource's ARN. Defaults to false
0 commit comments