@aws-sdk/types 3.664.0 → 3.679.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.
|
@@ -18,7 +18,6 @@ export type AwsSdkFeatures = Partial<{
|
|
|
18
18
|
ACCOUNT_ID_MODE_DISABLED: "Q";
|
|
19
19
|
ACCOUNT_ID_MODE_REQUIRED: "R";
|
|
20
20
|
SIGV4A_SIGNING: "S";
|
|
21
|
-
RESOLVED_ACCOUNT_ID: "T";
|
|
22
21
|
FLEXIBLE_CHECKSUMS_REQ_CRC32: "U";
|
|
23
22
|
FLEXIBLE_CHECKSUMS_REQ_CRC32C: "V";
|
|
24
23
|
FLEXIBLE_CHECKSUMS_REQ_CRC64: "W";
|
|
@@ -29,6 +28,12 @@ export type AwsSdkFeatures = Partial<{
|
|
|
29
28
|
FLEXIBLE_CHECKSUMS_RES_WHEN_SUPPORTED: "b";
|
|
30
29
|
FLEXIBLE_CHECKSUMS_RES_WHEN_REQUIRED: "c";
|
|
31
30
|
DDB_MAPPER: "d";
|
|
31
|
+
}> & AwsSdkCredentialsFeatures;
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
export type AwsSdkCredentialsFeatures = Partial<{
|
|
36
|
+
RESOLVED_ACCOUNT_ID: "T";
|
|
32
37
|
CREDENTIALS_CODE: "e";
|
|
33
38
|
CREDENTIALS_ENV_VARS: "g";
|
|
34
39
|
CREDENTIALS_ENV_VARS_STS_WEB_ID_TOKEN: "h";
|
|
@@ -1 +1,6 @@
|
|
|
1
|
+
import type { AwsCredentialIdentity } from "@smithy/types";
|
|
2
|
+
import type { AwsSdkCredentialsFeatures } from "../feature-ids";
|
|
1
3
|
export { AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
|
|
4
|
+
export type AttributedAwsCredentialIdentity = AwsCredentialIdentity & {
|
|
5
|
+
$source?: AwsSdkCredentialsFeatures;
|
|
6
|
+
};
|
|
@@ -15,7 +15,6 @@ export type AwsSdkFeatures = Partial<{
|
|
|
15
15
|
ACCOUNT_ID_MODE_DISABLED: "Q";
|
|
16
16
|
ACCOUNT_ID_MODE_REQUIRED: "R";
|
|
17
17
|
SIGV4A_SIGNING: "S";
|
|
18
|
-
RESOLVED_ACCOUNT_ID: "T";
|
|
19
18
|
FLEXIBLE_CHECKSUMS_REQ_CRC32: "U";
|
|
20
19
|
FLEXIBLE_CHECKSUMS_REQ_CRC32C: "V";
|
|
21
20
|
FLEXIBLE_CHECKSUMS_REQ_CRC64: "W";
|
|
@@ -26,6 +25,10 @@ export type AwsSdkFeatures = Partial<{
|
|
|
26
25
|
FLEXIBLE_CHECKSUMS_RES_WHEN_SUPPORTED: "b";
|
|
27
26
|
FLEXIBLE_CHECKSUMS_RES_WHEN_REQUIRED: "c";
|
|
28
27
|
DDB_MAPPER: "d";
|
|
28
|
+
}> &
|
|
29
|
+
AwsSdkCredentialsFeatures;
|
|
30
|
+
export type AwsSdkCredentialsFeatures = Partial<{
|
|
31
|
+
RESOLVED_ACCOUNT_ID: "T";
|
|
29
32
|
CREDENTIALS_CODE: "e";
|
|
30
33
|
CREDENTIALS_ENV_VARS: "g";
|
|
31
34
|
CREDENTIALS_ENV_VARS_STS_WEB_ID_TOKEN: "h";
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
+
import { AwsCredentialIdentity } from "@smithy/types";
|
|
2
|
+
import { AwsSdkCredentialsFeatures } from "../feature-ids";
|
|
1
3
|
export {
|
|
2
4
|
AwsCredentialIdentity,
|
|
3
5
|
AwsCredentialIdentityProvider,
|
|
4
6
|
} from "@smithy/types";
|
|
7
|
+
export type AttributedAwsCredentialIdentity = AwsCredentialIdentity & {
|
|
8
|
+
$source?: AwsSdkCredentialsFeatures;
|
|
9
|
+
};
|