@aws-sdk/client-connect 3.443.0 → 3.445.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 (51) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/Connect.js +2 -0
  3. package/dist-cjs/commands/BatchPutContactCommand.js +51 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +19 -2
  6. package/dist-cjs/protocols/Aws_restJson1.js +83 -9
  7. package/dist-es/Connect.js +2 -0
  8. package/dist-es/commands/BatchPutContactCommand.js +47 -0
  9. package/dist-es/commands/index.js +1 -0
  10. package/dist-es/models/models_0.js +17 -0
  11. package/dist-es/protocols/Aws_restJson1.js +72 -0
  12. package/dist-types/Connect.d.ts +7 -0
  13. package/dist-types/ConnectClient.d.ts +3 -2
  14. package/dist-types/commands/BatchPutContactCommand.d.ts +133 -0
  15. package/dist-types/commands/DescribeTrafficDistributionGroupCommand.d.ts +2 -1
  16. package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeUserHierarchyGroupCommand.d.ts +1 -2
  18. package/dist-types/commands/StopContactCommand.d.ts +3 -0
  19. package/dist-types/commands/UpdateContactFlowModuleMetadataCommand.d.ts +1 -1
  20. package/dist-types/commands/UpdateContactFlowNameCommand.d.ts +1 -1
  21. package/dist-types/commands/UpdateContactScheduleCommand.d.ts +1 -1
  22. package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +1 -2
  23. package/dist-types/commands/UpdateHoursOfOperationCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -1
  26. package/dist-types/commands/index.d.ts +1 -0
  27. package/dist-types/index.d.ts +2 -0
  28. package/dist-types/models/models_0.d.ts +191 -329
  29. package/dist-types/models/models_1.d.ts +332 -195
  30. package/dist-types/models/models_2.d.ts +195 -1
  31. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  32. package/dist-types/ts3.4/Connect.d.ts +17 -0
  33. package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
  34. package/dist-types/ts3.4/commands/BatchPutContactCommand.d.ts +38 -0
  35. package/dist-types/ts3.4/commands/DescribeTrafficDistributionGroupCommand.d.ts +2 -4
  36. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/DescribeUserHierarchyGroupCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/UpdateContactFlowModuleMetadataCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/UpdateContactFlowNameCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/UpdateContactScheduleCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/UpdateEvaluationFormCommand.d.ts +4 -2
  42. package/dist-types/ts3.4/commands/UpdateHoursOfOperationCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/UpdateInstanceStorageConfigCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  46. package/dist-types/ts3.4/index.d.ts +2 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +61 -70
  48. package/dist-types/ts3.4/models/models_1.d.ts +67 -49
  49. package/dist-types/ts3.4/models/models_2.d.ts +50 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  51. package/package.json +4 -4
@@ -1089,6 +1089,194 @@ export interface BatchGetFlowAssociationResponse {
1089
1089
  */
1090
1090
  FlowAssociationSummaryList?: FlowAssociationSummary[];
1091
1091
  }
1092
+ /**
1093
+ * @public
1094
+ * <p>Information associated with a campaign.</p>
1095
+ */
1096
+ export interface Campaign {
1097
+ /**
1098
+ * @public
1099
+ * <p>A unique identifier for a campaign.</p>
1100
+ */
1101
+ CampaignId?: string;
1102
+ }
1103
+ /**
1104
+ * @public
1105
+ * @enum
1106
+ */
1107
+ export declare const EndpointType: {
1108
+ readonly CONTACT_FLOW: "CONTACT_FLOW";
1109
+ readonly TELEPHONE_NUMBER: "TELEPHONE_NUMBER";
1110
+ readonly VOIP: "VOIP";
1111
+ };
1112
+ /**
1113
+ * @public
1114
+ */
1115
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
1116
+ /**
1117
+ * @public
1118
+ * <p>Information about the endpoint.</p>
1119
+ */
1120
+ export interface Endpoint {
1121
+ /**
1122
+ * @public
1123
+ * <p>Type of the endpoint.</p>
1124
+ */
1125
+ Type?: EndpointType;
1126
+ /**
1127
+ * @public
1128
+ * <p>Address of the endpoint.</p>
1129
+ */
1130
+ Address?: string;
1131
+ }
1132
+ /**
1133
+ * @public
1134
+ * <p>Request object with information to create a contact.</p>
1135
+ */
1136
+ export interface ContactDataRequest {
1137
+ /**
1138
+ * @public
1139
+ * <p>Endpoint associated with the Amazon Connect instance from which outbound contact will be
1140
+ * initiated for the campaign.</p>
1141
+ */
1142
+ SystemEndpoint?: Endpoint;
1143
+ /**
1144
+ * @public
1145
+ * <p>Endpoint of the customer for which contact will be initiated.</p>
1146
+ */
1147
+ CustomerEndpoint?: Endpoint;
1148
+ /**
1149
+ * @public
1150
+ * <p>Identifier to uniquely identify individual requests in the batch.</p>
1151
+ */
1152
+ RequestIdentifier?: string;
1153
+ /**
1154
+ * @public
1155
+ * <p>The identifier of the queue associated with the Amazon Connect instance in which
1156
+ * contacts that are created will be queued.</p>
1157
+ */
1158
+ QueueId?: string;
1159
+ /**
1160
+ * @public
1161
+ * <p>List of attributes to be stored in a contact.</p>
1162
+ */
1163
+ Attributes?: Record<string, string>;
1164
+ /**
1165
+ * @public
1166
+ * <p>Structure to store information associated with a campaign.</p>
1167
+ */
1168
+ Campaign?: Campaign;
1169
+ }
1170
+ /**
1171
+ * @public
1172
+ */
1173
+ export interface BatchPutContactRequest {
1174
+ /**
1175
+ * @public
1176
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
1177
+ * request. If not provided, the Amazon Web Services
1178
+ * SDK populates this field. For more information about idempotency, see
1179
+ * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
1180
+ */
1181
+ ClientToken?: string;
1182
+ /**
1183
+ * @public
1184
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
1185
+ */
1186
+ InstanceId: string | undefined;
1187
+ /**
1188
+ * @public
1189
+ * <p>List of individual contact requests.</p>
1190
+ */
1191
+ ContactDataRequestList: ContactDataRequest[] | undefined;
1192
+ }
1193
+ /**
1194
+ * @public
1195
+ * @enum
1196
+ */
1197
+ export declare const FailureReasonCode: {
1198
+ readonly IDEMPOTENCY_EXCEPTION: "IDEMPOTENCY_EXCEPTION";
1199
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
1200
+ readonly INVALID_ATTRIBUTE_KEY: "INVALID_ATTRIBUTE_KEY";
1201
+ readonly INVALID_CUSTOMER_ENDPOINT: "INVALID_CUSTOMER_ENDPOINT";
1202
+ readonly INVALID_QUEUE: "INVALID_QUEUE";
1203
+ readonly INVALID_SYSTEM_ENDPOINT: "INVALID_SYSTEM_ENDPOINT";
1204
+ readonly MISSING_CAMPAIGN: "MISSING_CAMPAIGN";
1205
+ readonly MISSING_CUSTOMER_ENDPOINT: "MISSING_CUSTOMER_ENDPOINT";
1206
+ readonly MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT: "MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT";
1207
+ readonly REQUEST_THROTTLED: "REQUEST_THROTTLED";
1208
+ };
1209
+ /**
1210
+ * @public
1211
+ */
1212
+ export type FailureReasonCode = (typeof FailureReasonCode)[keyof typeof FailureReasonCode];
1213
+ /**
1214
+ * @public
1215
+ * <p>Request for which contact failed to be generated.</p>
1216
+ */
1217
+ export interface FailedRequest {
1218
+ /**
1219
+ * @public
1220
+ * <p>Request identifier provided in the API call in the ContactDataRequest to create a
1221
+ * contact.</p>
1222
+ */
1223
+ RequestIdentifier?: string;
1224
+ /**
1225
+ * @public
1226
+ * <p>Reason code for the failure.</p>
1227
+ */
1228
+ FailureReasonCode?: FailureReasonCode;
1229
+ /**
1230
+ * @public
1231
+ * <p>Why the request to create a contact failed.</p>
1232
+ */
1233
+ FailureReasonMessage?: string;
1234
+ }
1235
+ /**
1236
+ * @public
1237
+ * <p>Request for which contact was successfully created.</p>
1238
+ */
1239
+ export interface SuccessfulRequest {
1240
+ /**
1241
+ * @public
1242
+ * <p>Request identifier provided in the API call in the ContactDataRequest to create a
1243
+ * contact.</p>
1244
+ */
1245
+ RequestIdentifier?: string;
1246
+ /**
1247
+ * @public
1248
+ * <p>The contactId of the contact that was created successfully.</p>
1249
+ */
1250
+ ContactId?: string;
1251
+ }
1252
+ /**
1253
+ * @public
1254
+ */
1255
+ export interface BatchPutContactResponse {
1256
+ /**
1257
+ * @public
1258
+ * <p>List of requests for which contact was successfully created.</p>
1259
+ */
1260
+ SuccessfulRequestList?: SuccessfulRequest[];
1261
+ /**
1262
+ * @public
1263
+ * <p>List of requests for which contact creation failed.</p>
1264
+ */
1265
+ FailedRequestList?: FailedRequest[];
1266
+ }
1267
+ /**
1268
+ * @public
1269
+ * <p>An entity with the same name already exists.</p>
1270
+ */
1271
+ export declare class IdempotencyException extends __BaseException {
1272
+ readonly name: "IdempotencyException";
1273
+ readonly $fault: "client";
1274
+ Message?: string;
1275
+ /**
1276
+ * @internal
1277
+ */
1278
+ constructor(opts: __ExceptionOptionType<IdempotencyException, __BaseException>);
1279
+ }
1092
1280
  /**
1093
1281
  * @public
1094
1282
  */
@@ -1147,19 +1335,6 @@ export interface ClaimPhoneNumberResponse {
1147
1335
  */
1148
1336
  PhoneNumberArn?: string;
1149
1337
  }
1150
- /**
1151
- * @public
1152
- * <p>An entity with the same name already exists.</p>
1153
- */
1154
- export declare class IdempotencyException extends __BaseException {
1155
- readonly name: "IdempotencyException";
1156
- readonly $fault: "client";
1157
- Message?: string;
1158
- /**
1159
- * @internal
1160
- */
1161
- constructor(opts: __ExceptionOptionType<IdempotencyException, __BaseException>);
1162
- }
1163
1338
  /**
1164
1339
  * @public
1165
1340
  */
@@ -2199,7 +2374,7 @@ export interface CreatePersistentContactAssociationRequest {
2199
2374
  /**
2200
2375
  * @public
2201
2376
  * <p>This is the contactId of the current contact that the
2202
- * <code>CreatePersistentContactAssociation</code> API is being called from.</p>
2377
+ * <code>CreatePersistentContactAssociation</code> API is being called from.</p>
2203
2378
  */
2204
2379
  InitialContactId: string | undefined;
2205
2380
  /**
@@ -2210,14 +2385,14 @@ export interface CreatePersistentContactAssociationRequest {
2210
2385
  * <p>
2211
2386
  * <code>ENTIRE_PAST_SESSION</code>: Rehydrates a chat from the most recently terminated past chat
2212
2387
  * contact of the specified past ended chat session. To use this type, provide the
2213
- * <code>initialContactId</code> of the past ended chat session in the <code>sourceContactId</code> field. In
2388
+ * <code>initialContactId</code> of the past ended chat session in the <code>sourceContactId</code> field. In
2214
2389
  * this type, Amazon Connect determines what the most recent chat contact on the past ended
2215
2390
  * chat session and uses it to start a persistent chat. </p>
2216
2391
  * </li>
2217
2392
  * <li>
2218
2393
  * <p>
2219
2394
  * <code>FROM_SEGMENT</code>: Rehydrates a chat from the specified past chat contact provided in the
2220
- * <code>sourceContactId</code> field. </p>
2395
+ * <code>sourceContactId</code> field. </p>
2221
2396
  * </li>
2222
2397
  * </ul>
2223
2398
  * <p>The actual contactId used for rehydration is provided in the response of this API.</p>
@@ -6311,319 +6486,6 @@ export declare const TrafficDistributionGroupStatus: {
6311
6486
  * @public
6312
6487
  */
6313
6488
  export type TrafficDistributionGroupStatus = (typeof TrafficDistributionGroupStatus)[keyof typeof TrafficDistributionGroupStatus];
6314
- /**
6315
- * @public
6316
- * <p>Information about a traffic distribution group.</p>
6317
- */
6318
- export interface TrafficDistributionGroup {
6319
- /**
6320
- * @public
6321
- * <p>The identifier of the traffic distribution group.
6322
- * This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created.
6323
- * The ARN must be provided if the call is from the replicated Region.</p>
6324
- */
6325
- Id?: string;
6326
- /**
6327
- * @public
6328
- * <p>The Amazon Resource Name (ARN) of the traffic distribution group.</p>
6329
- */
6330
- Arn?: string;
6331
- /**
6332
- * @public
6333
- * <p>The name of the traffic distribution group.</p>
6334
- */
6335
- Name?: string;
6336
- /**
6337
- * @public
6338
- * <p>The description of the traffic distribution group.</p>
6339
- */
6340
- Description?: string;
6341
- /**
6342
- * @public
6343
- * <p>The Amazon Resource Name (ARN).</p>
6344
- */
6345
- InstanceArn?: string;
6346
- /**
6347
- * @public
6348
- * <p>The status of the traffic distribution group.</p>
6349
- * <ul>
6350
- * <li>
6351
- * <p>
6352
- * <code>CREATION_IN_PROGRESS</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html">CreateTrafficDistributionGroup</a> operation is still in progress and has not yet
6353
- * completed.</p>
6354
- * </li>
6355
- * <li>
6356
- * <p>
6357
- * <code>ACTIVE</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html">CreateTrafficDistributionGroup</a> operation has succeeded.</p>
6358
- * </li>
6359
- * <li>
6360
- * <p>
6361
- * <code>CREATION_FAILED</code> indicates that the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateTrafficDistributionGroup.html">CreateTrafficDistributionGroup</a> operation has failed.</p>
6362
- * </li>
6363
- * <li>
6364
- * <p>
6365
- * <code>PENDING_DELETION</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html">DeleteTrafficDistributionGroup</a> operation is still in progress and has not yet
6366
- * completed.</p>
6367
- * </li>
6368
- * <li>
6369
- * <p>
6370
- * <code>DELETION_FAILED</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html">DeleteTrafficDistributionGroup</a> operation has failed.</p>
6371
- * </li>
6372
- * <li>
6373
- * <p>
6374
- * <code>UPDATE_IN_PROGRESS</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateTrafficDistribution.html">UpdateTrafficDistribution</a> operation is still in progress and has not yet
6375
- * completed.</p>
6376
- * </li>
6377
- * </ul>
6378
- */
6379
- Status?: TrafficDistributionGroupStatus;
6380
- /**
6381
- * @public
6382
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6383
- */
6384
- Tags?: Record<string, string>;
6385
- /**
6386
- * @public
6387
- * <p>Whether this is the default traffic distribution group created during instance
6388
- * replication. The default traffic distribution group cannot be deleted by the
6389
- * <code>DeleteTrafficDistributionGroup</code> API. The default traffic distribution group is deleted as
6390
- * part of the process for deleting a replica.</p>
6391
- * <note>
6392
- * <p>The <code>SignInConfig</code> distribution is available only on a
6393
- * default <code>TrafficDistributionGroup</code> (see the <code>IsDefault</code> parameter in the
6394
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_TrafficDistributionGroup.html">TrafficDistributionGroup</a>
6395
- * data type). If you call
6396
- * <code>UpdateTrafficDistribution</code> with a modified <code>SignInConfig</code> and a non-default <code>TrafficDistributionGroup</code>,
6397
- * an <code>InvalidRequestException</code> is returned.</p>
6398
- * </note>
6399
- */
6400
- IsDefault?: boolean;
6401
- }
6402
- /**
6403
- * @public
6404
- */
6405
- export interface DescribeTrafficDistributionGroupResponse {
6406
- /**
6407
- * @public
6408
- * <p>Information about the traffic distribution group.</p>
6409
- */
6410
- TrafficDistributionGroup?: TrafficDistributionGroup;
6411
- }
6412
- /**
6413
- * @public
6414
- */
6415
- export interface DescribeUserRequest {
6416
- /**
6417
- * @public
6418
- * <p>The identifier of the user account.</p>
6419
- */
6420
- UserId: string | undefined;
6421
- /**
6422
- * @public
6423
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
6424
- */
6425
- InstanceId: string | undefined;
6426
- }
6427
- /**
6428
- * @public
6429
- * <p>Contains information about a user account for an Amazon Connect instance.</p>
6430
- */
6431
- export interface User {
6432
- /**
6433
- * @public
6434
- * <p>The identifier of the user account.</p>
6435
- */
6436
- Id?: string;
6437
- /**
6438
- * @public
6439
- * <p>The Amazon Resource Name (ARN) of the user account.</p>
6440
- */
6441
- Arn?: string;
6442
- /**
6443
- * @public
6444
- * <p>The user name assigned to the user account.</p>
6445
- */
6446
- Username?: string;
6447
- /**
6448
- * @public
6449
- * <p>Information about the user identity.</p>
6450
- */
6451
- IdentityInfo?: UserIdentityInfo;
6452
- /**
6453
- * @public
6454
- * <p>Information about the phone configuration for the user.</p>
6455
- */
6456
- PhoneConfig?: UserPhoneConfig;
6457
- /**
6458
- * @public
6459
- * <p>The identifier of the user account in the directory used for identity management.</p>
6460
- */
6461
- DirectoryUserId?: string;
6462
- /**
6463
- * @public
6464
- * <p>The identifiers of the security profiles for the user.</p>
6465
- */
6466
- SecurityProfileIds?: string[];
6467
- /**
6468
- * @public
6469
- * <p>The identifier of the routing profile for the user.</p>
6470
- */
6471
- RoutingProfileId?: string;
6472
- /**
6473
- * @public
6474
- * <p>The identifier of the hierarchy group for the user.</p>
6475
- */
6476
- HierarchyGroupId?: string;
6477
- /**
6478
- * @public
6479
- * <p>The
6480
- * tags.</p>
6481
- */
6482
- Tags?: Record<string, string>;
6483
- /**
6484
- * @public
6485
- * <p>The timestamp when this resource was last modified.</p>
6486
- */
6487
- LastModifiedTime?: Date;
6488
- /**
6489
- * @public
6490
- * <p>The Amazon Web Services Region where this resource was last modified.</p>
6491
- */
6492
- LastModifiedRegion?: string;
6493
- }
6494
- /**
6495
- * @public
6496
- */
6497
- export interface DescribeUserResponse {
6498
- /**
6499
- * @public
6500
- * <p>Information about the user account and configuration settings.</p>
6501
- */
6502
- User?: User;
6503
- }
6504
- /**
6505
- * @public
6506
- */
6507
- export interface DescribeUserHierarchyGroupRequest {
6508
- /**
6509
- * @public
6510
- * <p>The identifier of the hierarchy group.</p>
6511
- */
6512
- HierarchyGroupId: string | undefined;
6513
- /**
6514
- * @public
6515
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
6516
- */
6517
- InstanceId: string | undefined;
6518
- }
6519
- /**
6520
- * @public
6521
- * <p>Contains summary information about a hierarchy group.</p>
6522
- */
6523
- export interface HierarchyGroupSummary {
6524
- /**
6525
- * @public
6526
- * <p>The identifier of the hierarchy group.</p>
6527
- */
6528
- Id?: string;
6529
- /**
6530
- * @public
6531
- * <p>The Amazon Resource Name (ARN) of the hierarchy group.</p>
6532
- */
6533
- Arn?: string;
6534
- /**
6535
- * @public
6536
- * <p>The name of the hierarchy group.</p>
6537
- */
6538
- Name?: string;
6539
- /**
6540
- * @public
6541
- * <p>The timestamp when this resource was last modified.</p>
6542
- */
6543
- LastModifiedTime?: Date;
6544
- /**
6545
- * @public
6546
- * <p>The Amazon Web Services Region where this resource was last modified.</p>
6547
- */
6548
- LastModifiedRegion?: string;
6549
- }
6550
- /**
6551
- * @public
6552
- * <p>Contains information about the levels of a hierarchy group.</p>
6553
- */
6554
- export interface HierarchyPath {
6555
- /**
6556
- * @public
6557
- * <p>Information about level one.</p>
6558
- */
6559
- LevelOne?: HierarchyGroupSummary;
6560
- /**
6561
- * @public
6562
- * <p>Information about level two.</p>
6563
- */
6564
- LevelTwo?: HierarchyGroupSummary;
6565
- /**
6566
- * @public
6567
- * <p>Information about level three.</p>
6568
- */
6569
- LevelThree?: HierarchyGroupSummary;
6570
- /**
6571
- * @public
6572
- * <p>Information about level four.</p>
6573
- */
6574
- LevelFour?: HierarchyGroupSummary;
6575
- /**
6576
- * @public
6577
- * <p>Information about level five.</p>
6578
- */
6579
- LevelFive?: HierarchyGroupSummary;
6580
- }
6581
- /**
6582
- * @public
6583
- * <p>Contains information about a hierarchy group.</p>
6584
- */
6585
- export interface HierarchyGroup {
6586
- /**
6587
- * @public
6588
- * <p>The identifier of the hierarchy group.</p>
6589
- */
6590
- Id?: string;
6591
- /**
6592
- * @public
6593
- * <p>The Amazon Resource Name (ARN) of the hierarchy group.</p>
6594
- */
6595
- Arn?: string;
6596
- /**
6597
- * @public
6598
- * <p>The name of the hierarchy group.</p>
6599
- */
6600
- Name?: string;
6601
- /**
6602
- * @public
6603
- * <p>The identifier of the level in the hierarchy group.</p>
6604
- */
6605
- LevelId?: string;
6606
- /**
6607
- * @public
6608
- * <p>Information about the levels in the hierarchy group.</p>
6609
- */
6610
- HierarchyPath?: HierarchyPath;
6611
- /**
6612
- * @public
6613
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6614
- */
6615
- Tags?: Record<string, string>;
6616
- /**
6617
- * @public
6618
- * <p>The timestamp when this resource was last modified.</p>
6619
- */
6620
- LastModifiedTime?: Date;
6621
- /**
6622
- * @public
6623
- * <p>The Amazon Web Services Region where this resource was last modified.</p>
6624
- */
6625
- LastModifiedRegion?: string;
6626
- }
6627
6489
  /**
6628
6490
  * @internal
6629
6491
  */