@aws-sdk/client-connect 3.470.0 → 3.474.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 (31) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/Connect.js +4 -0
  3. package/dist-cjs/commands/TagContactCommand.js +51 -0
  4. package/dist-cjs/commands/UntagContactCommand.js +51 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/protocols/Aws_restJson1.js +140 -7
  7. package/dist-es/Connect.js +4 -0
  8. package/dist-es/commands/TagContactCommand.js +47 -0
  9. package/dist-es/commands/UntagContactCommand.js +47 -0
  10. package/dist-es/commands/index.js +2 -0
  11. package/dist-es/protocols/Aws_restJson1.js +129 -0
  12. package/dist-types/Connect.d.ts +14 -0
  13. package/dist-types/ConnectClient.d.ts +4 -2
  14. package/dist-types/commands/BatchAssociateAnalyticsDataSetCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeContactCommand.d.ts +3 -0
  16. package/dist-types/commands/TagContactCommand.d.ts +92 -0
  17. package/dist-types/commands/UntagContactCommand.d.ts +91 -0
  18. package/dist-types/commands/index.d.ts +2 -0
  19. package/dist-types/models/models_0.d.ts +34 -28
  20. package/dist-types/models/models_1.d.ts +15 -15
  21. package/dist-types/models/models_2.d.ts +62 -7
  22. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  23. package/dist-types/ts3.4/Connect.d.ts +34 -0
  24. package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
  25. package/dist-types/ts3.4/commands/TagContactCommand.d.ts +35 -0
  26. package/dist-types/ts3.4/commands/UntagContactCommand.d.ts +35 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  29. package/dist-types/ts3.4/models/models_2.d.ts +12 -0
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  31. package/package.json +4 -4
@@ -387,7 +387,7 @@ export interface AgentStatus {
387
387
  State?: AgentStatusState;
388
388
  /**
389
389
  * @public
390
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
390
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
391
391
  */
392
392
  Tags?: Record<string, string>;
393
393
  /**
@@ -1233,8 +1233,8 @@ export interface BatchAssociateAnalyticsDataSetResponse {
1233
1233
  Created?: AnalyticsDataAssociationResult[];
1234
1234
  /**
1235
1235
  * @public
1236
- * <p>A list of errors for datasets that aren't successfully associated
1237
- * with the target account.</p>
1236
+ * <p>A list of errors for datasets that aren't successfully associated with the target
1237
+ * account.</p>
1238
1238
  */
1239
1239
  Errors?: ErrorResult[];
1240
1240
  }
@@ -1553,7 +1553,7 @@ export interface ClaimPhoneNumberRequest {
1553
1553
  PhoneNumberDescription?: string;
1554
1554
  /**
1555
1555
  * @public
1556
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1556
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1557
1557
  */
1558
1558
  Tags?: Record<string, string>;
1559
1559
  /**
@@ -1613,7 +1613,7 @@ export interface CreateAgentStatusRequest {
1613
1613
  DisplayOrder?: number;
1614
1614
  /**
1615
1615
  * @public
1616
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1616
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1617
1617
  */
1618
1618
  Tags?: Record<string, string>;
1619
1619
  }
@@ -1698,7 +1698,7 @@ export interface CreateContactFlowRequest {
1698
1698
  Content: string | undefined;
1699
1699
  /**
1700
1700
  * @public
1701
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1701
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1702
1702
  */
1703
1703
  Tags?: Record<string, string>;
1704
1704
  }
@@ -1772,7 +1772,7 @@ export interface CreateContactFlowModuleRequest {
1772
1772
  Content: string | undefined;
1773
1773
  /**
1774
1774
  * @public
1775
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1775
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1776
1776
  */
1777
1777
  Tags?: Record<string, string>;
1778
1778
  /**
@@ -2329,7 +2329,7 @@ export interface CreateHoursOfOperationRequest {
2329
2329
  Config: HoursOfOperationConfig[] | undefined;
2330
2330
  /**
2331
2331
  * @public
2332
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2332
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2333
2333
  */
2334
2334
  Tags?: Record<string, string>;
2335
2335
  }
@@ -2397,7 +2397,8 @@ export interface CreateInstanceRequest {
2397
2397
  OutboundCallsEnabled: boolean | undefined;
2398
2398
  /**
2399
2399
  * @public
2400
- * <p>The tags used to organize, track, or control access for this resource. For example, <code>\{ "tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
2400
+ * <p>The tags used to organize, track, or control access for this resource. For example, <code>\{
2401
+ * "tags": \{"key1":"value1", "key2":"value2"\} \}</code>.</p>
2401
2402
  */
2402
2403
  Tags?: Record<string, string>;
2403
2404
  }
@@ -2487,7 +2488,7 @@ export interface CreateIntegrationAssociationRequest {
2487
2488
  SourceType?: SourceType;
2488
2489
  /**
2489
2490
  * @public
2490
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2491
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2491
2492
  */
2492
2493
  Tags?: Record<string, string>;
2493
2494
  }
@@ -2781,7 +2782,7 @@ export interface CreatePromptRequest {
2781
2782
  S3Uri: string | undefined;
2782
2783
  /**
2783
2784
  * @public
2784
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2785
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2785
2786
  */
2786
2787
  Tags?: Record<string, string>;
2787
2788
  }
@@ -2862,7 +2863,7 @@ export interface CreateQueueRequest {
2862
2863
  QuickConnectIds?: string[];
2863
2864
  /**
2864
2865
  * @public
2865
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2866
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2866
2867
  */
2867
2868
  Tags?: Record<string, string>;
2868
2869
  }
@@ -2992,7 +2993,7 @@ export interface CreateQuickConnectRequest {
2992
2993
  QuickConnectConfig: QuickConnectConfig | undefined;
2993
2994
  /**
2994
2995
  * @public
2995
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2996
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2996
2997
  */
2997
2998
  Tags?: Record<string, string>;
2998
2999
  }
@@ -3106,7 +3107,7 @@ export interface CreateRoutingProfileRequest {
3106
3107
  MediaConcurrencies: MediaConcurrency[] | undefined;
3107
3108
  /**
3108
3109
  * @public
3109
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3110
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3110
3111
  */
3111
3112
  Tags?: Record<string, string>;
3112
3113
  /**
@@ -3183,7 +3184,7 @@ export type NotificationDeliveryType = (typeof NotificationDeliveryType)[keyof t
3183
3184
  export interface NotificationRecipientType {
3184
3185
  /**
3185
3186
  * @public
3186
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}. Amazon Connect users with the specified tags will be notified.</p>
3187
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}. Amazon Connect users with the specified tags will be notified.</p>
3187
3188
  */
3188
3189
  UserTags?: Record<string, string>;
3189
3190
  /**
@@ -3497,7 +3498,7 @@ export interface CreateSecurityProfileRequest {
3497
3498
  InstanceId: string | undefined;
3498
3499
  /**
3499
3500
  * @public
3500
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3501
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3501
3502
  */
3502
3503
  Tags?: Record<string, string>;
3503
3504
  /**
@@ -3837,7 +3838,7 @@ export interface CreateTrafficDistributionGroupRequest {
3837
3838
  ClientToken?: string;
3838
3839
  /**
3839
3840
  * @public
3840
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3841
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3841
3842
  */
3842
3843
  Tags?: Record<string, string>;
3843
3844
  }
@@ -3905,7 +3906,7 @@ export interface CreateUseCaseRequest {
3905
3906
  UseCaseType: UseCaseType | undefined;
3906
3907
  /**
3907
3908
  * @public
3908
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3909
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3909
3910
  */
3910
3911
  Tags?: Record<string, string>;
3911
3912
  }
@@ -4063,7 +4064,7 @@ export interface CreateUserRequest {
4063
4064
  InstanceId: string | undefined;
4064
4065
  /**
4065
4066
  * @public
4066
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4067
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4067
4068
  */
4068
4069
  Tags?: Record<string, string>;
4069
4070
  }
@@ -4104,7 +4105,7 @@ export interface CreateUserHierarchyGroupRequest {
4104
4105
  InstanceId: string | undefined;
4105
4106
  /**
4106
4107
  * @public
4107
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4108
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4108
4109
  */
4109
4110
  Tags?: Record<string, string>;
4110
4111
  }
@@ -4449,7 +4450,7 @@ export interface CreateVocabularyRequest {
4449
4450
  Content: string | undefined;
4450
4451
  /**
4451
4452
  * @public
4452
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4453
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4453
4454
  */
4454
4455
  Tags?: Record<string, string>;
4455
4456
  }
@@ -5064,6 +5065,11 @@ export interface Contact {
5064
5065
  * <p>Information about Amazon Connect Wisdom.</p>
5065
5066
  */
5066
5067
  WisdomInfo?: WisdomInfo;
5068
+ /**
5069
+ * @public
5070
+ * <p>Tags associated with the contact. This contains both Amazon Web Services generated and user-defined tags.</p>
5071
+ */
5072
+ Tags?: Record<string, string>;
5067
5073
  }
5068
5074
  /**
5069
5075
  * @public
@@ -5286,7 +5292,7 @@ export interface Evaluation {
5286
5292
  LastModifiedTime: Date | undefined;
5287
5293
  /**
5288
5294
  * @public
5289
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5295
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5290
5296
  */
5291
5297
  Tags?: Record<string, string>;
5292
5298
  }
@@ -5375,7 +5381,7 @@ export interface ContactFlow {
5375
5381
  Content?: string;
5376
5382
  /**
5377
5383
  * @public
5378
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5384
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5379
5385
  */
5380
5386
  Tags?: Record<string, string>;
5381
5387
  }
@@ -5471,7 +5477,7 @@ export interface ContactFlowModule {
5471
5477
  Status?: ContactFlowModuleStatus;
5472
5478
  /**
5473
5479
  * @public
5474
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5480
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5475
5481
  */
5476
5482
  Tags?: Record<string, string>;
5477
5483
  }
@@ -5569,7 +5575,7 @@ export interface HoursOfOperation {
5569
5575
  Config?: HoursOfOperationConfig[];
5570
5576
  /**
5571
5577
  * @public
5572
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5578
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
5573
5579
  */
5574
5580
  Tags?: Record<string, string>;
5575
5581
  /**
@@ -6172,7 +6178,7 @@ export interface ClaimedPhoneNumberSummary {
6172
6178
  InstanceId?: string;
6173
6179
  /**
6174
6180
  * @public
6175
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6181
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6176
6182
  */
6177
6183
  Tags?: Record<string, string>;
6178
6184
  /**
@@ -6266,7 +6272,7 @@ export interface Prompt {
6266
6272
  Description?: string;
6267
6273
  /**
6268
6274
  * @public
6269
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6275
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6270
6276
  */
6271
6277
  Tags?: Record<string, string>;
6272
6278
  /**
@@ -6364,7 +6370,7 @@ export interface Queue {
6364
6370
  Status?: QueueStatus;
6365
6371
  /**
6366
6372
  * @public
6367
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6373
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
6368
6374
  */
6369
6375
  Tags?: Record<string, string>;
6370
6376
  /**
@@ -48,7 +48,7 @@ export interface QuickConnect {
48
48
  QuickConnectConfig?: QuickConnectConfig;
49
49
  /**
50
50
  * @public
51
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
51
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
52
52
  */
53
53
  Tags?: Record<string, string>;
54
54
  /**
@@ -130,7 +130,7 @@ export interface RoutingProfile {
130
130
  DefaultOutboundQueueId?: string;
131
131
  /**
132
132
  * @public
133
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
133
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
134
134
  */
135
135
  Tags?: Record<string, string>;
136
136
  /**
@@ -248,7 +248,7 @@ export interface Rule {
248
248
  LastUpdatedBy: string | undefined;
249
249
  /**
250
250
  * @public
251
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
251
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
252
252
  */
253
253
  Tags?: Record<string, string>;
254
254
  }
@@ -309,7 +309,7 @@ export interface SecurityProfile {
309
309
  Description?: string;
310
310
  /**
311
311
  * @public
312
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
312
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
313
313
  */
314
314
  Tags?: Record<string, string>;
315
315
  /**
@@ -439,7 +439,7 @@ export interface TrafficDistributionGroup {
439
439
  Status?: TrafficDistributionGroupStatus;
440
440
  /**
441
441
  * @public
442
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
442
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
443
443
  */
444
444
  Tags?: Record<string, string>;
445
445
  /**
@@ -670,7 +670,7 @@ export interface HierarchyGroup {
670
670
  HierarchyPath?: HierarchyPath;
671
671
  /**
672
672
  * @public
673
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
673
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
674
674
  */
675
675
  Tags?: Record<string, string>;
676
676
  /**
@@ -870,7 +870,7 @@ export interface Vocabulary {
870
870
  Content?: string;
871
871
  /**
872
872
  * @public
873
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
873
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
874
874
  */
875
875
  Tags?: Record<string, string>;
876
876
  }
@@ -3269,7 +3269,7 @@ export interface GetTaskTemplateResponse {
3269
3269
  CreatedTime?: Date;
3270
3270
  /**
3271
3271
  * @public
3272
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3272
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3273
3273
  */
3274
3274
  Tags?: Record<string, string>;
3275
3275
  }
@@ -3377,7 +3377,7 @@ export interface ImportPhoneNumberRequest {
3377
3377
  PhoneNumberDescription?: string;
3378
3378
  /**
3379
3379
  * @public
3380
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3380
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
3381
3381
  */
3382
3382
  Tags?: Record<string, string>;
3383
3383
  /**
@@ -3478,8 +3478,8 @@ export interface ListAnalyticsDataAssociationsResponse {
3478
3478
  /**
3479
3479
  * @public
3480
3480
  * <p>An array of successful results: <code>DataSetId</code>, <code>TargetAccountId</code>,
3481
- * <code>ResourceShareId</code>, <code>ResourceShareArn</code>. This is a paginated API, so
3482
- * <code>nextToken</code> is given if there are more results to be returned.</p>
3481
+ * <code>ResourceShareId</code>, <code>ResourceShareArn</code>. This is a paginated API, so
3482
+ * <code>nextToken</code> is given if there are more results to be returned.</p>
3483
3483
  */
3484
3484
  Results?: AnalyticsDataAssociationResult[];
3485
3485
  /**
@@ -7670,7 +7670,7 @@ export interface SecurityProfileSearchSummary {
7670
7670
  Description?: string;
7671
7671
  /**
7672
7672
  * @public
7673
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
7673
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
7674
7674
  */
7675
7675
  Tags?: Record<string, string>;
7676
7676
  }
@@ -7807,7 +7807,7 @@ export interface UserSearchSummary {
7807
7807
  SecurityProfileIds?: string[];
7808
7808
  /**
7809
7809
  * @public
7810
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
7810
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
7811
7811
  */
7812
7812
  Tags?: Record<string, string>;
7813
7813
  /**
@@ -7990,8 +7990,8 @@ export interface ChatEvent {
7990
7990
  * <code>EVENT</code>.</p>
7991
7991
  * <ul>
7992
7992
  * <li>
7993
- * <p>For allowed message content, see the <code>Content</code> parameter in the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendMessage.html">SendMessage</a> topic
7994
- * in the <i>Amazon Connect Participant Service API Reference</i>.</p>
7993
+ * <p>For allowed message content, see the <code>Content</code> parameter in the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendMessage.html">SendMessage</a> topic in the <i>Amazon Connect Participant Service API
7994
+ * Reference</i>.</p>
7995
7995
  * </li>
7996
7996
  * <li>
7997
7997
  * <p>For allowed event content, see the <code>Content</code> parameter in the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_SendEvent.html">SendEvent</a> topic in the <i>Amazon Connect Participant Service API
@@ -63,8 +63,9 @@ export interface SendChatIntegrationEventRequest {
63
63
  /**
64
64
  * @public
65
65
  * <p>Chat system identifier, used in part to uniquely identify chat. This is associated with the
66
- * Amazon Connect instance and flow to be used to start chats. For SMS, this is the phone
67
- * number destination of inbound SMS messages represented by an Amazon Pinpoint phone number ARN.</p>
66
+ * Amazon Connect instance and flow to be used to start chats. For SMS, this is the phone
67
+ * number destination of inbound SMS messages represented by an Amazon Pinpoint phone number
68
+ * ARN.</p>
68
69
  */
69
70
  DestinationId: string | undefined;
70
71
  /**
@@ -276,9 +277,10 @@ export interface StartChatContactRequest {
276
277
  * <p>This field can be used to show channel subtype, such as <code>connect:Guide</code>.</p>
277
278
  * <note>
278
279
  * <p>The types <code>application/vnd.amazonaws.connect.message.interactive</code> and
279
- * <code>application/vnd.amazonaws.connect.message.interactive.response</code> must be present in the
280
- * SupportedMessagingContentTypes field of this API in order to set <code>SegmentAttributes</code> as \{<code>
281
- * "connect:Subtype": \{"valueString" : "connect:Guide" \}\}</code>.</p>
280
+ * <code>application/vnd.amazonaws.connect.message.interactive.response</code> must be present in
281
+ * the SupportedMessagingContentTypes field of this API in order to set
282
+ * <code>SegmentAttributes</code> as \{<code> "connect:Subtype": \{"valueString" : "connect:Guide"
283
+ * \}\}</code>.</p>
282
284
  * </note>
283
285
  */
284
286
  SegmentAttributes?: Record<string, SegmentAttributeValue>;
@@ -1102,6 +1104,34 @@ export interface SuspendContactRecordingRequest {
1102
1104
  */
1103
1105
  export interface SuspendContactRecordingResponse {
1104
1106
  }
1107
+ /**
1108
+ * @public
1109
+ */
1110
+ export interface TagContactRequest {
1111
+ /**
1112
+ * @public
1113
+ * <p>The identifier of the contact in this instance of Amazon Connect. </p>
1114
+ */
1115
+ ContactId: string | undefined;
1116
+ /**
1117
+ * @public
1118
+ * <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>
1119
+ */
1120
+ InstanceId: string | undefined;
1121
+ /**
1122
+ * @public
1123
+ * <p>The tags to be assigned to the contact resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1124
+ * <note>
1125
+ * <p>Authorization is not supported by this tag.</p>
1126
+ * </note>
1127
+ */
1128
+ Tags: Record<string, string> | undefined;
1129
+ }
1130
+ /**
1131
+ * @public
1132
+ */
1133
+ export interface TagContactResponse {
1134
+ }
1105
1135
  /**
1106
1136
  * @public
1107
1137
  */
@@ -1113,7 +1143,7 @@ export interface TagResourceRequest {
1113
1143
  resourceArn: string | undefined;
1114
1144
  /**
1115
1145
  * @public
1116
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1146
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
1117
1147
  */
1118
1148
  tags: Record<string, string> | undefined;
1119
1149
  }
@@ -1170,6 +1200,31 @@ export interface TransferContactResponse {
1170
1200
  */
1171
1201
  ContactArn?: string;
1172
1202
  }
1203
+ /**
1204
+ * @public
1205
+ */
1206
+ export interface UntagContactRequest {
1207
+ /**
1208
+ * @public
1209
+ * <p>The identifier of the contact in this instance of Amazon Connect. </p>
1210
+ */
1211
+ ContactId: string | undefined;
1212
+ /**
1213
+ * @public
1214
+ * <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>
1215
+ */
1216
+ InstanceId: string | undefined;
1217
+ /**
1218
+ * @public
1219
+ * <p>A list of tag keys. Existing tags on the contact whose keys are members of this list will be removed.</p>
1220
+ */
1221
+ TagKeys: string[] | undefined;
1222
+ }
1223
+ /**
1224
+ * @public
1225
+ */
1226
+ export interface UntagContactResponse {
1227
+ }
1173
1228
  /**
1174
1229
  * @public
1175
1230
  */
@@ -2831,7 +2886,7 @@ export interface EvaluationForm {
2831
2886
  LastModifiedBy: string | undefined;
2832
2887
  /**
2833
2888
  * @public
2834
- * <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2889
+ * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2835
2890
  */
2836
2891
  Tags?: Record<string, string>;
2837
2892
  }
@@ -181,8 +181,10 @@ import { StopContactRecordingCommandInput, StopContactRecordingCommandOutput } f
181
181
  import { StopContactStreamingCommandInput, StopContactStreamingCommandOutput } from "../commands/StopContactStreamingCommand";
182
182
  import { SubmitContactEvaluationCommandInput, SubmitContactEvaluationCommandOutput } from "../commands/SubmitContactEvaluationCommand";
183
183
  import { SuspendContactRecordingCommandInput, SuspendContactRecordingCommandOutput } from "../commands/SuspendContactRecordingCommand";
184
+ import { TagContactCommandInput, TagContactCommandOutput } from "../commands/TagContactCommand";
184
185
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
185
186
  import { TransferContactCommandInput, TransferContactCommandOutput } from "../commands/TransferContactCommand";
187
+ import { UntagContactCommandInput, UntagContactCommandOutput } from "../commands/UntagContactCommand";
186
188
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
187
189
  import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "../commands/UpdateAgentStatusCommand";
188
190
  import { UpdateContactAttributesCommandInput, UpdateContactAttributesCommandOutput } from "../commands/UpdateContactAttributesCommand";
@@ -951,6 +953,10 @@ export declare const se_SubmitContactEvaluationCommand: (input: SubmitContactEva
951
953
  * serializeAws_restJson1SuspendContactRecordingCommand
952
954
  */
953
955
  export declare const se_SuspendContactRecordingCommand: (input: SuspendContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
956
+ /**
957
+ * serializeAws_restJson1TagContactCommand
958
+ */
959
+ export declare const se_TagContactCommand: (input: TagContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
954
960
  /**
955
961
  * serializeAws_restJson1TagResourceCommand
956
962
  */
@@ -959,6 +965,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
959
965
  * serializeAws_restJson1TransferContactCommand
960
966
  */
961
967
  export declare const se_TransferContactCommand: (input: TransferContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
968
+ /**
969
+ * serializeAws_restJson1UntagContactCommand
970
+ */
971
+ export declare const se_UntagContactCommand: (input: UntagContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
962
972
  /**
963
973
  * serializeAws_restJson1UntagResourceCommand
964
974
  */
@@ -1859,6 +1869,10 @@ export declare const de_SubmitContactEvaluationCommand: (output: __HttpResponse,
1859
1869
  * deserializeAws_restJson1SuspendContactRecordingCommand
1860
1870
  */
1861
1871
  export declare const de_SuspendContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SuspendContactRecordingCommandOutput>;
1872
+ /**
1873
+ * deserializeAws_restJson1TagContactCommand
1874
+ */
1875
+ export declare const de_TagContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagContactCommandOutput>;
1862
1876
  /**
1863
1877
  * deserializeAws_restJson1TagResourceCommand
1864
1878
  */
@@ -1867,6 +1881,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
1867
1881
  * deserializeAws_restJson1TransferContactCommand
1868
1882
  */
1869
1883
  export declare const de_TransferContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TransferContactCommandOutput>;
1884
+ /**
1885
+ * deserializeAws_restJson1UntagContactCommand
1886
+ */
1887
+ export declare const de_UntagContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagContactCommandOutput>;
1870
1888
  /**
1871
1889
  * deserializeAws_restJson1UntagResourceCommand
1872
1890
  */
@@ -723,6 +723,10 @@ import {
723
723
  SuspendContactRecordingCommandInput,
724
724
  SuspendContactRecordingCommandOutput,
725
725
  } from "./commands/SuspendContactRecordingCommand";
726
+ import {
727
+ TagContactCommandInput,
728
+ TagContactCommandOutput,
729
+ } from "./commands/TagContactCommand";
726
730
  import {
727
731
  TagResourceCommandInput,
728
732
  TagResourceCommandOutput,
@@ -731,6 +735,10 @@ import {
731
735
  TransferContactCommandInput,
732
736
  TransferContactCommandOutput,
733
737
  } from "./commands/TransferContactCommand";
738
+ import {
739
+ UntagContactCommandInput,
740
+ UntagContactCommandOutput,
741
+ } from "./commands/UntagContactCommand";
734
742
  import {
735
743
  UntagResourceCommandInput,
736
744
  UntagResourceCommandOutput,
@@ -3310,6 +3318,19 @@ export interface Connect {
3310
3318
  options: __HttpHandlerOptions,
3311
3319
  cb: (err: any, data?: SuspendContactRecordingCommandOutput) => void
3312
3320
  ): void;
3321
+ tagContact(
3322
+ args: TagContactCommandInput,
3323
+ options?: __HttpHandlerOptions
3324
+ ): Promise<TagContactCommandOutput>;
3325
+ tagContact(
3326
+ args: TagContactCommandInput,
3327
+ cb: (err: any, data?: TagContactCommandOutput) => void
3328
+ ): void;
3329
+ tagContact(
3330
+ args: TagContactCommandInput,
3331
+ options: __HttpHandlerOptions,
3332
+ cb: (err: any, data?: TagContactCommandOutput) => void
3333
+ ): void;
3313
3334
  tagResource(
3314
3335
  args: TagResourceCommandInput,
3315
3336
  options?: __HttpHandlerOptions
@@ -3336,6 +3357,19 @@ export interface Connect {
3336
3357
  options: __HttpHandlerOptions,
3337
3358
  cb: (err: any, data?: TransferContactCommandOutput) => void
3338
3359
  ): void;
3360
+ untagContact(
3361
+ args: UntagContactCommandInput,
3362
+ options?: __HttpHandlerOptions
3363
+ ): Promise<UntagContactCommandOutput>;
3364
+ untagContact(
3365
+ args: UntagContactCommandInput,
3366
+ cb: (err: any, data?: UntagContactCommandOutput) => void
3367
+ ): void;
3368
+ untagContact(
3369
+ args: UntagContactCommandInput,
3370
+ options: __HttpHandlerOptions,
3371
+ cb: (err: any, data?: UntagContactCommandOutput) => void
3372
+ ): void;
3339
3373
  untagResource(
3340
3374
  args: UntagResourceCommandInput,
3341
3375
  options?: __HttpHandlerOptions
@@ -769,6 +769,10 @@ import {
769
769
  SuspendContactRecordingCommandInput,
770
770
  SuspendContactRecordingCommandOutput,
771
771
  } from "./commands/SuspendContactRecordingCommand";
772
+ import {
773
+ TagContactCommandInput,
774
+ TagContactCommandOutput,
775
+ } from "./commands/TagContactCommand";
772
776
  import {
773
777
  TagResourceCommandInput,
774
778
  TagResourceCommandOutput,
@@ -777,6 +781,10 @@ import {
777
781
  TransferContactCommandInput,
778
782
  TransferContactCommandOutput,
779
783
  } from "./commands/TransferContactCommand";
784
+ import {
785
+ UntagContactCommandInput,
786
+ UntagContactCommandOutput,
787
+ } from "./commands/UntagContactCommand";
780
788
  import {
781
789
  UntagResourceCommandInput,
782
790
  UntagResourceCommandOutput,
@@ -1142,8 +1150,10 @@ export type ServiceInputTypes =
1142
1150
  | StopContactStreamingCommandInput
1143
1151
  | SubmitContactEvaluationCommandInput
1144
1152
  | SuspendContactRecordingCommandInput
1153
+ | TagContactCommandInput
1145
1154
  | TagResourceCommandInput
1146
1155
  | TransferContactCommandInput
1156
+ | UntagContactCommandInput
1147
1157
  | UntagResourceCommandInput
1148
1158
  | UpdateAgentStatusCommandInput
1149
1159
  | UpdateContactAttributesCommandInput
@@ -1370,8 +1380,10 @@ export type ServiceOutputTypes =
1370
1380
  | StopContactStreamingCommandOutput
1371
1381
  | SubmitContactEvaluationCommandOutput
1372
1382
  | SuspendContactRecordingCommandOutput
1383
+ | TagContactCommandOutput
1373
1384
  | TagResourceCommandOutput
1374
1385
  | TransferContactCommandOutput
1386
+ | UntagContactCommandOutput
1375
1387
  | UntagResourceCommandOutput
1376
1388
  | UpdateAgentStatusCommandOutput
1377
1389
  | UpdateContactAttributesCommandOutput