@aws-sdk/client-sts 3.131.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssumeRoleCommand.js +2 -2
- package/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +2 -2
- package/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +2 -2
- package/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +2 -2
- package/dist-cjs/commands/GetAccessKeyInfoCommand.js +2 -2
- package/dist-cjs/commands/GetCallerIdentityCommand.js +2 -2
- package/dist-cjs/commands/GetFederationTokenCommand.js +2 -2
- package/dist-cjs/commands/GetSessionTokenCommand.js +2 -2
- package/dist-cjs/models/models_0.js +85 -127
- package/dist-cjs/protocols/Aws_query.js +81 -111
- package/dist-es/commands/AssumeRoleCommand.js +3 -3
- package/dist-es/commands/AssumeRoleWithSAMLCommand.js +3 -3
- package/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +3 -3
- package/dist-es/commands/DecodeAuthorizationMessageCommand.js +3 -3
- package/dist-es/commands/GetAccessKeyInfoCommand.js +3 -3
- package/dist-es/commands/GetCallerIdentityCommand.js +3 -3
- package/dist-es/commands/GetFederationTokenCommand.js +3 -3
- package/dist-es/commands/GetSessionTokenCommand.js +3 -3
- package/dist-es/models/models_0.js +21 -84
- package/dist-es/protocols/Aws_query.js +102 -112
- package/dist-types/models/models_0.d.ts +84 -126
- package/dist-types/ts3.4/models/models_0.d.ts +42 -84
- package/package.json +5 -5
|
@@ -17,12 +17,6 @@ export interface AssumedRoleUser {
|
|
|
17
17
|
*/
|
|
18
18
|
Arn: string | undefined;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace AssumedRoleUser {
|
|
21
|
-
/**
|
|
22
|
-
* @internal
|
|
23
|
-
*/
|
|
24
|
-
const filterSensitiveLog: (obj: AssumedRoleUser) => any;
|
|
25
|
-
}
|
|
26
20
|
/**
|
|
27
21
|
* <p>A reference to the IAM managed policy that is passed as a session policy for a role
|
|
28
22
|
* session or a federated user session.</p>
|
|
@@ -35,12 +29,6 @@ export interface PolicyDescriptorType {
|
|
|
35
29
|
*/
|
|
36
30
|
arn?: string;
|
|
37
31
|
}
|
|
38
|
-
export declare namespace PolicyDescriptorType {
|
|
39
|
-
/**
|
|
40
|
-
* @internal
|
|
41
|
-
*/
|
|
42
|
-
const filterSensitiveLog: (obj: PolicyDescriptorType) => any;
|
|
43
|
-
}
|
|
44
32
|
/**
|
|
45
33
|
* <p>You can pass custom key-value pair attributes when you assume a role or federate a user.
|
|
46
34
|
* These are called session tags. You can then use the session tags to control access to
|
|
@@ -63,12 +51,6 @@ export interface Tag {
|
|
|
63
51
|
*/
|
|
64
52
|
Value: string | undefined;
|
|
65
53
|
}
|
|
66
|
-
export declare namespace Tag {
|
|
67
|
-
/**
|
|
68
|
-
* @internal
|
|
69
|
-
*/
|
|
70
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
71
|
-
}
|
|
72
54
|
export interface AssumeRoleRequest {
|
|
73
55
|
/**
|
|
74
56
|
* <p>The Amazon Resource Name (ARN) of the role to assume.</p>
|
|
@@ -267,12 +249,6 @@ export interface AssumeRoleRequest {
|
|
|
267
249
|
*/
|
|
268
250
|
SourceIdentity?: string;
|
|
269
251
|
}
|
|
270
|
-
export declare namespace AssumeRoleRequest {
|
|
271
|
-
/**
|
|
272
|
-
* @internal
|
|
273
|
-
*/
|
|
274
|
-
const filterSensitiveLog: (obj: AssumeRoleRequest) => any;
|
|
275
|
-
}
|
|
276
252
|
/**
|
|
277
253
|
* <p>Amazon Web Services credentials for API authentication.</p>
|
|
278
254
|
*/
|
|
@@ -295,12 +271,6 @@ export interface Credentials {
|
|
|
295
271
|
*/
|
|
296
272
|
Expiration: Date | undefined;
|
|
297
273
|
}
|
|
298
|
-
export declare namespace Credentials {
|
|
299
|
-
/**
|
|
300
|
-
* @internal
|
|
301
|
-
*/
|
|
302
|
-
const filterSensitiveLog: (obj: Credentials) => any;
|
|
303
|
-
}
|
|
304
274
|
/**
|
|
305
275
|
* <p>Contains the response to a successful <a>AssumeRole</a> request, including
|
|
306
276
|
* temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests. </p>
|
|
@@ -347,12 +317,6 @@ export interface AssumeRoleResponse {
|
|
|
347
317
|
*/
|
|
348
318
|
SourceIdentity?: string;
|
|
349
319
|
}
|
|
350
|
-
export declare namespace AssumeRoleResponse {
|
|
351
|
-
/**
|
|
352
|
-
* @internal
|
|
353
|
-
*/
|
|
354
|
-
const filterSensitiveLog: (obj: AssumeRoleResponse) => any;
|
|
355
|
-
}
|
|
356
320
|
/**
|
|
357
321
|
* <p>The web identity token that was passed is expired or is not valid. Get a new identity
|
|
358
322
|
* token from the identity provider and then retry the request.</p>
|
|
@@ -505,12 +469,6 @@ export interface AssumeRoleWithSAMLRequest {
|
|
|
505
469
|
*/
|
|
506
470
|
DurationSeconds?: number;
|
|
507
471
|
}
|
|
508
|
-
export declare namespace AssumeRoleWithSAMLRequest {
|
|
509
|
-
/**
|
|
510
|
-
* @internal
|
|
511
|
-
*/
|
|
512
|
-
const filterSensitiveLog: (obj: AssumeRoleWithSAMLRequest) => any;
|
|
513
|
-
}
|
|
514
472
|
/**
|
|
515
473
|
* <p>Contains the response to a successful <a>AssumeRoleWithSAML</a> request,
|
|
516
474
|
* including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests. </p>
|
|
@@ -602,12 +560,6 @@ export interface AssumeRoleWithSAMLResponse {
|
|
|
602
560
|
*/
|
|
603
561
|
SourceIdentity?: string;
|
|
604
562
|
}
|
|
605
|
-
export declare namespace AssumeRoleWithSAMLResponse {
|
|
606
|
-
/**
|
|
607
|
-
* @internal
|
|
608
|
-
*/
|
|
609
|
-
const filterSensitiveLog: (obj: AssumeRoleWithSAMLResponse) => any;
|
|
610
|
-
}
|
|
611
563
|
/**
|
|
612
564
|
* <p>The identity provider (IdP) reported that authentication failed. This might be because
|
|
613
565
|
* the claim is invalid.</p>
|
|
@@ -741,12 +693,6 @@ export interface AssumeRoleWithWebIdentityRequest {
|
|
|
741
693
|
*/
|
|
742
694
|
DurationSeconds?: number;
|
|
743
695
|
}
|
|
744
|
-
export declare namespace AssumeRoleWithWebIdentityRequest {
|
|
745
|
-
/**
|
|
746
|
-
* @internal
|
|
747
|
-
*/
|
|
748
|
-
const filterSensitiveLog: (obj: AssumeRoleWithWebIdentityRequest) => any;
|
|
749
|
-
}
|
|
750
696
|
/**
|
|
751
697
|
* <p>Contains the response to a successful <a>AssumeRoleWithWebIdentity</a>
|
|
752
698
|
* request, including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests. </p>
|
|
@@ -819,12 +765,6 @@ export interface AssumeRoleWithWebIdentityResponse {
|
|
|
819
765
|
*/
|
|
820
766
|
SourceIdentity?: string;
|
|
821
767
|
}
|
|
822
|
-
export declare namespace AssumeRoleWithWebIdentityResponse {
|
|
823
|
-
/**
|
|
824
|
-
* @internal
|
|
825
|
-
*/
|
|
826
|
-
const filterSensitiveLog: (obj: AssumeRoleWithWebIdentityResponse) => any;
|
|
827
|
-
}
|
|
828
768
|
/**
|
|
829
769
|
* <p>The request could not be fulfilled because the identity provider (IDP) that
|
|
830
770
|
* was asked to verify the incoming identity token could not be reached. This is often a
|
|
@@ -846,12 +786,6 @@ export interface DecodeAuthorizationMessageRequest {
|
|
|
846
786
|
*/
|
|
847
787
|
EncodedMessage: string | undefined;
|
|
848
788
|
}
|
|
849
|
-
export declare namespace DecodeAuthorizationMessageRequest {
|
|
850
|
-
/**
|
|
851
|
-
* @internal
|
|
852
|
-
*/
|
|
853
|
-
const filterSensitiveLog: (obj: DecodeAuthorizationMessageRequest) => any;
|
|
854
|
-
}
|
|
855
789
|
/**
|
|
856
790
|
* <p>A document that contains additional information about the authorization status of a
|
|
857
791
|
* request from an encoded message that is returned in response to an Amazon Web Services request.</p>
|
|
@@ -862,12 +796,6 @@ export interface DecodeAuthorizationMessageResponse {
|
|
|
862
796
|
*/
|
|
863
797
|
DecodedMessage?: string;
|
|
864
798
|
}
|
|
865
|
-
export declare namespace DecodeAuthorizationMessageResponse {
|
|
866
|
-
/**
|
|
867
|
-
* @internal
|
|
868
|
-
*/
|
|
869
|
-
const filterSensitiveLog: (obj: DecodeAuthorizationMessageResponse) => any;
|
|
870
|
-
}
|
|
871
799
|
/**
|
|
872
800
|
* <p>The error returned if the message passed to <code>DecodeAuthorizationMessage</code>
|
|
873
801
|
* was invalid. This can happen if the token contains invalid characters, such as
|
|
@@ -889,32 +817,14 @@ export interface GetAccessKeyInfoRequest {
|
|
|
889
817
|
*/
|
|
890
818
|
AccessKeyId: string | undefined;
|
|
891
819
|
}
|
|
892
|
-
export declare namespace GetAccessKeyInfoRequest {
|
|
893
|
-
/**
|
|
894
|
-
* @internal
|
|
895
|
-
*/
|
|
896
|
-
const filterSensitiveLog: (obj: GetAccessKeyInfoRequest) => any;
|
|
897
|
-
}
|
|
898
820
|
export interface GetAccessKeyInfoResponse {
|
|
899
821
|
/**
|
|
900
822
|
* <p>The number used to identify the Amazon Web Services account.</p>
|
|
901
823
|
*/
|
|
902
824
|
Account?: string;
|
|
903
825
|
}
|
|
904
|
-
export declare namespace GetAccessKeyInfoResponse {
|
|
905
|
-
/**
|
|
906
|
-
* @internal
|
|
907
|
-
*/
|
|
908
|
-
const filterSensitiveLog: (obj: GetAccessKeyInfoResponse) => any;
|
|
909
|
-
}
|
|
910
826
|
export interface GetCallerIdentityRequest {
|
|
911
827
|
}
|
|
912
|
-
export declare namespace GetCallerIdentityRequest {
|
|
913
|
-
/**
|
|
914
|
-
* @internal
|
|
915
|
-
*/
|
|
916
|
-
const filterSensitiveLog: (obj: GetCallerIdentityRequest) => any;
|
|
917
|
-
}
|
|
918
828
|
/**
|
|
919
829
|
* <p>Contains the response to a successful <a>GetCallerIdentity</a> request,
|
|
920
830
|
* including information about the entity making the request.</p>
|
|
@@ -937,12 +847,6 @@ export interface GetCallerIdentityResponse {
|
|
|
937
847
|
*/
|
|
938
848
|
Arn?: string;
|
|
939
849
|
}
|
|
940
|
-
export declare namespace GetCallerIdentityResponse {
|
|
941
|
-
/**
|
|
942
|
-
* @internal
|
|
943
|
-
*/
|
|
944
|
-
const filterSensitiveLog: (obj: GetCallerIdentityResponse) => any;
|
|
945
|
-
}
|
|
946
850
|
export interface GetFederationTokenRequest {
|
|
947
851
|
/**
|
|
948
852
|
* <p>The name of the federated user. The name is used as an identifier for the temporary
|
|
@@ -1062,12 +966,6 @@ export interface GetFederationTokenRequest {
|
|
|
1062
966
|
*/
|
|
1063
967
|
Tags?: Tag[];
|
|
1064
968
|
}
|
|
1065
|
-
export declare namespace GetFederationTokenRequest {
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
const filterSensitiveLog: (obj: GetFederationTokenRequest) => any;
|
|
1070
|
-
}
|
|
1071
969
|
/**
|
|
1072
970
|
* <p>Identifiers for the federated user that is associated with the credentials.</p>
|
|
1073
971
|
*/
|
|
@@ -1084,12 +982,6 @@ export interface FederatedUser {
|
|
|
1084
982
|
*/
|
|
1085
983
|
Arn: string | undefined;
|
|
1086
984
|
}
|
|
1087
|
-
export declare namespace FederatedUser {
|
|
1088
|
-
/**
|
|
1089
|
-
* @internal
|
|
1090
|
-
*/
|
|
1091
|
-
const filterSensitiveLog: (obj: FederatedUser) => any;
|
|
1092
|
-
}
|
|
1093
985
|
/**
|
|
1094
986
|
* <p>Contains the response to a successful <a>GetFederationToken</a> request,
|
|
1095
987
|
* including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests. </p>
|
|
@@ -1119,12 +1011,6 @@ export interface GetFederationTokenResponse {
|
|
|
1119
1011
|
*/
|
|
1120
1012
|
PackedPolicySize?: number;
|
|
1121
1013
|
}
|
|
1122
|
-
export declare namespace GetFederationTokenResponse {
|
|
1123
|
-
/**
|
|
1124
|
-
* @internal
|
|
1125
|
-
*/
|
|
1126
|
-
const filterSensitiveLog: (obj: GetFederationTokenResponse) => any;
|
|
1127
|
-
}
|
|
1128
1014
|
export interface GetSessionTokenRequest {
|
|
1129
1015
|
/**
|
|
1130
1016
|
* <p>The duration, in seconds, that the credentials should remain valid. Acceptable durations
|
|
@@ -1158,12 +1044,6 @@ export interface GetSessionTokenRequest {
|
|
|
1158
1044
|
*/
|
|
1159
1045
|
TokenCode?: string;
|
|
1160
1046
|
}
|
|
1161
|
-
export declare namespace GetSessionTokenRequest {
|
|
1162
|
-
/**
|
|
1163
|
-
* @internal
|
|
1164
|
-
*/
|
|
1165
|
-
const filterSensitiveLog: (obj: GetSessionTokenRequest) => any;
|
|
1166
|
-
}
|
|
1167
1047
|
/**
|
|
1168
1048
|
* <p>Contains the response to a successful <a>GetSessionToken</a> request,
|
|
1169
1049
|
* including temporary Amazon Web Services credentials that can be used to make Amazon Web Services requests. </p>
|
|
@@ -1180,9 +1060,87 @@ export interface GetSessionTokenResponse {
|
|
|
1180
1060
|
*/
|
|
1181
1061
|
Credentials?: Credentials;
|
|
1182
1062
|
}
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1063
|
+
/**
|
|
1064
|
+
* @internal
|
|
1065
|
+
*/
|
|
1066
|
+
export declare const AssumedRoleUserFilterSensitiveLog: (obj: AssumedRoleUser) => any;
|
|
1067
|
+
/**
|
|
1068
|
+
* @internal
|
|
1069
|
+
*/
|
|
1070
|
+
export declare const PolicyDescriptorTypeFilterSensitiveLog: (obj: PolicyDescriptorType) => any;
|
|
1071
|
+
/**
|
|
1072
|
+
* @internal
|
|
1073
|
+
*/
|
|
1074
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1075
|
+
/**
|
|
1076
|
+
* @internal
|
|
1077
|
+
*/
|
|
1078
|
+
export declare const AssumeRoleRequestFilterSensitiveLog: (obj: AssumeRoleRequest) => any;
|
|
1079
|
+
/**
|
|
1080
|
+
* @internal
|
|
1081
|
+
*/
|
|
1082
|
+
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
1083
|
+
/**
|
|
1084
|
+
* @internal
|
|
1085
|
+
*/
|
|
1086
|
+
export declare const AssumeRoleResponseFilterSensitiveLog: (obj: AssumeRoleResponse) => any;
|
|
1087
|
+
/**
|
|
1088
|
+
* @internal
|
|
1089
|
+
*/
|
|
1090
|
+
export declare const AssumeRoleWithSAMLRequestFilterSensitiveLog: (obj: AssumeRoleWithSAMLRequest) => any;
|
|
1091
|
+
/**
|
|
1092
|
+
* @internal
|
|
1093
|
+
*/
|
|
1094
|
+
export declare const AssumeRoleWithSAMLResponseFilterSensitiveLog: (obj: AssumeRoleWithSAMLResponse) => any;
|
|
1095
|
+
/**
|
|
1096
|
+
* @internal
|
|
1097
|
+
*/
|
|
1098
|
+
export declare const AssumeRoleWithWebIdentityRequestFilterSensitiveLog: (obj: AssumeRoleWithWebIdentityRequest) => any;
|
|
1099
|
+
/**
|
|
1100
|
+
* @internal
|
|
1101
|
+
*/
|
|
1102
|
+
export declare const AssumeRoleWithWebIdentityResponseFilterSensitiveLog: (obj: AssumeRoleWithWebIdentityResponse) => any;
|
|
1103
|
+
/**
|
|
1104
|
+
* @internal
|
|
1105
|
+
*/
|
|
1106
|
+
export declare const DecodeAuthorizationMessageRequestFilterSensitiveLog: (obj: DecodeAuthorizationMessageRequest) => any;
|
|
1107
|
+
/**
|
|
1108
|
+
* @internal
|
|
1109
|
+
*/
|
|
1110
|
+
export declare const DecodeAuthorizationMessageResponseFilterSensitiveLog: (obj: DecodeAuthorizationMessageResponse) => any;
|
|
1111
|
+
/**
|
|
1112
|
+
* @internal
|
|
1113
|
+
*/
|
|
1114
|
+
export declare const GetAccessKeyInfoRequestFilterSensitiveLog: (obj: GetAccessKeyInfoRequest) => any;
|
|
1115
|
+
/**
|
|
1116
|
+
* @internal
|
|
1117
|
+
*/
|
|
1118
|
+
export declare const GetAccessKeyInfoResponseFilterSensitiveLog: (obj: GetAccessKeyInfoResponse) => any;
|
|
1119
|
+
/**
|
|
1120
|
+
* @internal
|
|
1121
|
+
*/
|
|
1122
|
+
export declare const GetCallerIdentityRequestFilterSensitiveLog: (obj: GetCallerIdentityRequest) => any;
|
|
1123
|
+
/**
|
|
1124
|
+
* @internal
|
|
1125
|
+
*/
|
|
1126
|
+
export declare const GetCallerIdentityResponseFilterSensitiveLog: (obj: GetCallerIdentityResponse) => any;
|
|
1127
|
+
/**
|
|
1128
|
+
* @internal
|
|
1129
|
+
*/
|
|
1130
|
+
export declare const GetFederationTokenRequestFilterSensitiveLog: (obj: GetFederationTokenRequest) => any;
|
|
1131
|
+
/**
|
|
1132
|
+
* @internal
|
|
1133
|
+
*/
|
|
1134
|
+
export declare const FederatedUserFilterSensitiveLog: (obj: FederatedUser) => any;
|
|
1135
|
+
/**
|
|
1136
|
+
* @internal
|
|
1137
|
+
*/
|
|
1138
|
+
export declare const GetFederationTokenResponseFilterSensitiveLog: (obj: GetFederationTokenResponse) => any;
|
|
1139
|
+
/**
|
|
1140
|
+
* @internal
|
|
1141
|
+
*/
|
|
1142
|
+
export declare const GetSessionTokenRequestFilterSensitiveLog: (obj: GetSessionTokenRequest) => any;
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal
|
|
1145
|
+
*/
|
|
1146
|
+
export declare const GetSessionTokenResponseFilterSensitiveLog: (obj: GetSessionTokenResponse) => any;
|
|
@@ -7,19 +7,11 @@ export interface AssumedRoleUser {
|
|
|
7
7
|
|
|
8
8
|
Arn: string | undefined;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace AssumedRoleUser {
|
|
11
|
-
|
|
12
|
-
const filterSensitiveLog: (obj: AssumedRoleUser) => any;
|
|
13
|
-
}
|
|
14
10
|
|
|
15
11
|
export interface PolicyDescriptorType {
|
|
16
12
|
|
|
17
13
|
arn?: string;
|
|
18
14
|
}
|
|
19
|
-
export declare namespace PolicyDescriptorType {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: PolicyDescriptorType) => any;
|
|
22
|
-
}
|
|
23
15
|
|
|
24
16
|
export interface Tag {
|
|
25
17
|
|
|
@@ -27,10 +19,6 @@ export interface Tag {
|
|
|
27
19
|
|
|
28
20
|
Value: string | undefined;
|
|
29
21
|
}
|
|
30
|
-
export declare namespace Tag {
|
|
31
|
-
|
|
32
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
33
|
-
}
|
|
34
22
|
export interface AssumeRoleRequest {
|
|
35
23
|
|
|
36
24
|
RoleArn: string | undefined;
|
|
@@ -55,10 +43,6 @@ export interface AssumeRoleRequest {
|
|
|
55
43
|
|
|
56
44
|
SourceIdentity?: string;
|
|
57
45
|
}
|
|
58
|
-
export declare namespace AssumeRoleRequest {
|
|
59
|
-
|
|
60
|
-
const filterSensitiveLog: (obj: AssumeRoleRequest) => any;
|
|
61
|
-
}
|
|
62
46
|
|
|
63
47
|
export interface Credentials {
|
|
64
48
|
|
|
@@ -70,10 +54,6 @@ export interface Credentials {
|
|
|
70
54
|
|
|
71
55
|
Expiration: Date | undefined;
|
|
72
56
|
}
|
|
73
|
-
export declare namespace Credentials {
|
|
74
|
-
|
|
75
|
-
const filterSensitiveLog: (obj: Credentials) => any;
|
|
76
|
-
}
|
|
77
57
|
|
|
78
58
|
export interface AssumeRoleResponse {
|
|
79
59
|
|
|
@@ -85,10 +65,6 @@ export interface AssumeRoleResponse {
|
|
|
85
65
|
|
|
86
66
|
SourceIdentity?: string;
|
|
87
67
|
}
|
|
88
|
-
export declare namespace AssumeRoleResponse {
|
|
89
|
-
|
|
90
|
-
const filterSensitiveLog: (obj: AssumeRoleResponse) => any;
|
|
91
|
-
}
|
|
92
68
|
|
|
93
69
|
export declare class ExpiredTokenException extends __BaseException {
|
|
94
70
|
readonly name: "ExpiredTokenException";
|
|
@@ -131,10 +107,6 @@ export interface AssumeRoleWithSAMLRequest {
|
|
|
131
107
|
|
|
132
108
|
DurationSeconds?: number;
|
|
133
109
|
}
|
|
134
|
-
export declare namespace AssumeRoleWithSAMLRequest {
|
|
135
|
-
|
|
136
|
-
const filterSensitiveLog: (obj: AssumeRoleWithSAMLRequest) => any;
|
|
137
|
-
}
|
|
138
110
|
|
|
139
111
|
export interface AssumeRoleWithSAMLResponse {
|
|
140
112
|
|
|
@@ -156,10 +128,6 @@ export interface AssumeRoleWithSAMLResponse {
|
|
|
156
128
|
|
|
157
129
|
SourceIdentity?: string;
|
|
158
130
|
}
|
|
159
|
-
export declare namespace AssumeRoleWithSAMLResponse {
|
|
160
|
-
|
|
161
|
-
const filterSensitiveLog: (obj: AssumeRoleWithSAMLResponse) => any;
|
|
162
|
-
}
|
|
163
131
|
|
|
164
132
|
export declare class IDPRejectedClaimException extends __BaseException {
|
|
165
133
|
readonly name: "IDPRejectedClaimException";
|
|
@@ -190,10 +158,6 @@ export interface AssumeRoleWithWebIdentityRequest {
|
|
|
190
158
|
|
|
191
159
|
DurationSeconds?: number;
|
|
192
160
|
}
|
|
193
|
-
export declare namespace AssumeRoleWithWebIdentityRequest {
|
|
194
|
-
|
|
195
|
-
const filterSensitiveLog: (obj: AssumeRoleWithWebIdentityRequest) => any;
|
|
196
|
-
}
|
|
197
161
|
|
|
198
162
|
export interface AssumeRoleWithWebIdentityResponse {
|
|
199
163
|
|
|
@@ -211,10 +175,6 @@ export interface AssumeRoleWithWebIdentityResponse {
|
|
|
211
175
|
|
|
212
176
|
SourceIdentity?: string;
|
|
213
177
|
}
|
|
214
|
-
export declare namespace AssumeRoleWithWebIdentityResponse {
|
|
215
|
-
|
|
216
|
-
const filterSensitiveLog: (obj: AssumeRoleWithWebIdentityResponse) => any;
|
|
217
|
-
}
|
|
218
178
|
|
|
219
179
|
export declare class IDPCommunicationErrorException extends __BaseException {
|
|
220
180
|
readonly name: "IDPCommunicationErrorException";
|
|
@@ -226,19 +186,11 @@ export interface DecodeAuthorizationMessageRequest {
|
|
|
226
186
|
|
|
227
187
|
EncodedMessage: string | undefined;
|
|
228
188
|
}
|
|
229
|
-
export declare namespace DecodeAuthorizationMessageRequest {
|
|
230
|
-
|
|
231
|
-
const filterSensitiveLog: (obj: DecodeAuthorizationMessageRequest) => any;
|
|
232
|
-
}
|
|
233
189
|
|
|
234
190
|
export interface DecodeAuthorizationMessageResponse {
|
|
235
191
|
|
|
236
192
|
DecodedMessage?: string;
|
|
237
193
|
}
|
|
238
|
-
export declare namespace DecodeAuthorizationMessageResponse {
|
|
239
|
-
|
|
240
|
-
const filterSensitiveLog: (obj: DecodeAuthorizationMessageResponse) => any;
|
|
241
|
-
}
|
|
242
194
|
|
|
243
195
|
export declare class InvalidAuthorizationMessageException extends __BaseException {
|
|
244
196
|
readonly name: "InvalidAuthorizationMessageException";
|
|
@@ -250,24 +202,12 @@ export interface GetAccessKeyInfoRequest {
|
|
|
250
202
|
|
|
251
203
|
AccessKeyId: string | undefined;
|
|
252
204
|
}
|
|
253
|
-
export declare namespace GetAccessKeyInfoRequest {
|
|
254
|
-
|
|
255
|
-
const filterSensitiveLog: (obj: GetAccessKeyInfoRequest) => any;
|
|
256
|
-
}
|
|
257
205
|
export interface GetAccessKeyInfoResponse {
|
|
258
206
|
|
|
259
207
|
Account?: string;
|
|
260
208
|
}
|
|
261
|
-
export declare namespace GetAccessKeyInfoResponse {
|
|
262
|
-
|
|
263
|
-
const filterSensitiveLog: (obj: GetAccessKeyInfoResponse) => any;
|
|
264
|
-
}
|
|
265
209
|
export interface GetCallerIdentityRequest {
|
|
266
210
|
}
|
|
267
|
-
export declare namespace GetCallerIdentityRequest {
|
|
268
|
-
|
|
269
|
-
const filterSensitiveLog: (obj: GetCallerIdentityRequest) => any;
|
|
270
|
-
}
|
|
271
211
|
|
|
272
212
|
export interface GetCallerIdentityResponse {
|
|
273
213
|
|
|
@@ -277,10 +217,6 @@ export interface GetCallerIdentityResponse {
|
|
|
277
217
|
|
|
278
218
|
Arn?: string;
|
|
279
219
|
}
|
|
280
|
-
export declare namespace GetCallerIdentityResponse {
|
|
281
|
-
|
|
282
|
-
const filterSensitiveLog: (obj: GetCallerIdentityResponse) => any;
|
|
283
|
-
}
|
|
284
220
|
export interface GetFederationTokenRequest {
|
|
285
221
|
|
|
286
222
|
Name: string | undefined;
|
|
@@ -293,10 +229,6 @@ export interface GetFederationTokenRequest {
|
|
|
293
229
|
|
|
294
230
|
Tags?: Tag[];
|
|
295
231
|
}
|
|
296
|
-
export declare namespace GetFederationTokenRequest {
|
|
297
|
-
|
|
298
|
-
const filterSensitiveLog: (obj: GetFederationTokenRequest) => any;
|
|
299
|
-
}
|
|
300
232
|
|
|
301
233
|
export interface FederatedUser {
|
|
302
234
|
|
|
@@ -304,10 +236,6 @@ export interface FederatedUser {
|
|
|
304
236
|
|
|
305
237
|
Arn: string | undefined;
|
|
306
238
|
}
|
|
307
|
-
export declare namespace FederatedUser {
|
|
308
|
-
|
|
309
|
-
const filterSensitiveLog: (obj: FederatedUser) => any;
|
|
310
|
-
}
|
|
311
239
|
|
|
312
240
|
export interface GetFederationTokenResponse {
|
|
313
241
|
|
|
@@ -317,10 +245,6 @@ export interface GetFederationTokenResponse {
|
|
|
317
245
|
|
|
318
246
|
PackedPolicySize?: number;
|
|
319
247
|
}
|
|
320
|
-
export declare namespace GetFederationTokenResponse {
|
|
321
|
-
|
|
322
|
-
const filterSensitiveLog: (obj: GetFederationTokenResponse) => any;
|
|
323
|
-
}
|
|
324
248
|
export interface GetSessionTokenRequest {
|
|
325
249
|
|
|
326
250
|
DurationSeconds?: number;
|
|
@@ -329,16 +253,50 @@ export interface GetSessionTokenRequest {
|
|
|
329
253
|
|
|
330
254
|
TokenCode?: string;
|
|
331
255
|
}
|
|
332
|
-
export declare namespace GetSessionTokenRequest {
|
|
333
|
-
|
|
334
|
-
const filterSensitiveLog: (obj: GetSessionTokenRequest) => any;
|
|
335
|
-
}
|
|
336
256
|
|
|
337
257
|
export interface GetSessionTokenResponse {
|
|
338
258
|
|
|
339
259
|
Credentials?: Credentials;
|
|
340
260
|
}
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
261
|
+
|
|
262
|
+
export declare const AssumedRoleUserFilterSensitiveLog: (obj: AssumedRoleUser) => any;
|
|
263
|
+
|
|
264
|
+
export declare const PolicyDescriptorTypeFilterSensitiveLog: (obj: PolicyDescriptorType) => any;
|
|
265
|
+
|
|
266
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
267
|
+
|
|
268
|
+
export declare const AssumeRoleRequestFilterSensitiveLog: (obj: AssumeRoleRequest) => any;
|
|
269
|
+
|
|
270
|
+
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
271
|
+
|
|
272
|
+
export declare const AssumeRoleResponseFilterSensitiveLog: (obj: AssumeRoleResponse) => any;
|
|
273
|
+
|
|
274
|
+
export declare const AssumeRoleWithSAMLRequestFilterSensitiveLog: (obj: AssumeRoleWithSAMLRequest) => any;
|
|
275
|
+
|
|
276
|
+
export declare const AssumeRoleWithSAMLResponseFilterSensitiveLog: (obj: AssumeRoleWithSAMLResponse) => any;
|
|
277
|
+
|
|
278
|
+
export declare const AssumeRoleWithWebIdentityRequestFilterSensitiveLog: (obj: AssumeRoleWithWebIdentityRequest) => any;
|
|
279
|
+
|
|
280
|
+
export declare const AssumeRoleWithWebIdentityResponseFilterSensitiveLog: (obj: AssumeRoleWithWebIdentityResponse) => any;
|
|
281
|
+
|
|
282
|
+
export declare const DecodeAuthorizationMessageRequestFilterSensitiveLog: (obj: DecodeAuthorizationMessageRequest) => any;
|
|
283
|
+
|
|
284
|
+
export declare const DecodeAuthorizationMessageResponseFilterSensitiveLog: (obj: DecodeAuthorizationMessageResponse) => any;
|
|
285
|
+
|
|
286
|
+
export declare const GetAccessKeyInfoRequestFilterSensitiveLog: (obj: GetAccessKeyInfoRequest) => any;
|
|
287
|
+
|
|
288
|
+
export declare const GetAccessKeyInfoResponseFilterSensitiveLog: (obj: GetAccessKeyInfoResponse) => any;
|
|
289
|
+
|
|
290
|
+
export declare const GetCallerIdentityRequestFilterSensitiveLog: (obj: GetCallerIdentityRequest) => any;
|
|
291
|
+
|
|
292
|
+
export declare const GetCallerIdentityResponseFilterSensitiveLog: (obj: GetCallerIdentityResponse) => any;
|
|
293
|
+
|
|
294
|
+
export declare const GetFederationTokenRequestFilterSensitiveLog: (obj: GetFederationTokenRequest) => any;
|
|
295
|
+
|
|
296
|
+
export declare const FederatedUserFilterSensitiveLog: (obj: FederatedUser) => any;
|
|
297
|
+
|
|
298
|
+
export declare const GetFederationTokenResponseFilterSensitiveLog: (obj: GetFederationTokenResponse) => any;
|
|
299
|
+
|
|
300
|
+
export declare const GetSessionTokenRequestFilterSensitiveLog: (obj: GetSessionTokenRequest) => any;
|
|
301
|
+
|
|
302
|
+
export declare const GetSessionTokenResponseFilterSensitiveLog: (obj: GetSessionTokenResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.142.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
21
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
22
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
22
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
23
23
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
24
24
|
"@aws-sdk/hash-node": "3.127.0",
|
|
25
25
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|