@aws-sdk/client-identitystore 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.
@@ -8,14 +8,14 @@ import { IdentitystoreServiceException as __BaseException } from "./Identitystor
8
8
  export declare class AccessDeniedException extends __BaseException {
9
9
  readonly name: "AccessDeniedException";
10
10
  readonly $fault: "client";
11
- Message?: string;
11
+ Message?: string | undefined;
12
12
  /**
13
13
  * <p>The identifier for each request. This value is a globally unique ID that is generated by
14
14
  * the identity store service for each sent request, and is then returned inside the exception
15
15
  * if the request fails.</p>
16
16
  * @public
17
17
  */
18
- RequestId?: string;
18
+ RequestId?: string | undefined;
19
19
  /**
20
20
  * @internal
21
21
  */
@@ -32,45 +32,45 @@ export interface Address {
32
32
  * of the address.</p>
33
33
  * @public
34
34
  */
35
- StreetAddress?: string;
35
+ StreetAddress?: string | undefined;
36
36
  /**
37
37
  * <p>A string of the address locality.</p>
38
38
  * @public
39
39
  */
40
- Locality?: string;
40
+ Locality?: string | undefined;
41
41
  /**
42
42
  * <p>The
43
43
  * region
44
44
  * of the address.</p>
45
45
  * @public
46
46
  */
47
- Region?: string;
47
+ Region?: string | undefined;
48
48
  /**
49
49
  * <p>The postal code of the address.</p>
50
50
  * @public
51
51
  */
52
- PostalCode?: string;
52
+ PostalCode?: string | undefined;
53
53
  /**
54
54
  * <p>The country of the address.</p>
55
55
  * @public
56
56
  */
57
- Country?: string;
57
+ Country?: string | undefined;
58
58
  /**
59
59
  * <p>A string containing a formatted version of the address for display.</p>
60
60
  * @public
61
61
  */
62
- Formatted?: string;
62
+ Formatted?: string | undefined;
63
63
  /**
64
64
  * <p>A string representing the type of address. For example, "Home."</p>
65
65
  * @public
66
66
  */
67
- Type?: string;
67
+ Type?: string | undefined;
68
68
  /**
69
69
  * <p>A Boolean value representing whether this is the primary address for the associated
70
70
  * resource.</p>
71
71
  * @public
72
72
  */
73
- Primary?: boolean;
73
+ Primary?: boolean | undefined;
74
74
  }
75
75
  /**
76
76
  * <p>The identifier issued to this resource by an external identity provider.</p>
@@ -165,7 +165,7 @@ export interface AttributeOperation {
165
165
  * This type is not supported by Java V1, Go V1, and older versions of the CLI.</p>
166
166
  * @public
167
167
  */
168
- AttributeValue?: __DocumentType;
168
+ AttributeValue?: __DocumentType | undefined;
169
169
  }
170
170
  /**
171
171
  * @public
@@ -206,19 +206,19 @@ export declare class InternalServerException extends __BaseException {
206
206
  readonly name: "InternalServerException";
207
207
  readonly $fault: "server";
208
208
  $retryable: {};
209
- Message?: string;
209
+ Message?: string | undefined;
210
210
  /**
211
211
  * <p>The identifier for each request. This value is a globally unique ID that is generated by
212
212
  * the identity store service for each sent request, and is then returned inside the exception
213
213
  * if the request fails.</p>
214
214
  * @public
215
215
  */
216
- RequestId?: string;
216
+ RequestId?: string | undefined;
217
217
  /**
218
218
  * <p>The number of seconds to wait before retrying the next request.</p>
219
219
  * @public
220
220
  */
221
- RetryAfterSeconds?: number;
221
+ RetryAfterSeconds?: number | undefined;
222
222
  /**
223
223
  * @internal
224
224
  */
@@ -249,20 +249,20 @@ export declare class ResourceNotFoundException extends __BaseException {
249
249
  * <p>An enum object indicating the type of resource in the identity store service. Valid values include USER, GROUP, and IDENTITY_STORE.</p>
250
250
  * @public
251
251
  */
252
- ResourceType?: ResourceType;
252
+ ResourceType?: ResourceType | undefined;
253
253
  /**
254
254
  * <p>The identifier for a resource in the identity store that can be used as <code>UserId</code> or <code>GroupId</code>. The format for <code>ResourceId</code> is either <code>UUID</code> or <code>1234567890-UUID</code>, where <code>UUID</code> is a randomly generated value for each resource when it is created and <code>1234567890</code> represents the <code>IdentityStoreId</code> string value. In the case that the identity store is migrated from a legacy SSO identity store, the <code>ResourceId</code> for that identity store will be in the format of <code>UUID</code>. Otherwise, it will be in the <code>1234567890-UUID</code> format.</p>
255
255
  * @public
256
256
  */
257
- ResourceId?: string;
258
- Message?: string;
257
+ ResourceId?: string | undefined;
258
+ Message?: string | undefined;
259
259
  /**
260
260
  * <p>The identifier for each request. This value is a globally unique ID that is generated by
261
261
  * the identity store service for each sent request, and is then returned inside the exception
262
262
  * if the request fails.</p>
263
263
  * @public
264
264
  */
265
- RequestId?: string;
265
+ RequestId?: string | undefined;
266
266
  /**
267
267
  * @internal
268
268
  */
@@ -278,19 +278,19 @@ export declare class ThrottlingException extends __BaseException {
278
278
  $retryable: {
279
279
  throttling: boolean;
280
280
  };
281
- Message?: string;
281
+ Message?: string | undefined;
282
282
  /**
283
283
  * <p>The identifier for each request. This value is a globally unique ID that is generated by
284
284
  * the identity store service for each sent request, and is then returned inside the exception
285
285
  * if the request fails.</p>
286
286
  * @public
287
287
  */
288
- RequestId?: string;
288
+ RequestId?: string | undefined;
289
289
  /**
290
290
  * <p>The number of seconds to wait before retrying the next request.</p>
291
291
  * @public
292
292
  */
293
- RetryAfterSeconds?: number;
293
+ RetryAfterSeconds?: number | undefined;
294
294
  /**
295
295
  * @internal
296
296
  */
@@ -303,14 +303,14 @@ export declare class ThrottlingException extends __BaseException {
303
303
  export declare class ValidationException extends __BaseException {
304
304
  readonly name: "ValidationException";
305
305
  readonly $fault: "client";
306
- Message?: string;
306
+ Message?: string | undefined;
307
307
  /**
308
308
  * <p>The identifier for each request. This value is a globally unique ID that is generated by
309
309
  * the identity store service for each sent request, and is then returned inside the exception
310
310
  * if the request fails.</p>
311
311
  * @public
312
312
  */
313
- RequestId?: string;
313
+ RequestId?: string | undefined;
314
314
  /**
315
315
  * @internal
316
316
  */
@@ -439,12 +439,12 @@ export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typ
439
439
  export declare class ConflictException extends __BaseException {
440
440
  readonly name: "ConflictException";
441
441
  readonly $fault: "client";
442
- Message?: string;
442
+ Message?: string | undefined;
443
443
  /**
444
444
  * <p>The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.</p>
445
445
  * @public
446
446
  */
447
- RequestId?: string;
447
+ RequestId?: string | undefined;
448
448
  /**
449
449
  * <p>This request cannot be completed for one of the following reasons:</p>
450
450
  * <ul>
@@ -457,7 +457,7 @@ export declare class ConflictException extends __BaseException {
457
457
  * </ul>
458
458
  * @public
459
459
  */
460
- Reason?: ConflictExceptionReason;
460
+ Reason?: ConflictExceptionReason | undefined;
461
461
  /**
462
462
  * @internal
463
463
  */
@@ -506,12 +506,12 @@ export interface CreateGroupMembershipResponse {
506
506
  export declare class ServiceQuotaExceededException extends __BaseException {
507
507
  readonly name: "ServiceQuotaExceededException";
508
508
  readonly $fault: "client";
509
- Message?: string;
509
+ Message?: string | undefined;
510
510
  /**
511
511
  * <p>The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.</p>
512
512
  * @public
513
513
  */
514
- RequestId?: string;
514
+ RequestId?: string | undefined;
515
515
  /**
516
516
  * @internal
517
517
  */
@@ -596,12 +596,12 @@ export interface ListGroupMembershipsRequest {
596
596
  * <code>List</code> requests to specify how many results to return in one page.</p>
597
597
  * @public
598
598
  */
599
- MaxResults?: number;
599
+ MaxResults?: number | undefined;
600
600
  /**
601
601
  * <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code> and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.</p>
602
602
  * @public
603
603
  */
604
- NextToken?: string;
604
+ NextToken?: string | undefined;
605
605
  }
606
606
  /**
607
607
  * <p>Contains the identifiers for a group, a group member, and a <code>GroupMembership</code>
@@ -618,17 +618,17 @@ export interface GroupMembership {
618
618
  * <p>The identifier for a <code>GroupMembership</code> object in an identity store.</p>
619
619
  * @public
620
620
  */
621
- MembershipId?: string;
621
+ MembershipId?: string | undefined;
622
622
  /**
623
623
  * <p>The identifier for a group in the identity store.</p>
624
624
  * @public
625
625
  */
626
- GroupId?: string;
626
+ GroupId?: string | undefined;
627
627
  /**
628
628
  * <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
629
629
  * @public
630
630
  */
631
- MemberId?: MemberId;
631
+ MemberId?: MemberId | undefined;
632
632
  }
633
633
  /**
634
634
  * @public
@@ -643,7 +643,7 @@ export interface ListGroupMembershipsResponse {
643
643
  * <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code>, and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.</p>
644
644
  * @public
645
645
  */
646
- NextToken?: string;
646
+ NextToken?: string | undefined;
647
647
  }
648
648
  /**
649
649
  * @public
@@ -660,12 +660,12 @@ export interface CreateGroupRequest {
660
660
  * reserved names and can't be used for users or groups.</p>
661
661
  * @public
662
662
  */
663
- DisplayName?: string;
663
+ DisplayName?: string | undefined;
664
664
  /**
665
665
  * <p>A string containing the description of the group.</p>
666
666
  * @public
667
667
  */
668
- Description?: string;
668
+ Description?: string | undefined;
669
669
  }
670
670
  /**
671
671
  * @public
@@ -740,18 +740,18 @@ export interface DescribeGroupResponse {
740
740
  * store.</p>
741
741
  * @public
742
742
  */
743
- DisplayName?: string;
743
+ DisplayName?: string | undefined;
744
744
  /**
745
745
  * <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this
746
746
  * resource by an external identity provider.</p>
747
747
  * @public
748
748
  */
749
- ExternalIds?: ExternalId[];
749
+ ExternalIds?: ExternalId[] | undefined;
750
750
  /**
751
751
  * <p>A string containing a description of the group.</p>
752
752
  * @public
753
753
  */
754
- Description?: string;
754
+ Description?: string | undefined;
755
755
  /**
756
756
  * <p>The globally unique identifier for the identity store.</p>
757
757
  * @public
@@ -798,7 +798,7 @@ export interface ListGroupsRequest {
798
798
  * to return in one page. The length limit is 50 characters.</p>
799
799
  * @public
800
800
  */
801
- MaxResults?: number;
801
+ MaxResults?: number | undefined;
802
802
  /**
803
803
  * <p>The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API
804
804
  * operations. This value is generated by the identity store service. It is returned in the
@@ -806,7 +806,7 @@ export interface ListGroupsRequest {
806
806
  * returned when it is used in the API request to search for the next page.</p>
807
807
  * @public
808
808
  */
809
- NextToken?: string;
809
+ NextToken?: string | undefined;
810
810
  /**
811
811
  * @deprecated
812
812
  *
@@ -814,7 +814,7 @@ export interface ListGroupsRequest {
814
814
  * <code>ListGroups</code> requests.</p>
815
815
  * @public
816
816
  */
817
- Filters?: Filter[];
817
+ Filters?: Filter[] | undefined;
818
818
  }
819
819
  /**
820
820
  * <p>A group object that contains the metadata and attributes for a specified group.</p>
@@ -834,18 +834,18 @@ export interface Group {
834
834
  * identity store.</p>
835
835
  * @public
836
836
  */
837
- DisplayName?: string;
837
+ DisplayName?: string | undefined;
838
838
  /**
839
839
  * <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this
840
840
  * resource by an external identity provider.</p>
841
841
  * @public
842
842
  */
843
- ExternalIds?: ExternalId[];
843
+ ExternalIds?: ExternalId[] | undefined;
844
844
  /**
845
845
  * <p>A string containing a description of the specified group.</p>
846
846
  * @public
847
847
  */
848
- Description?: string;
848
+ Description?: string | undefined;
849
849
  /**
850
850
  * <p>The globally unique identifier for the identity store.</p>
851
851
  * @public
@@ -868,7 +868,7 @@ export interface ListGroupsResponse {
868
868
  * returned when it1 is used in the API request to search for the next page.</p>
869
869
  * @public
870
870
  */
871
- NextToken?: string;
871
+ NextToken?: string | undefined;
872
872
  }
873
873
  /**
874
874
  * @public
@@ -925,17 +925,17 @@ export interface GroupMembershipExistenceResult {
925
925
  * <p>The identifier for a group in the identity store.</p>
926
926
  * @public
927
927
  */
928
- GroupId?: string;
928
+ GroupId?: string | undefined;
929
929
  /**
930
930
  * <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
931
931
  * @public
932
932
  */
933
- MemberId?: MemberId;
933
+ MemberId?: MemberId | undefined;
934
934
  /**
935
935
  * <p>Indicates whether a membership relation exists or not.</p>
936
936
  * @public
937
937
  */
938
- MembershipExists?: boolean;
938
+ MembershipExists?: boolean | undefined;
939
939
  }
940
940
  /**
941
941
  * @public
@@ -965,12 +965,12 @@ export interface ListGroupMembershipsForMemberRequest {
965
965
  * <p>The maximum number of results to be returned per request. This parameter is used in the <code>ListUsers</code> and <code>ListGroups</code> requests to specify how many results to return in one page. The length limit is 50 characters.</p>
966
966
  * @public
967
967
  */
968
- MaxResults?: number;
968
+ MaxResults?: number | undefined;
969
969
  /**
970
970
  * <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code>, and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.</p>
971
971
  * @public
972
972
  */
973
- NextToken?: string;
973
+ NextToken?: string | undefined;
974
974
  }
975
975
  /**
976
976
  * @public
@@ -986,7 +986,7 @@ export interface ListGroupMembershipsForMemberResponse {
986
986
  * </p>
987
987
  * @public
988
988
  */
989
- NextToken?: string;
989
+ NextToken?: string | undefined;
990
990
  }
991
991
  /**
992
992
  * <p>The email address associated with the user.</p>
@@ -997,18 +997,18 @@ export interface Email {
997
997
  * <p>A string containing an email address. For example, "johndoe@amazon.com."</p>
998
998
  * @public
999
999
  */
1000
- Value?: string;
1000
+ Value?: string | undefined;
1001
1001
  /**
1002
1002
  * <p>A string representing the type of address. For example, "Work."</p>
1003
1003
  * @public
1004
1004
  */
1005
- Type?: string;
1005
+ Type?: string | undefined;
1006
1006
  /**
1007
1007
  * <p>A Boolean value representing whether this is the primary email address for the
1008
1008
  * associated resource.</p>
1009
1009
  * @public
1010
1010
  */
1011
- Primary?: boolean;
1011
+ Primary?: boolean | undefined;
1012
1012
  }
1013
1013
  /**
1014
1014
  * <p>The
@@ -1021,32 +1021,32 @@ export interface Name {
1021
1021
  * <p>A string containing a formatted version of the name for display.</p>
1022
1022
  * @public
1023
1023
  */
1024
- Formatted?: string;
1024
+ Formatted?: string | undefined;
1025
1025
  /**
1026
1026
  * <p>The family name of the user.</p>
1027
1027
  * @public
1028
1028
  */
1029
- FamilyName?: string;
1029
+ FamilyName?: string | undefined;
1030
1030
  /**
1031
1031
  * <p>The given name of the user.</p>
1032
1032
  * @public
1033
1033
  */
1034
- GivenName?: string;
1034
+ GivenName?: string | undefined;
1035
1035
  /**
1036
1036
  * <p>The middle name of the user.</p>
1037
1037
  * @public
1038
1038
  */
1039
- MiddleName?: string;
1039
+ MiddleName?: string | undefined;
1040
1040
  /**
1041
1041
  * <p>The honorific prefix of the user. For example, "Dr."</p>
1042
1042
  * @public
1043
1043
  */
1044
- HonorificPrefix?: string;
1044
+ HonorificPrefix?: string | undefined;
1045
1045
  /**
1046
1046
  * <p>The honorific suffix of the user. For example, "M.D."</p>
1047
1047
  * @public
1048
1048
  */
1049
- HonorificSuffix?: string;
1049
+ HonorificSuffix?: string | undefined;
1050
1050
  }
1051
1051
  /**
1052
1052
  * <p>The phone number associated with the user.</p>
@@ -1059,18 +1059,18 @@ export interface PhoneNumber {
1059
1059
  * or "+1 (800) 123-4567".</p>
1060
1060
  * @public
1061
1061
  */
1062
- Value?: string;
1062
+ Value?: string | undefined;
1063
1063
  /**
1064
1064
  * <p>A string representing the type of a phone number. For example, "Mobile."</p>
1065
1065
  * @public
1066
1066
  */
1067
- Type?: string;
1067
+ Type?: string | undefined;
1068
1068
  /**
1069
1069
  * <p>A Boolean value representing whether this is the primary phone number for the associated
1070
1070
  * resource.</p>
1071
1071
  * @public
1072
1072
  */
1073
- Primary?: boolean;
1073
+ Primary?: boolean | undefined;
1074
1074
  }
1075
1075
  /**
1076
1076
  * @public
@@ -1089,71 +1089,71 @@ export interface CreateUserRequest {
1089
1089
  * are reserved names and can't be used for users or groups.</p>
1090
1090
  * @public
1091
1091
  */
1092
- UserName?: string;
1092
+ UserName?: string | undefined;
1093
1093
  /**
1094
1094
  * <p>An object containing the name of the user.</p>
1095
1095
  * @public
1096
1096
  */
1097
- Name?: Name;
1097
+ Name?: Name | undefined;
1098
1098
  /**
1099
1099
  * <p>A string containing the name of the user. This value is typically formatted for display
1100
1100
  * when the user is referenced. For example, "John Doe." </p>
1101
1101
  * @public
1102
1102
  */
1103
- DisplayName?: string;
1103
+ DisplayName?: string | undefined;
1104
1104
  /**
1105
1105
  * <p>A string containing an alternate name for the user.</p>
1106
1106
  * @public
1107
1107
  */
1108
- NickName?: string;
1108
+ NickName?: string | undefined;
1109
1109
  /**
1110
1110
  * <p>A string containing a URL that might be associated with the user.</p>
1111
1111
  * @public
1112
1112
  */
1113
- ProfileUrl?: string;
1113
+ ProfileUrl?: string | undefined;
1114
1114
  /**
1115
1115
  * <p>A list of <code>Email</code> objects containing email addresses associated with the user.</p>
1116
1116
  * @public
1117
1117
  */
1118
- Emails?: Email[];
1118
+ Emails?: Email[] | undefined;
1119
1119
  /**
1120
1120
  * <p>A list of <code>Address</code> objects containing addresses associated with the user.</p>
1121
1121
  * @public
1122
1122
  */
1123
- Addresses?: Address[];
1123
+ Addresses?: Address[] | undefined;
1124
1124
  /**
1125
1125
  * <p>A list of <code>PhoneNumber</code> objects containing phone numbers associated with the user.</p>
1126
1126
  * @public
1127
1127
  */
1128
- PhoneNumbers?: PhoneNumber[];
1128
+ PhoneNumbers?: PhoneNumber[] | undefined;
1129
1129
  /**
1130
1130
  * <p>A string indicating the type of user. Possible values are left unspecified. The value
1131
1131
  * can vary based on your specific use case.</p>
1132
1132
  * @public
1133
1133
  */
1134
- UserType?: string;
1134
+ UserType?: string | undefined;
1135
1135
  /**
1136
1136
  * <p>A string containing the title of the user. Possible values are left unspecified. The
1137
1137
  * value can vary based on your specific use case.</p>
1138
1138
  * @public
1139
1139
  */
1140
- Title?: string;
1140
+ Title?: string | undefined;
1141
1141
  /**
1142
1142
  * <p>A string containing the preferred language of the user. For example, "American English"
1143
1143
  * or "en-us."</p>
1144
1144
  * @public
1145
1145
  */
1146
- PreferredLanguage?: string;
1146
+ PreferredLanguage?: string | undefined;
1147
1147
  /**
1148
1148
  * <p>A string containing the geographical region or location of the user.</p>
1149
1149
  * @public
1150
1150
  */
1151
- Locale?: string;
1151
+ Locale?: string | undefined;
1152
1152
  /**
1153
1153
  * <p>A string containing the time zone of the user.</p>
1154
1154
  * @public
1155
1155
  */
1156
- Timezone?: string;
1156
+ Timezone?: string | undefined;
1157
1157
  }
1158
1158
  /**
1159
1159
  * @public
@@ -1219,7 +1219,7 @@ export interface DescribeUserResponse {
1219
1219
  * created and stored as an attribute of the user object in the identity store.</p>
1220
1220
  * @public
1221
1221
  */
1222
- UserName?: string;
1222
+ UserName?: string | undefined;
1223
1223
  /**
1224
1224
  * <p>The identifier for a user in the identity store.</p>
1225
1225
  * @public
@@ -1230,67 +1230,67 @@ export interface DescribeUserResponse {
1230
1230
  * resource by an external identity provider.</p>
1231
1231
  * @public
1232
1232
  */
1233
- ExternalIds?: ExternalId[];
1233
+ ExternalIds?: ExternalId[] | undefined;
1234
1234
  /**
1235
1235
  * <p>The name of the user.</p>
1236
1236
  * @public
1237
1237
  */
1238
- Name?: Name;
1238
+ Name?: Name | undefined;
1239
1239
  /**
1240
1240
  * <p>The display name of the user.</p>
1241
1241
  * @public
1242
1242
  */
1243
- DisplayName?: string;
1243
+ DisplayName?: string | undefined;
1244
1244
  /**
1245
1245
  * <p>An alternative descriptive name for the user.</p>
1246
1246
  * @public
1247
1247
  */
1248
- NickName?: string;
1248
+ NickName?: string | undefined;
1249
1249
  /**
1250
1250
  * <p>A URL link for the user's profile.</p>
1251
1251
  * @public
1252
1252
  */
1253
- ProfileUrl?: string;
1253
+ ProfileUrl?: string | undefined;
1254
1254
  /**
1255
1255
  * <p>The email address of the user.</p>
1256
1256
  * @public
1257
1257
  */
1258
- Emails?: Email[];
1258
+ Emails?: Email[] | undefined;
1259
1259
  /**
1260
1260
  * <p>The physical address of the user.</p>
1261
1261
  * @public
1262
1262
  */
1263
- Addresses?: Address[];
1263
+ Addresses?: Address[] | undefined;
1264
1264
  /**
1265
1265
  * <p>A list of <code>PhoneNumber</code> objects associated with a user.</p>
1266
1266
  * @public
1267
1267
  */
1268
- PhoneNumbers?: PhoneNumber[];
1268
+ PhoneNumbers?: PhoneNumber[] | undefined;
1269
1269
  /**
1270
1270
  * <p>A string indicating the type of user.</p>
1271
1271
  * @public
1272
1272
  */
1273
- UserType?: string;
1273
+ UserType?: string | undefined;
1274
1274
  /**
1275
1275
  * <p>A string containing the title of the user.</p>
1276
1276
  * @public
1277
1277
  */
1278
- Title?: string;
1278
+ Title?: string | undefined;
1279
1279
  /**
1280
1280
  * <p>The preferred language of the user.</p>
1281
1281
  * @public
1282
1282
  */
1283
- PreferredLanguage?: string;
1283
+ PreferredLanguage?: string | undefined;
1284
1284
  /**
1285
1285
  * <p>A string containing the geographical region or location of the user.</p>
1286
1286
  * @public
1287
1287
  */
1288
- Locale?: string;
1288
+ Locale?: string | undefined;
1289
1289
  /**
1290
1290
  * <p>The time zone for a user.</p>
1291
1291
  * @public
1292
1292
  */
1293
- Timezone?: string;
1293
+ Timezone?: string | undefined;
1294
1294
  /**
1295
1295
  * <p>The globally unique identifier for the identity store.</p>
1296
1296
  * @public
@@ -1316,7 +1316,7 @@ export interface ListUsersRequest {
1316
1316
  * to return in one page. The length limit is 50 characters.</p>
1317
1317
  * @public
1318
1318
  */
1319
- MaxResults?: number;
1319
+ MaxResults?: number | undefined;
1320
1320
  /**
1321
1321
  * <p>The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API
1322
1322
  * operations. This value is generated by the identity store service. It is returned in the
@@ -1324,7 +1324,7 @@ export interface ListUsersRequest {
1324
1324
  * returned when it is used in the API request to search for the next page.</p>
1325
1325
  * @public
1326
1326
  */
1327
- NextToken?: string;
1327
+ NextToken?: string | undefined;
1328
1328
  /**
1329
1329
  * @deprecated
1330
1330
  *
@@ -1332,7 +1332,7 @@ export interface ListUsersRequest {
1332
1332
  * <code>ListGroups</code> requests. </p>
1333
1333
  * @public
1334
1334
  */
1335
- Filters?: Filter[];
1335
+ Filters?: Filter[] | undefined;
1336
1336
  }
1337
1337
  /**
1338
1338
  * <p>A user object that contains the metadata and attributes for a specified user.</p>
@@ -1345,7 +1345,7 @@ export interface User {
1345
1345
  * created and stored as an attribute of the user object in the identity store.</p>
1346
1346
  * @public
1347
1347
  */
1348
- UserName?: string;
1348
+ UserName?: string | undefined;
1349
1349
  /**
1350
1350
  * <p>The identifier for a user in the identity store.</p>
1351
1351
  * @public
@@ -1356,71 +1356,71 @@ export interface User {
1356
1356
  * resource by an external identity provider.</p>
1357
1357
  * @public
1358
1358
  */
1359
- ExternalIds?: ExternalId[];
1359
+ ExternalIds?: ExternalId[] | undefined;
1360
1360
  /**
1361
1361
  * <p>An object containing the name of the user.</p>
1362
1362
  * @public
1363
1363
  */
1364
- Name?: Name;
1364
+ Name?: Name | undefined;
1365
1365
  /**
1366
1366
  * <p>A string containing the name of the user that is formatted for display when the user is
1367
1367
  * referenced. For example, "John Doe."</p>
1368
1368
  * @public
1369
1369
  */
1370
- DisplayName?: string;
1370
+ DisplayName?: string | undefined;
1371
1371
  /**
1372
1372
  * <p>A string containing an alternate name for the user.</p>
1373
1373
  * @public
1374
1374
  */
1375
- NickName?: string;
1375
+ NickName?: string | undefined;
1376
1376
  /**
1377
1377
  * <p>A string containing a URL that might be associated with the user.</p>
1378
1378
  * @public
1379
1379
  */
1380
- ProfileUrl?: string;
1380
+ ProfileUrl?: string | undefined;
1381
1381
  /**
1382
1382
  * <p>A list of <code>Email</code> objects containing email addresses associated with the user.</p>
1383
1383
  * @public
1384
1384
  */
1385
- Emails?: Email[];
1385
+ Emails?: Email[] | undefined;
1386
1386
  /**
1387
1387
  * <p>A list of <code>Address</code> objects containing addresses associated with the user.</p>
1388
1388
  * @public
1389
1389
  */
1390
- Addresses?: Address[];
1390
+ Addresses?: Address[] | undefined;
1391
1391
  /**
1392
1392
  * <p>A list of <code>PhoneNumber</code> objects containing phone numbers associated with the user.</p>
1393
1393
  * @public
1394
1394
  */
1395
- PhoneNumbers?: PhoneNumber[];
1395
+ PhoneNumbers?: PhoneNumber[] | undefined;
1396
1396
  /**
1397
1397
  * <p>A string indicating the type of user. Possible values are left unspecified. The value
1398
1398
  * can vary based on your specific use case.</p>
1399
1399
  * @public
1400
1400
  */
1401
- UserType?: string;
1401
+ UserType?: string | undefined;
1402
1402
  /**
1403
1403
  * <p>A string containing the title of the user. Possible values are left unspecified. The
1404
1404
  * value can vary based on your specific use case.</p>
1405
1405
  * @public
1406
1406
  */
1407
- Title?: string;
1407
+ Title?: string | undefined;
1408
1408
  /**
1409
1409
  * <p>A string containing the preferred language of the user. For example, "American English"
1410
1410
  * or "en-us."</p>
1411
1411
  * @public
1412
1412
  */
1413
- PreferredLanguage?: string;
1413
+ PreferredLanguage?: string | undefined;
1414
1414
  /**
1415
1415
  * <p>A string containing the geographical region or location of the user.</p>
1416
1416
  * @public
1417
1417
  */
1418
- Locale?: string;
1418
+ Locale?: string | undefined;
1419
1419
  /**
1420
1420
  * <p>A string containing the time zone of the user.</p>
1421
1421
  * @public
1422
1422
  */
1423
- Timezone?: string;
1423
+ Timezone?: string | undefined;
1424
1424
  /**
1425
1425
  * <p>The globally unique identifier for the identity store.</p>
1426
1426
  * @public
@@ -1443,7 +1443,7 @@ export interface ListUsersResponse {
1443
1443
  * returned when it is used in the API request to search for the next page.</p>
1444
1444
  * @public
1445
1445
  */
1446
- NextToken?: string;
1446
+ NextToken?: string | undefined;
1447
1447
  }
1448
1448
  /**
1449
1449
  * @public
@@ -4,21 +4,21 @@ import { IdentitystoreServiceException as __BaseException } from "./Identitystor
4
4
  export declare class AccessDeniedException extends __BaseException {
5
5
  readonly name: "AccessDeniedException";
6
6
  readonly $fault: "client";
7
- Message?: string;
8
- RequestId?: string;
7
+ Message?: string | undefined;
8
+ RequestId?: string | undefined;
9
9
  constructor(
10
10
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
11
  );
12
12
  }
13
13
  export interface Address {
14
- StreetAddress?: string;
15
- Locality?: string;
16
- Region?: string;
17
- PostalCode?: string;
18
- Country?: string;
19
- Formatted?: string;
20
- Type?: string;
21
- Primary?: boolean;
14
+ StreetAddress?: string | undefined;
15
+ Locality?: string | undefined;
16
+ Region?: string | undefined;
17
+ PostalCode?: string | undefined;
18
+ Country?: string | undefined;
19
+ Formatted?: string | undefined;
20
+ Type?: string | undefined;
21
+ Primary?: boolean | undefined;
22
22
  }
23
23
  export interface ExternalId {
24
24
  Issuer: string | undefined;
@@ -57,7 +57,7 @@ export declare namespace AlternateIdentifier {
57
57
  }
58
58
  export interface AttributeOperation {
59
59
  AttributePath: string | undefined;
60
- AttributeValue?: __DocumentType;
60
+ AttributeValue?: __DocumentType | undefined;
61
61
  }
62
62
  export interface GetGroupIdRequest {
63
63
  IdentityStoreId: string | undefined;
@@ -71,9 +71,9 @@ export declare class InternalServerException extends __BaseException {
71
71
  readonly name: "InternalServerException";
72
72
  readonly $fault: "server";
73
73
  $retryable: {};
74
- Message?: string;
75
- RequestId?: string;
76
- RetryAfterSeconds?: number;
74
+ Message?: string | undefined;
75
+ RequestId?: string | undefined;
76
+ RetryAfterSeconds?: number | undefined;
77
77
  constructor(
78
78
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
79
79
  );
@@ -88,10 +88,10 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
88
88
  export declare class ResourceNotFoundException extends __BaseException {
89
89
  readonly name: "ResourceNotFoundException";
90
90
  readonly $fault: "client";
91
- ResourceType?: ResourceType;
92
- ResourceId?: string;
93
- Message?: string;
94
- RequestId?: string;
91
+ ResourceType?: ResourceType | undefined;
92
+ ResourceId?: string | undefined;
93
+ Message?: string | undefined;
94
+ RequestId?: string | undefined;
95
95
  constructor(
96
96
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
97
97
  );
@@ -102,9 +102,9 @@ export declare class ThrottlingException extends __BaseException {
102
102
  $retryable: {
103
103
  throttling: boolean;
104
104
  };
105
- Message?: string;
106
- RequestId?: string;
107
- RetryAfterSeconds?: number;
105
+ Message?: string | undefined;
106
+ RequestId?: string | undefined;
107
+ RetryAfterSeconds?: number | undefined;
108
108
  constructor(
109
109
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
110
110
  );
@@ -112,8 +112,8 @@ export declare class ThrottlingException extends __BaseException {
112
112
  export declare class ValidationException extends __BaseException {
113
113
  readonly name: "ValidationException";
114
114
  readonly $fault: "client";
115
- Message?: string;
116
- RequestId?: string;
115
+ Message?: string | undefined;
116
+ RequestId?: string | undefined;
117
117
  constructor(
118
118
  opts: __ExceptionOptionType<ValidationException, __BaseException>
119
119
  );
@@ -160,9 +160,9 @@ export type ConflictExceptionReason =
160
160
  export declare class ConflictException extends __BaseException {
161
161
  readonly name: "ConflictException";
162
162
  readonly $fault: "client";
163
- Message?: string;
164
- RequestId?: string;
165
- Reason?: ConflictExceptionReason;
163
+ Message?: string | undefined;
164
+ RequestId?: string | undefined;
165
+ Reason?: ConflictExceptionReason | undefined;
166
166
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
167
167
  }
168
168
  export interface CreateGroupMembershipRequest {
@@ -177,8 +177,8 @@ export interface CreateGroupMembershipResponse {
177
177
  export declare class ServiceQuotaExceededException extends __BaseException {
178
178
  readonly name: "ServiceQuotaExceededException";
179
179
  readonly $fault: "client";
180
- Message?: string;
181
- RequestId?: string;
180
+ Message?: string | undefined;
181
+ RequestId?: string | undefined;
182
182
  constructor(
183
183
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
184
184
  );
@@ -201,23 +201,23 @@ export interface DescribeGroupMembershipResponse {
201
201
  export interface ListGroupMembershipsRequest {
202
202
  IdentityStoreId: string | undefined;
203
203
  GroupId: string | undefined;
204
- MaxResults?: number;
205
- NextToken?: string;
204
+ MaxResults?: number | undefined;
205
+ NextToken?: string | undefined;
206
206
  }
207
207
  export interface GroupMembership {
208
208
  IdentityStoreId: string | undefined;
209
- MembershipId?: string;
210
- GroupId?: string;
211
- MemberId?: MemberId;
209
+ MembershipId?: string | undefined;
210
+ GroupId?: string | undefined;
211
+ MemberId?: MemberId | undefined;
212
212
  }
213
213
  export interface ListGroupMembershipsResponse {
214
214
  GroupMemberships: GroupMembership[] | undefined;
215
- NextToken?: string;
215
+ NextToken?: string | undefined;
216
216
  }
217
217
  export interface CreateGroupRequest {
218
218
  IdentityStoreId: string | undefined;
219
- DisplayName?: string;
220
- Description?: string;
219
+ DisplayName?: string | undefined;
220
+ Description?: string | undefined;
221
221
  }
222
222
  export interface CreateGroupResponse {
223
223
  GroupId: string | undefined;
@@ -234,9 +234,9 @@ export interface DescribeGroupRequest {
234
234
  }
235
235
  export interface DescribeGroupResponse {
236
236
  GroupId: string | undefined;
237
- DisplayName?: string;
238
- ExternalIds?: ExternalId[];
239
- Description?: string;
237
+ DisplayName?: string | undefined;
238
+ ExternalIds?: ExternalId[] | undefined;
239
+ Description?: string | undefined;
240
240
  IdentityStoreId: string | undefined;
241
241
  }
242
242
  export interface Filter {
@@ -245,20 +245,20 @@ export interface Filter {
245
245
  }
246
246
  export interface ListGroupsRequest {
247
247
  IdentityStoreId: string | undefined;
248
- MaxResults?: number;
249
- NextToken?: string;
250
- Filters?: Filter[];
248
+ MaxResults?: number | undefined;
249
+ NextToken?: string | undefined;
250
+ Filters?: Filter[] | undefined;
251
251
  }
252
252
  export interface Group {
253
253
  GroupId: string | undefined;
254
- DisplayName?: string;
255
- ExternalIds?: ExternalId[];
256
- Description?: string;
254
+ DisplayName?: string | undefined;
255
+ ExternalIds?: ExternalId[] | undefined;
256
+ Description?: string | undefined;
257
257
  IdentityStoreId: string | undefined;
258
258
  }
259
259
  export interface ListGroupsResponse {
260
260
  Groups: Group[] | undefined;
261
- NextToken?: string;
261
+ NextToken?: string | undefined;
262
262
  }
263
263
  export interface UpdateGroupRequest {
264
264
  IdentityStoreId: string | undefined;
@@ -272,9 +272,9 @@ export interface IsMemberInGroupsRequest {
272
272
  GroupIds: string[] | undefined;
273
273
  }
274
274
  export interface GroupMembershipExistenceResult {
275
- GroupId?: string;
276
- MemberId?: MemberId;
277
- MembershipExists?: boolean;
275
+ GroupId?: string | undefined;
276
+ MemberId?: MemberId | undefined;
277
+ MembershipExists?: boolean | undefined;
278
278
  }
279
279
  export interface IsMemberInGroupsResponse {
280
280
  Results: GroupMembershipExistenceResult[] | undefined;
@@ -282,46 +282,46 @@ export interface IsMemberInGroupsResponse {
282
282
  export interface ListGroupMembershipsForMemberRequest {
283
283
  IdentityStoreId: string | undefined;
284
284
  MemberId: MemberId | undefined;
285
- MaxResults?: number;
286
- NextToken?: string;
285
+ MaxResults?: number | undefined;
286
+ NextToken?: string | undefined;
287
287
  }
288
288
  export interface ListGroupMembershipsForMemberResponse {
289
289
  GroupMemberships: GroupMembership[] | undefined;
290
- NextToken?: string;
290
+ NextToken?: string | undefined;
291
291
  }
292
292
  export interface Email {
293
- Value?: string;
294
- Type?: string;
295
- Primary?: boolean;
293
+ Value?: string | undefined;
294
+ Type?: string | undefined;
295
+ Primary?: boolean | undefined;
296
296
  }
297
297
  export interface Name {
298
- Formatted?: string;
299
- FamilyName?: string;
300
- GivenName?: string;
301
- MiddleName?: string;
302
- HonorificPrefix?: string;
303
- HonorificSuffix?: string;
298
+ Formatted?: string | undefined;
299
+ FamilyName?: string | undefined;
300
+ GivenName?: string | undefined;
301
+ MiddleName?: string | undefined;
302
+ HonorificPrefix?: string | undefined;
303
+ HonorificSuffix?: string | undefined;
304
304
  }
305
305
  export interface PhoneNumber {
306
- Value?: string;
307
- Type?: string;
308
- Primary?: boolean;
306
+ Value?: string | undefined;
307
+ Type?: string | undefined;
308
+ Primary?: boolean | undefined;
309
309
  }
310
310
  export interface CreateUserRequest {
311
311
  IdentityStoreId: string | undefined;
312
- UserName?: string;
313
- Name?: Name;
314
- DisplayName?: string;
315
- NickName?: string;
316
- ProfileUrl?: string;
317
- Emails?: Email[];
318
- Addresses?: Address[];
319
- PhoneNumbers?: PhoneNumber[];
320
- UserType?: string;
321
- Title?: string;
322
- PreferredLanguage?: string;
323
- Locale?: string;
324
- Timezone?: string;
312
+ UserName?: string | undefined;
313
+ Name?: Name | undefined;
314
+ DisplayName?: string | undefined;
315
+ NickName?: string | undefined;
316
+ ProfileUrl?: string | undefined;
317
+ Emails?: Email[] | undefined;
318
+ Addresses?: Address[] | undefined;
319
+ PhoneNumbers?: PhoneNumber[] | undefined;
320
+ UserType?: string | undefined;
321
+ Title?: string | undefined;
322
+ PreferredLanguage?: string | undefined;
323
+ Locale?: string | undefined;
324
+ Timezone?: string | undefined;
325
325
  }
326
326
  export interface CreateUserResponse {
327
327
  UserId: string | undefined;
@@ -337,50 +337,50 @@ export interface DescribeUserRequest {
337
337
  UserId: string | undefined;
338
338
  }
339
339
  export interface DescribeUserResponse {
340
- UserName?: string;
340
+ UserName?: string | undefined;
341
341
  UserId: string | undefined;
342
- ExternalIds?: ExternalId[];
343
- Name?: Name;
344
- DisplayName?: string;
345
- NickName?: string;
346
- ProfileUrl?: string;
347
- Emails?: Email[];
348
- Addresses?: Address[];
349
- PhoneNumbers?: PhoneNumber[];
350
- UserType?: string;
351
- Title?: string;
352
- PreferredLanguage?: string;
353
- Locale?: string;
354
- Timezone?: string;
342
+ ExternalIds?: ExternalId[] | undefined;
343
+ Name?: Name | undefined;
344
+ DisplayName?: string | undefined;
345
+ NickName?: string | undefined;
346
+ ProfileUrl?: string | undefined;
347
+ Emails?: Email[] | undefined;
348
+ Addresses?: Address[] | undefined;
349
+ PhoneNumbers?: PhoneNumber[] | undefined;
350
+ UserType?: string | undefined;
351
+ Title?: string | undefined;
352
+ PreferredLanguage?: string | undefined;
353
+ Locale?: string | undefined;
354
+ Timezone?: string | undefined;
355
355
  IdentityStoreId: string | undefined;
356
356
  }
357
357
  export interface ListUsersRequest {
358
358
  IdentityStoreId: string | undefined;
359
- MaxResults?: number;
360
- NextToken?: string;
361
- Filters?: Filter[];
359
+ MaxResults?: number | undefined;
360
+ NextToken?: string | undefined;
361
+ Filters?: Filter[] | undefined;
362
362
  }
363
363
  export interface User {
364
- UserName?: string;
364
+ UserName?: string | undefined;
365
365
  UserId: string | undefined;
366
- ExternalIds?: ExternalId[];
367
- Name?: Name;
368
- DisplayName?: string;
369
- NickName?: string;
370
- ProfileUrl?: string;
371
- Emails?: Email[];
372
- Addresses?: Address[];
373
- PhoneNumbers?: PhoneNumber[];
374
- UserType?: string;
375
- Title?: string;
376
- PreferredLanguage?: string;
377
- Locale?: string;
378
- Timezone?: string;
366
+ ExternalIds?: ExternalId[] | undefined;
367
+ Name?: Name | undefined;
368
+ DisplayName?: string | undefined;
369
+ NickName?: string | undefined;
370
+ ProfileUrl?: string | undefined;
371
+ Emails?: Email[] | undefined;
372
+ Addresses?: Address[] | undefined;
373
+ PhoneNumbers?: PhoneNumber[] | undefined;
374
+ UserType?: string | undefined;
375
+ Title?: string | undefined;
376
+ PreferredLanguage?: string | undefined;
377
+ Locale?: string | undefined;
378
+ Timezone?: string | undefined;
379
379
  IdentityStoreId: string | undefined;
380
380
  }
381
381
  export interface ListUsersResponse {
382
382
  Users: User[] | undefined;
383
- NextToken?: string;
383
+ NextToken?: string | undefined;
384
384
  }
385
385
  export interface UpdateUserRequest {
386
386
  IdentityStoreId: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-identitystore",
3
3
  "description": "AWS SDK for JavaScript Identitystore 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-identitystore",
@@ -20,43 +20,43 @@
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
61
  "tslib": "^2.6.2"
62
62
  },