@aws-sdk/client-iam 3.687.0 → 3.692.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.
Files changed (63) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +510 -10
  3. package/dist-es/IAM.js +10 -0
  4. package/dist-es/commands/DisableOrganizationsRootCredentialsManagementCommand.js +22 -0
  5. package/dist-es/commands/DisableOrganizationsRootSessionsCommand.js +22 -0
  6. package/dist-es/commands/EnableOrganizationsRootCredentialsManagementCommand.js +22 -0
  7. package/dist-es/commands/EnableOrganizationsRootSessionsCommand.js +22 -0
  8. package/dist-es/commands/ListOrganizationsFeaturesCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +70 -9
  11. package/dist-es/models/models_1.js +9 -0
  12. package/dist-es/protocols/Aws_query.js +310 -1
  13. package/dist-types/IAM.d.ts +43 -0
  14. package/dist-types/IAMClient.d.ts +7 -2
  15. package/dist-types/commands/CreateLoginProfileCommand.d.ts +3 -3
  16. package/dist-types/commands/DeactivateMFADeviceCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteLoginProfileCommand.d.ts +2 -2
  18. package/dist-types/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +91 -0
  19. package/dist-types/commands/DisableOrganizationsRootSessionsCommand.d.ts +91 -0
  20. package/dist-types/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +107 -0
  21. package/dist-types/commands/EnableOrganizationsRootSessionsCommand.d.ts +106 -0
  22. package/dist-types/commands/GetLoginProfileCommand.d.ts +2 -2
  23. package/dist-types/commands/ListAccountAliasesCommand.d.ts +3 -3
  24. package/dist-types/commands/ListOrganizationsFeaturesCommand.d.ts +89 -0
  25. package/dist-types/commands/SimulateCustomPolicyCommand.d.ts +2 -1
  26. package/dist-types/commands/SimulatePrincipalPolicyCommand.d.ts +1 -1
  27. package/dist-types/commands/TagInstanceProfileCommand.d.ts +1 -1
  28. package/dist-types/commands/TagMFADeviceCommand.d.ts +1 -1
  29. package/dist-types/commands/TagOpenIDConnectProviderCommand.d.ts +1 -1
  30. package/dist-types/commands/TagPolicyCommand.d.ts +1 -1
  31. package/dist-types/commands/TagRoleCommand.d.ts +1 -1
  32. package/dist-types/commands/TagSAMLProviderCommand.d.ts +1 -1
  33. package/dist-types/commands/TagServerCertificateCommand.d.ts +1 -1
  34. package/dist-types/commands/TagUserCommand.d.ts +1 -1
  35. package/dist-types/commands/index.d.ts +5 -0
  36. package/dist-types/models/models_0.d.ts +616 -1028
  37. package/dist-types/models/models_1.d.ts +642 -32
  38. package/dist-types/protocols/Aws_query.d.ts +45 -0
  39. package/dist-types/ts3.4/IAM.d.ts +105 -0
  40. package/dist-types/ts3.4/IAMClient.d.ts +30 -0
  41. package/dist-types/ts3.4/commands/CreateLoginProfileCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/DeleteLoginProfileCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/DisableOrganizationsRootSessionsCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/EnableOrganizationsRootSessionsCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/GetLoginProfileCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/ListOrganizationsFeaturesCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +2 -4
  50. package/dist-types/ts3.4/commands/SimulatePrincipalPolicyCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/TagInstanceProfileCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/TagMFADeviceCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/TagOpenIDConnectProviderCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/TagPolicyCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/TagRoleCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/TagSAMLProviderCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/TagServerCertificateCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/TagUserCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +501 -511
  61. package/dist-types/ts3.4/models/models_1.d.ts +135 -31
  62. package/dist-types/ts3.4/protocols/Aws_query.d.ts +60 -0
  63. package/package.json +36 -36
@@ -1,6 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IAMServiceException as __BaseException } from "./IAMServiceException";
3
3
  import {
4
+ ContextEntry,
5
+ PolicyEvaluationDecisionType,
6
+ Position,
4
7
  Role,
5
8
  ServerCertificateMetadata,
6
9
  SigningCertificate,
@@ -8,6 +11,107 @@ import {
8
11
  StatusType,
9
12
  Tag,
10
13
  } from "./models_0";
14
+ export declare const PolicySourceType: {
15
+ readonly AWS_MANAGED: "aws-managed";
16
+ readonly GROUP: "group";
17
+ readonly NONE: "none";
18
+ readonly RESOURCE: "resource";
19
+ readonly ROLE: "role";
20
+ readonly USER: "user";
21
+ readonly USER_MANAGED: "user-managed";
22
+ };
23
+ export type PolicySourceType =
24
+ (typeof PolicySourceType)[keyof typeof PolicySourceType];
25
+ export interface Statement {
26
+ SourcePolicyId?: string | undefined;
27
+ SourcePolicyType?: PolicySourceType | undefined;
28
+ StartPosition?: Position | undefined;
29
+ EndPosition?: Position | undefined;
30
+ }
31
+ export interface OrganizationsDecisionDetail {
32
+ AllowedByOrganizations?: boolean | undefined;
33
+ }
34
+ export interface PermissionsBoundaryDecisionDetail {
35
+ AllowedByPermissionsBoundary?: boolean | undefined;
36
+ }
37
+ export interface ResourceSpecificResult {
38
+ EvalResourceName: string | undefined;
39
+ EvalResourceDecision: PolicyEvaluationDecisionType | undefined;
40
+ MatchedStatements?: Statement[] | undefined;
41
+ MissingContextValues?: string[] | undefined;
42
+ EvalDecisionDetails?:
43
+ | Record<string, PolicyEvaluationDecisionType>
44
+ | undefined;
45
+ PermissionsBoundaryDecisionDetail?:
46
+ | PermissionsBoundaryDecisionDetail
47
+ | undefined;
48
+ }
49
+ export interface EvaluationResult {
50
+ EvalActionName: string | undefined;
51
+ EvalResourceName?: string | undefined;
52
+ EvalDecision: PolicyEvaluationDecisionType | undefined;
53
+ MatchedStatements?: Statement[] | undefined;
54
+ MissingContextValues?: string[] | undefined;
55
+ OrganizationsDecisionDetail?: OrganizationsDecisionDetail | undefined;
56
+ PermissionsBoundaryDecisionDetail?:
57
+ | PermissionsBoundaryDecisionDetail
58
+ | undefined;
59
+ EvalDecisionDetails?:
60
+ | Record<string, PolicyEvaluationDecisionType>
61
+ | undefined;
62
+ ResourceSpecificResults?: ResourceSpecificResult[] | undefined;
63
+ }
64
+ export interface SimulatePolicyResponse {
65
+ EvaluationResults?: EvaluationResult[] | undefined;
66
+ IsTruncated?: boolean | undefined;
67
+ Marker?: string | undefined;
68
+ }
69
+ export interface SimulatePrincipalPolicyRequest {
70
+ PolicySourceArn: string | undefined;
71
+ PolicyInputList?: string[] | undefined;
72
+ PermissionsBoundaryPolicyInputList?: string[] | undefined;
73
+ ActionNames: string[] | undefined;
74
+ ResourceArns?: string[] | undefined;
75
+ ResourcePolicy?: string | undefined;
76
+ ResourceOwner?: string | undefined;
77
+ CallerArn?: string | undefined;
78
+ ContextEntries?: ContextEntry[] | undefined;
79
+ ResourceHandlingOption?: string | undefined;
80
+ MaxItems?: number | undefined;
81
+ Marker?: string | undefined;
82
+ }
83
+ export interface TagInstanceProfileRequest {
84
+ InstanceProfileName: string | undefined;
85
+ Tags: Tag[] | undefined;
86
+ }
87
+ export interface TagMFADeviceRequest {
88
+ SerialNumber: string | undefined;
89
+ Tags: Tag[] | undefined;
90
+ }
91
+ export interface TagOpenIDConnectProviderRequest {
92
+ OpenIDConnectProviderArn: string | undefined;
93
+ Tags: Tag[] | undefined;
94
+ }
95
+ export interface TagPolicyRequest {
96
+ PolicyArn: string | undefined;
97
+ Tags: Tag[] | undefined;
98
+ }
99
+ export interface TagRoleRequest {
100
+ RoleName: string | undefined;
101
+ Tags: Tag[] | undefined;
102
+ }
103
+ export interface TagSAMLProviderRequest {
104
+ SAMLProviderArn: string | undefined;
105
+ Tags: Tag[] | undefined;
106
+ }
107
+ export interface TagServerCertificateRequest {
108
+ ServerCertificateName: string | undefined;
109
+ Tags: Tag[] | undefined;
110
+ }
111
+ export interface TagUserRequest {
112
+ UserName: string | undefined;
113
+ Tags: Tag[] | undefined;
114
+ }
11
115
  export interface UntagInstanceProfileRequest {
12
116
  InstanceProfileName: string | undefined;
13
117
  TagKeys: string[] | undefined;
@@ -41,20 +145,20 @@ export interface UntagUserRequest {
41
145
  TagKeys: string[] | undefined;
42
146
  }
43
147
  export interface UpdateAccessKeyRequest {
44
- UserName?: string;
148
+ UserName?: string | undefined;
45
149
  AccessKeyId: string | undefined;
46
150
  Status: StatusType | undefined;
47
151
  }
48
152
  export interface UpdateAccountPasswordPolicyRequest {
49
- MinimumPasswordLength?: number;
50
- RequireSymbols?: boolean;
51
- RequireNumbers?: boolean;
52
- RequireUppercaseCharacters?: boolean;
53
- RequireLowercaseCharacters?: boolean;
54
- AllowUsersToChangePassword?: boolean;
55
- MaxPasswordAge?: number;
56
- PasswordReusePrevention?: number;
57
- HardExpiry?: boolean;
153
+ MinimumPasswordLength?: number | undefined;
154
+ RequireSymbols?: boolean | undefined;
155
+ RequireNumbers?: boolean | undefined;
156
+ RequireUppercaseCharacters?: boolean | undefined;
157
+ RequireLowercaseCharacters?: boolean | undefined;
158
+ AllowUsersToChangePassword?: boolean | undefined;
159
+ MaxPasswordAge?: number | undefined;
160
+ PasswordReusePrevention?: number | undefined;
161
+ HardExpiry?: boolean | undefined;
58
162
  }
59
163
  export interface UpdateAssumeRolePolicyRequest {
60
164
  RoleName: string | undefined;
@@ -62,13 +166,13 @@ export interface UpdateAssumeRolePolicyRequest {
62
166
  }
63
167
  export interface UpdateGroupRequest {
64
168
  GroupName: string | undefined;
65
- NewPath?: string;
66
- NewGroupName?: string;
169
+ NewPath?: string | undefined;
170
+ NewGroupName?: string | undefined;
67
171
  }
68
172
  export interface UpdateLoginProfileRequest {
69
173
  UserName: string | undefined;
70
- Password?: string;
71
- PasswordResetRequired?: boolean;
174
+ Password?: string | undefined;
175
+ PasswordResetRequired?: boolean | undefined;
72
176
  }
73
177
  export interface UpdateOpenIDConnectProviderThumbprintRequest {
74
178
  OpenIDConnectProviderArn: string | undefined;
@@ -76,8 +180,8 @@ export interface UpdateOpenIDConnectProviderThumbprintRequest {
76
180
  }
77
181
  export interface UpdateRoleRequest {
78
182
  RoleName: string | undefined;
79
- Description?: string;
80
- MaxSessionDuration?: number;
183
+ Description?: string | undefined;
184
+ MaxSessionDuration?: number | undefined;
81
185
  }
82
186
  export interface UpdateRoleResponse {}
83
187
  export interface UpdateRoleDescriptionRequest {
@@ -85,27 +189,27 @@ export interface UpdateRoleDescriptionRequest {
85
189
  Description: string | undefined;
86
190
  }
87
191
  export interface UpdateRoleDescriptionResponse {
88
- Role?: Role;
192
+ Role?: Role | undefined;
89
193
  }
90
194
  export interface UpdateSAMLProviderRequest {
91
195
  SAMLMetadataDocument: string | undefined;
92
196
  SAMLProviderArn: string | undefined;
93
197
  }
94
198
  export interface UpdateSAMLProviderResponse {
95
- SAMLProviderArn?: string;
199
+ SAMLProviderArn?: string | undefined;
96
200
  }
97
201
  export interface UpdateServerCertificateRequest {
98
202
  ServerCertificateName: string | undefined;
99
- NewPath?: string;
100
- NewServerCertificateName?: string;
203
+ NewPath?: string | undefined;
204
+ NewServerCertificateName?: string | undefined;
101
205
  }
102
206
  export interface UpdateServiceSpecificCredentialRequest {
103
- UserName?: string;
207
+ UserName?: string | undefined;
104
208
  ServiceSpecificCredentialId: string | undefined;
105
209
  Status: StatusType | undefined;
106
210
  }
107
211
  export interface UpdateSigningCertificateRequest {
108
- UserName?: string;
212
+ UserName?: string | undefined;
109
213
  CertificateId: string | undefined;
110
214
  Status: StatusType | undefined;
111
215
  }
@@ -116,8 +220,8 @@ export interface UpdateSSHPublicKeyRequest {
116
220
  }
117
221
  export interface UpdateUserRequest {
118
222
  UserName: string | undefined;
119
- NewPath?: string;
120
- NewUserName?: string;
223
+ NewPath?: string | undefined;
224
+ NewUserName?: string | undefined;
121
225
  }
122
226
  export declare class KeyPairMismatchException extends __BaseException {
123
227
  readonly name: "KeyPairMismatchException";
@@ -134,16 +238,16 @@ export declare class MalformedCertificateException extends __BaseException {
134
238
  );
135
239
  }
136
240
  export interface UploadServerCertificateRequest {
137
- Path?: string;
241
+ Path?: string | undefined;
138
242
  ServerCertificateName: string | undefined;
139
243
  CertificateBody: string | undefined;
140
244
  PrivateKey: string | undefined;
141
- CertificateChain?: string;
142
- Tags?: Tag[];
245
+ CertificateChain?: string | undefined;
246
+ Tags?: Tag[] | undefined;
143
247
  }
144
248
  export interface UploadServerCertificateResponse {
145
- ServerCertificateMetadata?: ServerCertificateMetadata;
146
- Tags?: Tag[];
249
+ ServerCertificateMetadata?: ServerCertificateMetadata | undefined;
250
+ Tags?: Tag[] | undefined;
147
251
  }
148
252
  export declare class DuplicateCertificateException extends __BaseException {
149
253
  readonly name: "DuplicateCertificateException";
@@ -160,7 +264,7 @@ export declare class InvalidCertificateException extends __BaseException {
160
264
  );
161
265
  }
162
266
  export interface UploadSigningCertificateRequest {
163
- UserName?: string;
267
+ UserName?: string | undefined;
164
268
  CertificateBody: string | undefined;
165
269
  }
166
270
  export interface UploadSigningCertificateResponse {
@@ -185,7 +289,7 @@ export interface UploadSSHPublicKeyRequest {
185
289
  SSHPublicKeyBody: string | undefined;
186
290
  }
187
291
  export interface UploadSSHPublicKeyResponse {
188
- SSHPublicKey?: SSHPublicKey;
292
+ SSHPublicKey?: SSHPublicKey | undefined;
189
293
  }
190
294
  export declare const UpdateLoginProfileRequestFilterSensitiveLog: (
191
295
  obj: UpdateLoginProfileRequest
@@ -195,10 +195,26 @@ import {
195
195
  DetachUserPolicyCommandInput,
196
196
  DetachUserPolicyCommandOutput,
197
197
  } from "../commands/DetachUserPolicyCommand";
198
+ import {
199
+ DisableOrganizationsRootCredentialsManagementCommandInput,
200
+ DisableOrganizationsRootCredentialsManagementCommandOutput,
201
+ } from "../commands/DisableOrganizationsRootCredentialsManagementCommand";
202
+ import {
203
+ DisableOrganizationsRootSessionsCommandInput,
204
+ DisableOrganizationsRootSessionsCommandOutput,
205
+ } from "../commands/DisableOrganizationsRootSessionsCommand";
198
206
  import {
199
207
  EnableMFADeviceCommandInput,
200
208
  EnableMFADeviceCommandOutput,
201
209
  } from "../commands/EnableMFADeviceCommand";
210
+ import {
211
+ EnableOrganizationsRootCredentialsManagementCommandInput,
212
+ EnableOrganizationsRootCredentialsManagementCommandOutput,
213
+ } from "../commands/EnableOrganizationsRootCredentialsManagementCommand";
214
+ import {
215
+ EnableOrganizationsRootSessionsCommandInput,
216
+ EnableOrganizationsRootSessionsCommandOutput,
217
+ } from "../commands/EnableOrganizationsRootSessionsCommand";
202
218
  import {
203
219
  GenerateCredentialReportCommandInput,
204
220
  GenerateCredentialReportCommandOutput,
@@ -379,6 +395,10 @@ import {
379
395
  ListOpenIDConnectProviderTagsCommandInput,
380
396
  ListOpenIDConnectProviderTagsCommandOutput,
381
397
  } from "../commands/ListOpenIDConnectProviderTagsCommand";
398
+ import {
399
+ ListOrganizationsFeaturesCommandInput,
400
+ ListOrganizationsFeaturesCommandOutput,
401
+ } from "../commands/ListOrganizationsFeaturesCommand";
382
402
  import {
383
403
  ListPoliciesCommandInput,
384
404
  ListPoliciesCommandOutput,
@@ -831,10 +851,26 @@ export declare const se_DetachUserPolicyCommand: (
831
851
  input: DetachUserPolicyCommandInput,
832
852
  context: __SerdeContext
833
853
  ) => Promise<__HttpRequest>;
854
+ export declare const se_DisableOrganizationsRootCredentialsManagementCommand: (
855
+ input: DisableOrganizationsRootCredentialsManagementCommandInput,
856
+ context: __SerdeContext
857
+ ) => Promise<__HttpRequest>;
858
+ export declare const se_DisableOrganizationsRootSessionsCommand: (
859
+ input: DisableOrganizationsRootSessionsCommandInput,
860
+ context: __SerdeContext
861
+ ) => Promise<__HttpRequest>;
834
862
  export declare const se_EnableMFADeviceCommand: (
835
863
  input: EnableMFADeviceCommandInput,
836
864
  context: __SerdeContext
837
865
  ) => Promise<__HttpRequest>;
866
+ export declare const se_EnableOrganizationsRootCredentialsManagementCommand: (
867
+ input: EnableOrganizationsRootCredentialsManagementCommandInput,
868
+ context: __SerdeContext
869
+ ) => Promise<__HttpRequest>;
870
+ export declare const se_EnableOrganizationsRootSessionsCommand: (
871
+ input: EnableOrganizationsRootSessionsCommandInput,
872
+ context: __SerdeContext
873
+ ) => Promise<__HttpRequest>;
838
874
  export declare const se_GenerateCredentialReportCommand: (
839
875
  input: GenerateCredentialReportCommandInput,
840
876
  context: __SerdeContext
@@ -1015,6 +1051,10 @@ export declare const se_ListOpenIDConnectProviderTagsCommand: (
1015
1051
  input: ListOpenIDConnectProviderTagsCommandInput,
1016
1052
  context: __SerdeContext
1017
1053
  ) => Promise<__HttpRequest>;
1054
+ export declare const se_ListOrganizationsFeaturesCommand: (
1055
+ input: ListOrganizationsFeaturesCommandInput,
1056
+ context: __SerdeContext
1057
+ ) => Promise<__HttpRequest>;
1018
1058
  export declare const se_ListPoliciesCommand: (
1019
1059
  input: ListPoliciesCommandInput,
1020
1060
  context: __SerdeContext
@@ -1467,10 +1507,26 @@ export declare const de_DetachUserPolicyCommand: (
1467
1507
  output: __HttpResponse,
1468
1508
  context: __SerdeContext
1469
1509
  ) => Promise<DetachUserPolicyCommandOutput>;
1510
+ export declare const de_DisableOrganizationsRootCredentialsManagementCommand: (
1511
+ output: __HttpResponse,
1512
+ context: __SerdeContext
1513
+ ) => Promise<DisableOrganizationsRootCredentialsManagementCommandOutput>;
1514
+ export declare const de_DisableOrganizationsRootSessionsCommand: (
1515
+ output: __HttpResponse,
1516
+ context: __SerdeContext
1517
+ ) => Promise<DisableOrganizationsRootSessionsCommandOutput>;
1470
1518
  export declare const de_EnableMFADeviceCommand: (
1471
1519
  output: __HttpResponse,
1472
1520
  context: __SerdeContext
1473
1521
  ) => Promise<EnableMFADeviceCommandOutput>;
1522
+ export declare const de_EnableOrganizationsRootCredentialsManagementCommand: (
1523
+ output: __HttpResponse,
1524
+ context: __SerdeContext
1525
+ ) => Promise<EnableOrganizationsRootCredentialsManagementCommandOutput>;
1526
+ export declare const de_EnableOrganizationsRootSessionsCommand: (
1527
+ output: __HttpResponse,
1528
+ context: __SerdeContext
1529
+ ) => Promise<EnableOrganizationsRootSessionsCommandOutput>;
1474
1530
  export declare const de_GenerateCredentialReportCommand: (
1475
1531
  output: __HttpResponse,
1476
1532
  context: __SerdeContext
@@ -1651,6 +1707,10 @@ export declare const de_ListOpenIDConnectProviderTagsCommand: (
1651
1707
  output: __HttpResponse,
1652
1708
  context: __SerdeContext
1653
1709
  ) => Promise<ListOpenIDConnectProviderTagsCommandOutput>;
1710
+ export declare const de_ListOrganizationsFeaturesCommand: (
1711
+ output: __HttpResponse,
1712
+ context: __SerdeContext
1713
+ ) => Promise<ListOrganizationsFeaturesCommandOutput>;
1654
1714
  export declare const de_ListPoliciesCommand: (
1655
1715
  output: __HttpResponse,
1656
1716
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iam",
3
3
  "description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iam",
@@ -20,45 +20,45 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
- "@smithy/util-waiter": "^3.1.7",
61
+ "@smithy/util-waiter": "^3.1.8",
62
62
  "tslib": "^2.6.2"
63
63
  },
64
64
  "devDependencies": {