aws-sdk-connect 1.185.0 → 1.186.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +788 -64
- data/lib/aws-sdk-connect/client_api.rb +542 -1
- data/lib/aws-sdk-connect/errors.rb +21 -0
- data/lib/aws-sdk-connect/types.rb +1070 -34
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +401 -45
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +405 -39
- metadata +2 -2
@@ -88,6 +88,21 @@ module Aws::Connect
|
|
88
88
|
include Aws::Structure
|
89
89
|
end
|
90
90
|
|
91
|
+
# @!attribute [rw] to_list
|
92
|
+
# @return [Array<Types::EmailRecipient>]
|
93
|
+
#
|
94
|
+
# @!attribute [rw] cc_list
|
95
|
+
# @return [Array<Types::EmailRecipient>]
|
96
|
+
#
|
97
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AdditionalEmailRecipients AWS API Documentation
|
98
|
+
#
|
99
|
+
class AdditionalEmailRecipients < Struct.new(
|
100
|
+
:to_list,
|
101
|
+
:cc_list)
|
102
|
+
SENSITIVE = []
|
103
|
+
include Aws::Structure
|
104
|
+
end
|
105
|
+
|
91
106
|
# The distribution of agents between the instance and its replica(s).
|
92
107
|
#
|
93
108
|
# @!attribute [rw] distributions
|
@@ -1047,6 +1062,49 @@ module Aws::Connect
|
|
1047
1062
|
include Aws::Structure
|
1048
1063
|
end
|
1049
1064
|
|
1065
|
+
# @!attribute [rw] contact_id
|
1066
|
+
# @return [String]
|
1067
|
+
#
|
1068
|
+
# @!attribute [rw] contact_arn
|
1069
|
+
# @return [String]
|
1070
|
+
#
|
1071
|
+
# @!attribute [rw] initiation_timestamp
|
1072
|
+
# @return [Time]
|
1073
|
+
#
|
1074
|
+
# @!attribute [rw] disconnect_timestamp
|
1075
|
+
# @return [Time]
|
1076
|
+
#
|
1077
|
+
# @!attribute [rw] initial_contact_id
|
1078
|
+
# @return [String]
|
1079
|
+
#
|
1080
|
+
# @!attribute [rw] previous_contact_id
|
1081
|
+
# @return [String]
|
1082
|
+
#
|
1083
|
+
# @!attribute [rw] related_contact_id
|
1084
|
+
# @return [String]
|
1085
|
+
#
|
1086
|
+
# @!attribute [rw] initiation_method
|
1087
|
+
# @return [String]
|
1088
|
+
#
|
1089
|
+
# @!attribute [rw] channel
|
1090
|
+
# @return [String]
|
1091
|
+
#
|
1092
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociatedContactSummary AWS API Documentation
|
1093
|
+
#
|
1094
|
+
class AssociatedContactSummary < Struct.new(
|
1095
|
+
:contact_id,
|
1096
|
+
:contact_arn,
|
1097
|
+
:initiation_timestamp,
|
1098
|
+
:disconnect_timestamp,
|
1099
|
+
:initial_contact_id,
|
1100
|
+
:previous_contact_id,
|
1101
|
+
:related_contact_id,
|
1102
|
+
:initiation_method,
|
1103
|
+
:channel)
|
1104
|
+
SENSITIVE = []
|
1105
|
+
include Aws::Structure
|
1106
|
+
end
|
1107
|
+
|
1050
1108
|
# Information about the attached file.
|
1051
1109
|
#
|
1052
1110
|
# @!attribute [rw] creation_time
|
@@ -1159,12 +1217,16 @@ module Aws::Connect
|
|
1159
1217
|
# Status of the attachment reference type.
|
1160
1218
|
# @return [String]
|
1161
1219
|
#
|
1220
|
+
# @!attribute [rw] arn
|
1221
|
+
# @return [String]
|
1222
|
+
#
|
1162
1223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachmentReference AWS API Documentation
|
1163
1224
|
#
|
1164
1225
|
class AttachmentReference < Struct.new(
|
1165
1226
|
:name,
|
1166
1227
|
:value,
|
1167
|
-
:status
|
1228
|
+
:status,
|
1229
|
+
:arn)
|
1168
1230
|
SENSITIVE = []
|
1169
1231
|
include Aws::Structure
|
1170
1232
|
end
|
@@ -2135,6 +2197,17 @@ module Aws::Connect
|
|
2135
2197
|
include Aws::Structure
|
2136
2198
|
end
|
2137
2199
|
|
2200
|
+
# @!attribute [rw] message
|
2201
|
+
# @return [String]
|
2202
|
+
#
|
2203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ConditionalOperationFailedException AWS API Documentation
|
2204
|
+
#
|
2205
|
+
class ConditionalOperationFailedException < Struct.new(
|
2206
|
+
:message)
|
2207
|
+
SENSITIVE = []
|
2208
|
+
include Aws::Structure
|
2209
|
+
end
|
2210
|
+
|
2138
2211
|
# Operation cannot be performed at this time as there is a conflict with
|
2139
2212
|
# another operation or contact state.
|
2140
2213
|
#
|
@@ -2188,6 +2261,9 @@ module Aws::Connect
|
|
2188
2261
|
# previous contact.
|
2189
2262
|
# @return [String]
|
2190
2263
|
#
|
2264
|
+
# @!attribute [rw] contact_association_id
|
2265
|
+
# @return [String]
|
2266
|
+
#
|
2191
2267
|
# @!attribute [rw] initiation_method
|
2192
2268
|
# Indicates how the contact was initiated.
|
2193
2269
|
# @return [String]
|
@@ -2266,6 +2342,12 @@ module Aws::Connect
|
|
2266
2342
|
# Information about Amazon Connect Wisdom.
|
2267
2343
|
# @return [Types::WisdomInfo]
|
2268
2344
|
#
|
2345
|
+
# @!attribute [rw] customer_endpoint
|
2346
|
+
# @return [Types::EndpointInfo]
|
2347
|
+
#
|
2348
|
+
# @!attribute [rw] system_endpoint
|
2349
|
+
# @return [Types::EndpointInfo]
|
2350
|
+
#
|
2269
2351
|
# @!attribute [rw] queue_time_adjustment_seconds
|
2270
2352
|
# An integer that represents the queue time adjust to be applied to
|
2271
2353
|
# the contact, in seconds (longer / larger queue time are routed
|
@@ -2324,6 +2406,9 @@ module Aws::Connect
|
|
2324
2406
|
# Information about the call disconnect experience.
|
2325
2407
|
# @return [Types::DisconnectDetails]
|
2326
2408
|
#
|
2409
|
+
# @!attribute [rw] additional_email_recipients
|
2410
|
+
# @return [Types::AdditionalEmailRecipients]
|
2411
|
+
#
|
2327
2412
|
# @!attribute [rw] segment_attributes
|
2328
2413
|
# A set of system defined key-value pairs stored on individual contact
|
2329
2414
|
# segments using an attribute map. The attributes are standard Amazon
|
@@ -2340,6 +2425,7 @@ module Aws::Connect
|
|
2340
2425
|
:id,
|
2341
2426
|
:initial_contact_id,
|
2342
2427
|
:previous_contact_id,
|
2428
|
+
:contact_association_id,
|
2343
2429
|
:initiation_method,
|
2344
2430
|
:name,
|
2345
2431
|
:description,
|
@@ -2356,6 +2442,8 @@ module Aws::Connect
|
|
2356
2442
|
:scheduled_timestamp,
|
2357
2443
|
:related_contact_id,
|
2358
2444
|
:wisdom_info,
|
2445
|
+
:customer_endpoint,
|
2446
|
+
:system_endpoint,
|
2359
2447
|
:queue_time_adjustment_seconds,
|
2360
2448
|
:queue_priority,
|
2361
2449
|
:tags,
|
@@ -2367,6 +2455,7 @@ module Aws::Connect
|
|
2367
2455
|
:customer_voice_activity,
|
2368
2456
|
:quality_metrics,
|
2369
2457
|
:disconnect_details,
|
2458
|
+
:additional_email_recipients,
|
2370
2459
|
:segment_attributes)
|
2371
2460
|
SENSITIVE = [:name, :description]
|
2372
2461
|
include Aws::Structure
|
@@ -2905,6 +2994,9 @@ module Aws::Connect
|
|
2905
2994
|
# the inbound flow.
|
2906
2995
|
# @return [Time]
|
2907
2996
|
#
|
2997
|
+
# @!attribute [rw] segment_attributes
|
2998
|
+
# @return [Hash<String,Types::ContactSearchSummarySegmentAttributeValue>]
|
2999
|
+
#
|
2908
3000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
|
2909
3001
|
#
|
2910
3002
|
class ContactSearchSummary < Struct.new(
|
@@ -2918,7 +3010,8 @@ module Aws::Connect
|
|
2918
3010
|
:agent_info,
|
2919
3011
|
:initiation_timestamp,
|
2920
3012
|
:disconnect_timestamp,
|
2921
|
-
:scheduled_timestamp
|
3013
|
+
:scheduled_timestamp,
|
3014
|
+
:segment_attributes)
|
2922
3015
|
SENSITIVE = []
|
2923
3016
|
include Aws::Structure
|
2924
3017
|
end
|
@@ -2961,6 +3054,17 @@ module Aws::Connect
|
|
2961
3054
|
include Aws::Structure
|
2962
3055
|
end
|
2963
3056
|
|
3057
|
+
# @!attribute [rw] value_string
|
3058
|
+
# @return [String]
|
3059
|
+
#
|
3060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummarySegmentAttributeValue AWS API Documentation
|
3061
|
+
#
|
3062
|
+
class ContactSearchSummarySegmentAttributeValue < Struct.new(
|
3063
|
+
:value_string)
|
3064
|
+
SENSITIVE = []
|
3065
|
+
include Aws::Structure
|
3066
|
+
end
|
3067
|
+
|
2964
3068
|
# An object that can be used to specify Tag conditions inside the
|
2965
3069
|
# `SearchFilter`. This accepts an `OR` or `AND` (List of List) input
|
2966
3070
|
# where:
|
@@ -3371,6 +3475,128 @@ module Aws::Connect
|
|
3371
3475
|
include Aws::Structure
|
3372
3476
|
end
|
3373
3477
|
|
3478
|
+
# @!attribute [rw] instance_id
|
3479
|
+
# @return [String]
|
3480
|
+
#
|
3481
|
+
# @!attribute [rw] client_token
|
3482
|
+
# **A suitable default value is auto-generated.** You should normally
|
3483
|
+
# not need to pass this option.
|
3484
|
+
# @return [String]
|
3485
|
+
#
|
3486
|
+
# @!attribute [rw] related_contact_id
|
3487
|
+
# @return [String]
|
3488
|
+
#
|
3489
|
+
# @!attribute [rw] attributes
|
3490
|
+
# @return [Hash<String,String>]
|
3491
|
+
#
|
3492
|
+
# @!attribute [rw] references
|
3493
|
+
# @return [Hash<String,Types::Reference>]
|
3494
|
+
#
|
3495
|
+
# @!attribute [rw] channel
|
3496
|
+
# @return [String]
|
3497
|
+
#
|
3498
|
+
# @!attribute [rw] initiation_method
|
3499
|
+
# @return [String]
|
3500
|
+
#
|
3501
|
+
# @!attribute [rw] expiry_duration_in_minutes
|
3502
|
+
# @return [Integer]
|
3503
|
+
#
|
3504
|
+
# @!attribute [rw] user_info
|
3505
|
+
# @return [Types::UserInfo]
|
3506
|
+
#
|
3507
|
+
# @!attribute [rw] initiate_as
|
3508
|
+
# @return [String]
|
3509
|
+
#
|
3510
|
+
# @!attribute [rw] name
|
3511
|
+
# @return [String]
|
3512
|
+
#
|
3513
|
+
# @!attribute [rw] description
|
3514
|
+
# @return [String]
|
3515
|
+
#
|
3516
|
+
# @!attribute [rw] segment_attributes
|
3517
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
3518
|
+
#
|
3519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactRequest AWS API Documentation
|
3520
|
+
#
|
3521
|
+
class CreateContactRequest < Struct.new(
|
3522
|
+
:instance_id,
|
3523
|
+
:client_token,
|
3524
|
+
:related_contact_id,
|
3525
|
+
:attributes,
|
3526
|
+
:references,
|
3527
|
+
:channel,
|
3528
|
+
:initiation_method,
|
3529
|
+
:expiry_duration_in_minutes,
|
3530
|
+
:user_info,
|
3531
|
+
:initiate_as,
|
3532
|
+
:name,
|
3533
|
+
:description,
|
3534
|
+
:segment_attributes)
|
3535
|
+
SENSITIVE = [:name, :description]
|
3536
|
+
include Aws::Structure
|
3537
|
+
end
|
3538
|
+
|
3539
|
+
# @!attribute [rw] contact_id
|
3540
|
+
# @return [String]
|
3541
|
+
#
|
3542
|
+
# @!attribute [rw] contact_arn
|
3543
|
+
# @return [String]
|
3544
|
+
#
|
3545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactResponse AWS API Documentation
|
3546
|
+
#
|
3547
|
+
class CreateContactResponse < Struct.new(
|
3548
|
+
:contact_id,
|
3549
|
+
:contact_arn)
|
3550
|
+
SENSITIVE = []
|
3551
|
+
include Aws::Structure
|
3552
|
+
end
|
3553
|
+
|
3554
|
+
# @!attribute [rw] description
|
3555
|
+
# @return [String]
|
3556
|
+
#
|
3557
|
+
# @!attribute [rw] instance_id
|
3558
|
+
# @return [String]
|
3559
|
+
#
|
3560
|
+
# @!attribute [rw] email_address
|
3561
|
+
# @return [String]
|
3562
|
+
#
|
3563
|
+
# @!attribute [rw] display_name
|
3564
|
+
# @return [String]
|
3565
|
+
#
|
3566
|
+
# @!attribute [rw] tags
|
3567
|
+
# @return [Hash<String,String>]
|
3568
|
+
#
|
3569
|
+
# @!attribute [rw] client_token
|
3570
|
+
# @return [String]
|
3571
|
+
#
|
3572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateEmailAddressRequest AWS API Documentation
|
3573
|
+
#
|
3574
|
+
class CreateEmailAddressRequest < Struct.new(
|
3575
|
+
:description,
|
3576
|
+
:instance_id,
|
3577
|
+
:email_address,
|
3578
|
+
:display_name,
|
3579
|
+
:tags,
|
3580
|
+
:client_token)
|
3581
|
+
SENSITIVE = [:description, :email_address, :display_name]
|
3582
|
+
include Aws::Structure
|
3583
|
+
end
|
3584
|
+
|
3585
|
+
# @!attribute [rw] email_address_id
|
3586
|
+
# @return [String]
|
3587
|
+
#
|
3588
|
+
# @!attribute [rw] email_address_arn
|
3589
|
+
# @return [String]
|
3590
|
+
#
|
3591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateEmailAddressResponse AWS API Documentation
|
3592
|
+
#
|
3593
|
+
class CreateEmailAddressResponse < Struct.new(
|
3594
|
+
:email_address_id,
|
3595
|
+
:email_address_arn)
|
3596
|
+
SENSITIVE = []
|
3597
|
+
include Aws::Structure
|
3598
|
+
end
|
3599
|
+
|
3374
3600
|
# @!attribute [rw] instance_id
|
3375
3601
|
# The identifier of the Amazon Connect instance. You can [find the
|
3376
3602
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -3932,6 +4158,9 @@ module Aws::Connect
|
|
3932
4158
|
# The outbound caller ID name, number, and outbound whisper flow.
|
3933
4159
|
# @return [Types::OutboundCallerConfig]
|
3934
4160
|
#
|
4161
|
+
# @!attribute [rw] outbound_email_config
|
4162
|
+
# @return [Types::OutboundEmailConfig]
|
4163
|
+
#
|
3935
4164
|
# @!attribute [rw] hours_of_operation_id
|
3936
4165
|
# The identifier for the hours of operation.
|
3937
4166
|
# @return [String]
|
@@ -3958,6 +4187,7 @@ module Aws::Connect
|
|
3958
4187
|
:name,
|
3959
4188
|
:description,
|
3960
4189
|
:outbound_caller_config,
|
4190
|
+
:outbound_email_config,
|
3961
4191
|
:hours_of_operation_id,
|
3962
4192
|
:max_contacts,
|
3963
4193
|
:quick_connect_ids,
|
@@ -4316,6 +4546,9 @@ module Aws::Connect
|
|
4316
4546
|
# created by referencing this template.
|
4317
4547
|
# @return [String]
|
4318
4548
|
#
|
4549
|
+
# @!attribute [rw] self_assign_flow_id
|
4550
|
+
# @return [String]
|
4551
|
+
#
|
4319
4552
|
# @!attribute [rw] constraints
|
4320
4553
|
# Constraints that are applicable to the fields listed.
|
4321
4554
|
# @return [Types::TaskTemplateConstraints]
|
@@ -4357,6 +4590,7 @@ module Aws::Connect
|
|
4357
4590
|
:name,
|
4358
4591
|
:description,
|
4359
4592
|
:contact_flow_id,
|
4593
|
+
:self_assign_flow_id,
|
4360
4594
|
:constraints,
|
4361
4595
|
:defaults,
|
4362
4596
|
:status,
|
@@ -5310,6 +5544,25 @@ module Aws::Connect
|
|
5310
5544
|
#
|
5311
5545
|
class DeleteContactFlowResponse < Aws::EmptyStructure; end
|
5312
5546
|
|
5547
|
+
# @!attribute [rw] instance_id
|
5548
|
+
# @return [String]
|
5549
|
+
#
|
5550
|
+
# @!attribute [rw] email_address_id
|
5551
|
+
# @return [String]
|
5552
|
+
#
|
5553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteEmailAddressRequest AWS API Documentation
|
5554
|
+
#
|
5555
|
+
class DeleteEmailAddressRequest < Struct.new(
|
5556
|
+
:instance_id,
|
5557
|
+
:email_address_id)
|
5558
|
+
SENSITIVE = []
|
5559
|
+
include Aws::Structure
|
5560
|
+
end
|
5561
|
+
|
5562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteEmailAddressResponse AWS API Documentation
|
5563
|
+
#
|
5564
|
+
class DeleteEmailAddressResponse < Aws::EmptyStructure; end
|
5565
|
+
|
5313
5566
|
# @!attribute [rw] instance_id
|
5314
5567
|
# The identifier of the Amazon Connect instance. You can [find the
|
5315
5568
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -5960,6 +6213,60 @@ module Aws::Connect
|
|
5960
6213
|
include Aws::Structure
|
5961
6214
|
end
|
5962
6215
|
|
6216
|
+
# @!attribute [rw] instance_id
|
6217
|
+
# @return [String]
|
6218
|
+
#
|
6219
|
+
# @!attribute [rw] email_address_id
|
6220
|
+
# @return [String]
|
6221
|
+
#
|
6222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeEmailAddressRequest AWS API Documentation
|
6223
|
+
#
|
6224
|
+
class DescribeEmailAddressRequest < Struct.new(
|
6225
|
+
:instance_id,
|
6226
|
+
:email_address_id)
|
6227
|
+
SENSITIVE = []
|
6228
|
+
include Aws::Structure
|
6229
|
+
end
|
6230
|
+
|
6231
|
+
# @!attribute [rw] email_address_id
|
6232
|
+
# @return [String]
|
6233
|
+
#
|
6234
|
+
# @!attribute [rw] email_address_arn
|
6235
|
+
# @return [String]
|
6236
|
+
#
|
6237
|
+
# @!attribute [rw] email_address
|
6238
|
+
# @return [String]
|
6239
|
+
#
|
6240
|
+
# @!attribute [rw] display_name
|
6241
|
+
# @return [String]
|
6242
|
+
#
|
6243
|
+
# @!attribute [rw] description
|
6244
|
+
# @return [String]
|
6245
|
+
#
|
6246
|
+
# @!attribute [rw] create_timestamp
|
6247
|
+
# @return [String]
|
6248
|
+
#
|
6249
|
+
# @!attribute [rw] modified_timestamp
|
6250
|
+
# @return [String]
|
6251
|
+
#
|
6252
|
+
# @!attribute [rw] tags
|
6253
|
+
# @return [Hash<String,String>]
|
6254
|
+
#
|
6255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeEmailAddressResponse AWS API Documentation
|
6256
|
+
#
|
6257
|
+
class DescribeEmailAddressResponse < Struct.new(
|
6258
|
+
:email_address_id,
|
6259
|
+
:email_address_arn,
|
6260
|
+
:email_address,
|
6261
|
+
:display_name,
|
6262
|
+
:description,
|
6263
|
+
:create_timestamp,
|
6264
|
+
:modified_timestamp,
|
6265
|
+
:tags)
|
6266
|
+
SENSITIVE = [:email_address, :display_name, :description]
|
6267
|
+
include Aws::Structure
|
6268
|
+
end
|
6269
|
+
|
5963
6270
|
# @!attribute [rw] instance_id
|
5964
6271
|
# The identifier of the Amazon Connect instance. You can [find the
|
5965
6272
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -7124,31 +7431,159 @@ module Aws::Connect
|
|
7124
7431
|
include Aws::Structure
|
7125
7432
|
end
|
7126
7433
|
|
7127
|
-
#
|
7128
|
-
# Otherwise, null.
|
7129
|
-
#
|
7130
|
-
# @!attribute [rw] name
|
7131
|
-
# Identifier of the email reference.
|
7434
|
+
# @!attribute [rw] email_address
|
7132
7435
|
# @return [String]
|
7133
7436
|
#
|
7134
|
-
# @!attribute [rw]
|
7135
|
-
# A valid email address.
|
7437
|
+
# @!attribute [rw] display_name
|
7136
7438
|
# @return [String]
|
7137
7439
|
#
|
7138
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/
|
7440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressInfo AWS API Documentation
|
7139
7441
|
#
|
7140
|
-
class
|
7141
|
-
:
|
7142
|
-
:
|
7143
|
-
SENSITIVE = []
|
7442
|
+
class EmailAddressInfo < Struct.new(
|
7443
|
+
:email_address,
|
7444
|
+
:display_name)
|
7445
|
+
SENSITIVE = [:email_address, :display_name]
|
7144
7446
|
include Aws::Structure
|
7145
7447
|
end
|
7146
7448
|
|
7147
|
-
#
|
7449
|
+
# @!attribute [rw] email_address_id
|
7450
|
+
# @return [String]
|
7148
7451
|
#
|
7149
|
-
#
|
7452
|
+
# @!attribute [rw] email_address_arn
|
7453
|
+
# @return [String]
|
7150
7454
|
#
|
7151
|
-
#
|
7455
|
+
# @!attribute [rw] email_address
|
7456
|
+
# @return [String]
|
7457
|
+
#
|
7458
|
+
# @!attribute [rw] description
|
7459
|
+
# @return [String]
|
7460
|
+
#
|
7461
|
+
# @!attribute [rw] display_name
|
7462
|
+
# @return [String]
|
7463
|
+
#
|
7464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressMetadata AWS API Documentation
|
7465
|
+
#
|
7466
|
+
class EmailAddressMetadata < Struct.new(
|
7467
|
+
:email_address_id,
|
7468
|
+
:email_address_arn,
|
7469
|
+
:email_address,
|
7470
|
+
:description,
|
7471
|
+
:display_name)
|
7472
|
+
SENSITIVE = [:email_address, :description, :display_name]
|
7473
|
+
include Aws::Structure
|
7474
|
+
end
|
7475
|
+
|
7476
|
+
# @!attribute [rw] or_conditions
|
7477
|
+
# @return [Array<Types::EmailAddressSearchCriteria>]
|
7478
|
+
#
|
7479
|
+
# @!attribute [rw] and_conditions
|
7480
|
+
# @return [Array<Types::EmailAddressSearchCriteria>]
|
7481
|
+
#
|
7482
|
+
# @!attribute [rw] string_condition
|
7483
|
+
# A leaf node condition which can be used to specify a string
|
7484
|
+
# condition.
|
7485
|
+
# @return [Types::StringCondition]
|
7486
|
+
#
|
7487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressSearchCriteria AWS API Documentation
|
7488
|
+
#
|
7489
|
+
class EmailAddressSearchCriteria < Struct.new(
|
7490
|
+
:or_conditions,
|
7491
|
+
:and_conditions,
|
7492
|
+
:string_condition)
|
7493
|
+
SENSITIVE = []
|
7494
|
+
include Aws::Structure
|
7495
|
+
end
|
7496
|
+
|
7497
|
+
# @!attribute [rw] tag_filter
|
7498
|
+
# An object that can be used to specify Tag conditions inside the
|
7499
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
7500
|
+
# where:
|
7501
|
+
#
|
7502
|
+
# * Top level list specifies conditions that need to be applied with
|
7503
|
+
# `OR` operator
|
7504
|
+
#
|
7505
|
+
# * Inner list specifies conditions that need to be applied with `AND`
|
7506
|
+
# operator.
|
7507
|
+
# @return [Types::ControlPlaneTagFilter]
|
7508
|
+
#
|
7509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAddressSearchFilter AWS API Documentation
|
7510
|
+
#
|
7511
|
+
class EmailAddressSearchFilter < Struct.new(
|
7512
|
+
:tag_filter)
|
7513
|
+
SENSITIVE = []
|
7514
|
+
include Aws::Structure
|
7515
|
+
end
|
7516
|
+
|
7517
|
+
# @!attribute [rw] file_name
|
7518
|
+
# @return [String]
|
7519
|
+
#
|
7520
|
+
# @!attribute [rw] s3_url
|
7521
|
+
# @return [String]
|
7522
|
+
#
|
7523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailAttachment AWS API Documentation
|
7524
|
+
#
|
7525
|
+
class EmailAttachment < Struct.new(
|
7526
|
+
:file_name,
|
7527
|
+
:s3_url)
|
7528
|
+
SENSITIVE = []
|
7529
|
+
include Aws::Structure
|
7530
|
+
end
|
7531
|
+
|
7532
|
+
# @!attribute [rw] name
|
7533
|
+
# @return [String]
|
7534
|
+
#
|
7535
|
+
# @!attribute [rw] arn
|
7536
|
+
# @return [String]
|
7537
|
+
#
|
7538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailMessageReference AWS API Documentation
|
7539
|
+
#
|
7540
|
+
class EmailMessageReference < Struct.new(
|
7541
|
+
:name,
|
7542
|
+
:arn)
|
7543
|
+
SENSITIVE = []
|
7544
|
+
include Aws::Structure
|
7545
|
+
end
|
7546
|
+
|
7547
|
+
# @!attribute [rw] address
|
7548
|
+
# @return [String]
|
7549
|
+
#
|
7550
|
+
# @!attribute [rw] display_name
|
7551
|
+
# @return [String]
|
7552
|
+
#
|
7553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailRecipient AWS API Documentation
|
7554
|
+
#
|
7555
|
+
class EmailRecipient < Struct.new(
|
7556
|
+
:address,
|
7557
|
+
:display_name)
|
7558
|
+
SENSITIVE = []
|
7559
|
+
include Aws::Structure
|
7560
|
+
end
|
7561
|
+
|
7562
|
+
# Information about a reference when the `referenceType` is `EMAIL`.
|
7563
|
+
# Otherwise, null.
|
7564
|
+
#
|
7565
|
+
# @!attribute [rw] name
|
7566
|
+
# Identifier of the email reference.
|
7567
|
+
# @return [String]
|
7568
|
+
#
|
7569
|
+
# @!attribute [rw] value
|
7570
|
+
# A valid email address.
|
7571
|
+
# @return [String]
|
7572
|
+
#
|
7573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailReference AWS API Documentation
|
7574
|
+
#
|
7575
|
+
class EmailReference < Struct.new(
|
7576
|
+
:name,
|
7577
|
+
:value)
|
7578
|
+
SENSITIVE = []
|
7579
|
+
include Aws::Structure
|
7580
|
+
end
|
7581
|
+
|
7582
|
+
# An empty value.
|
7583
|
+
#
|
7584
|
+
# @api private
|
7585
|
+
#
|
7586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmptyFieldValue AWS API Documentation
|
7152
7587
|
#
|
7153
7588
|
class EmptyFieldValue < Aws::EmptyStructure; end
|
7154
7589
|
|
@@ -7210,6 +7645,25 @@ module Aws::Connect
|
|
7210
7645
|
include Aws::Structure
|
7211
7646
|
end
|
7212
7647
|
|
7648
|
+
# @!attribute [rw] type
|
7649
|
+
# @return [String]
|
7650
|
+
#
|
7651
|
+
# @!attribute [rw] address
|
7652
|
+
# @return [String]
|
7653
|
+
#
|
7654
|
+
# @!attribute [rw] display_name
|
7655
|
+
# @return [String]
|
7656
|
+
#
|
7657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EndpointInfo AWS API Documentation
|
7658
|
+
#
|
7659
|
+
class EndpointInfo < Struct.new(
|
7660
|
+
:type,
|
7661
|
+
:address,
|
7662
|
+
:display_name)
|
7663
|
+
SENSITIVE = []
|
7664
|
+
include Aws::Structure
|
7665
|
+
end
|
7666
|
+
|
7213
7667
|
# This API is in preview release for Amazon Connect and is subject to
|
7214
7668
|
# change.
|
7215
7669
|
#
|
@@ -10687,6 +11141,9 @@ module Aws::Connect
|
|
10687
11141
|
# created by referencing this template.
|
10688
11142
|
# @return [String]
|
10689
11143
|
#
|
11144
|
+
# @!attribute [rw] self_assign_flow_id
|
11145
|
+
# @return [String]
|
11146
|
+
#
|
10690
11147
|
# @!attribute [rw] constraints
|
10691
11148
|
# Constraints that are applicable to the fields listed.
|
10692
11149
|
# @return [Types::TaskTemplateConstraints]
|
@@ -10730,6 +11187,7 @@ module Aws::Connect
|
|
10730
11187
|
:name,
|
10731
11188
|
:description,
|
10732
11189
|
:contact_flow_id,
|
11190
|
+
:self_assign_flow_id,
|
10733
11191
|
:constraints,
|
10734
11192
|
:defaults,
|
10735
11193
|
:fields,
|
@@ -11485,6 +11943,59 @@ module Aws::Connect
|
|
11485
11943
|
include Aws::Structure
|
11486
11944
|
end
|
11487
11945
|
|
11946
|
+
# @!attribute [rw] to_addresses
|
11947
|
+
# @return [Array<Types::EmailAddressInfo>]
|
11948
|
+
#
|
11949
|
+
# @!attribute [rw] cc_addresses
|
11950
|
+
# @return [Array<Types::EmailAddressInfo>]
|
11951
|
+
#
|
11952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundAdditionalRecipients AWS API Documentation
|
11953
|
+
#
|
11954
|
+
class InboundAdditionalRecipients < Struct.new(
|
11955
|
+
:to_addresses,
|
11956
|
+
:cc_addresses)
|
11957
|
+
SENSITIVE = []
|
11958
|
+
include Aws::Structure
|
11959
|
+
end
|
11960
|
+
|
11961
|
+
# @!attribute [rw] message_source_type
|
11962
|
+
# @return [String]
|
11963
|
+
#
|
11964
|
+
# @!attribute [rw] raw_message
|
11965
|
+
# @return [Types::InboundRawMessage]
|
11966
|
+
#
|
11967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundEmailContent AWS API Documentation
|
11968
|
+
#
|
11969
|
+
class InboundEmailContent < Struct.new(
|
11970
|
+
:message_source_type,
|
11971
|
+
:raw_message)
|
11972
|
+
SENSITIVE = []
|
11973
|
+
include Aws::Structure
|
11974
|
+
end
|
11975
|
+
|
11976
|
+
# @!attribute [rw] subject
|
11977
|
+
# @return [String]
|
11978
|
+
#
|
11979
|
+
# @!attribute [rw] body
|
11980
|
+
# @return [String]
|
11981
|
+
#
|
11982
|
+
# @!attribute [rw] content_type
|
11983
|
+
# @return [String]
|
11984
|
+
#
|
11985
|
+
# @!attribute [rw] headers
|
11986
|
+
# @return [Hash<String,String>]
|
11987
|
+
#
|
11988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InboundRawMessage AWS API Documentation
|
11989
|
+
#
|
11990
|
+
class InboundRawMessage < Struct.new(
|
11991
|
+
:subject,
|
11992
|
+
:body,
|
11993
|
+
:content_type,
|
11994
|
+
:headers)
|
11995
|
+
SENSITIVE = [:subject, :body]
|
11996
|
+
include Aws::Structure
|
11997
|
+
end
|
11998
|
+
|
11488
11999
|
# The Amazon Connect instance.
|
11489
12000
|
#
|
11490
12001
|
# @!attribute [rw] id
|
@@ -12160,6 +12671,44 @@ module Aws::Connect
|
|
12160
12671
|
include Aws::Structure
|
12161
12672
|
end
|
12162
12673
|
|
12674
|
+
# @!attribute [rw] instance_id
|
12675
|
+
# @return [String]
|
12676
|
+
#
|
12677
|
+
# @!attribute [rw] contact_id
|
12678
|
+
# @return [String]
|
12679
|
+
#
|
12680
|
+
# @!attribute [rw] max_results
|
12681
|
+
# @return [Integer]
|
12682
|
+
#
|
12683
|
+
# @!attribute [rw] next_token
|
12684
|
+
# @return [String]
|
12685
|
+
#
|
12686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAssociatedContactsRequest AWS API Documentation
|
12687
|
+
#
|
12688
|
+
class ListAssociatedContactsRequest < Struct.new(
|
12689
|
+
:instance_id,
|
12690
|
+
:contact_id,
|
12691
|
+
:max_results,
|
12692
|
+
:next_token)
|
12693
|
+
SENSITIVE = []
|
12694
|
+
include Aws::Structure
|
12695
|
+
end
|
12696
|
+
|
12697
|
+
# @!attribute [rw] contact_summary_list
|
12698
|
+
# @return [Array<Types::AssociatedContactSummary>]
|
12699
|
+
#
|
12700
|
+
# @!attribute [rw] next_token
|
12701
|
+
# @return [String]
|
12702
|
+
#
|
12703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAssociatedContactsResponse AWS API Documentation
|
12704
|
+
#
|
12705
|
+
class ListAssociatedContactsResponse < Struct.new(
|
12706
|
+
:contact_summary_list,
|
12707
|
+
:next_token)
|
12708
|
+
SENSITIVE = []
|
12709
|
+
include Aws::Structure
|
12710
|
+
end
|
12711
|
+
|
12163
12712
|
# @!attribute [rw] instance_id
|
12164
12713
|
# The identifier of the Amazon Connect instance. You can [find the
|
12165
12714
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -15054,6 +15603,17 @@ module Aws::Connect
|
|
15054
15603
|
include Aws::Structure
|
15055
15604
|
end
|
15056
15605
|
|
15606
|
+
# @!attribute [rw] cc_email_addresses
|
15607
|
+
# @return [Array<Types::EmailAddressInfo>]
|
15608
|
+
#
|
15609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundAdditionalRecipients AWS API Documentation
|
15610
|
+
#
|
15611
|
+
class OutboundAdditionalRecipients < Struct.new(
|
15612
|
+
:cc_email_addresses)
|
15613
|
+
SENSITIVE = []
|
15614
|
+
include Aws::Structure
|
15615
|
+
end
|
15616
|
+
|
15057
15617
|
# The outbound caller ID name, number, and outbound whisper flow.
|
15058
15618
|
#
|
15059
15619
|
# @!attribute [rw] outbound_caller_id_name
|
@@ -15092,6 +15652,55 @@ module Aws::Connect
|
|
15092
15652
|
include Aws::Structure
|
15093
15653
|
end
|
15094
15654
|
|
15655
|
+
# @!attribute [rw] outbound_email_address_id
|
15656
|
+
# @return [String]
|
15657
|
+
#
|
15658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundEmailConfig AWS API Documentation
|
15659
|
+
#
|
15660
|
+
class OutboundEmailConfig < Struct.new(
|
15661
|
+
:outbound_email_address_id)
|
15662
|
+
SENSITIVE = []
|
15663
|
+
include Aws::Structure
|
15664
|
+
end
|
15665
|
+
|
15666
|
+
# @!attribute [rw] message_source_type
|
15667
|
+
# @return [String]
|
15668
|
+
#
|
15669
|
+
# @!attribute [rw] templated_message_config
|
15670
|
+
# @return [Types::TemplatedMessageConfig]
|
15671
|
+
#
|
15672
|
+
# @!attribute [rw] raw_message
|
15673
|
+
# @return [Types::OutboundRawMessage]
|
15674
|
+
#
|
15675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundEmailContent AWS API Documentation
|
15676
|
+
#
|
15677
|
+
class OutboundEmailContent < Struct.new(
|
15678
|
+
:message_source_type,
|
15679
|
+
:templated_message_config,
|
15680
|
+
:raw_message)
|
15681
|
+
SENSITIVE = []
|
15682
|
+
include Aws::Structure
|
15683
|
+
end
|
15684
|
+
|
15685
|
+
# @!attribute [rw] subject
|
15686
|
+
# @return [String]
|
15687
|
+
#
|
15688
|
+
# @!attribute [rw] body
|
15689
|
+
# @return [String]
|
15690
|
+
#
|
15691
|
+
# @!attribute [rw] content_type
|
15692
|
+
# @return [String]
|
15693
|
+
#
|
15694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OutboundRawMessage AWS API Documentation
|
15695
|
+
#
|
15696
|
+
class OutboundRawMessage < Struct.new(
|
15697
|
+
:subject,
|
15698
|
+
:body,
|
15699
|
+
:content_type)
|
15700
|
+
SENSITIVE = [:subject, :body]
|
15701
|
+
include Aws::Structure
|
15702
|
+
end
|
15703
|
+
|
15095
15704
|
# Thrown for analyzed content when requested OutputType was not enabled
|
15096
15705
|
# for a given contact. For example, if an OutputType.Raw was requested
|
15097
15706
|
# for a contact that had `RedactedOnly` Redaction policy set in
|
@@ -15796,6 +16405,9 @@ module Aws::Connect
|
|
15796
16405
|
# The outbound caller ID name, number, and outbound whisper flow.
|
15797
16406
|
# @return [Types::OutboundCallerConfig]
|
15798
16407
|
#
|
16408
|
+
# @!attribute [rw] outbound_email_config
|
16409
|
+
# @return [Types::OutboundEmailConfig]
|
16410
|
+
#
|
15799
16411
|
# @!attribute [rw] hours_of_operation_id
|
15800
16412
|
# The identifier for the hours of operation.
|
15801
16413
|
# @return [String]
|
@@ -15832,6 +16444,7 @@ module Aws::Connect
|
|
15832
16444
|
:queue_id,
|
15833
16445
|
:description,
|
15834
16446
|
:outbound_caller_config,
|
16447
|
+
:outbound_email_config,
|
15835
16448
|
:hours_of_operation_id,
|
15836
16449
|
:max_contacts,
|
15837
16450
|
:status,
|
@@ -16684,11 +17297,23 @@ module Aws::Connect
|
|
16684
17297
|
# The type of the reference. `DATE` must be of type Epoch timestamp.
|
16685
17298
|
# @return [String]
|
16686
17299
|
#
|
17300
|
+
# @!attribute [rw] status
|
17301
|
+
# @return [String]
|
17302
|
+
#
|
17303
|
+
# @!attribute [rw] arn
|
17304
|
+
# @return [String]
|
17305
|
+
#
|
17306
|
+
# @!attribute [rw] status_reason
|
17307
|
+
# @return [String]
|
17308
|
+
#
|
16687
17309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Reference AWS API Documentation
|
16688
17310
|
#
|
16689
17311
|
class Reference < Struct.new(
|
16690
17312
|
:value,
|
16691
|
-
:type
|
17313
|
+
:type,
|
17314
|
+
:status,
|
17315
|
+
:arn,
|
17316
|
+
:status_reason)
|
16692
17317
|
SENSITIVE = []
|
16693
17318
|
include Aws::Structure
|
16694
17319
|
end
|
@@ -16709,6 +17334,9 @@ module Aws::Connect
|
|
16709
17334
|
# `ATTACHMENT`. Otherwise, null.
|
16710
17335
|
# @return [Types::AttachmentReference]
|
16711
17336
|
#
|
17337
|
+
# @!attribute [rw] email_message
|
17338
|
+
# @return [Types::EmailMessageReference]
|
17339
|
+
#
|
16712
17340
|
# @!attribute [rw] string
|
16713
17341
|
# Information about a reference when the `referenceType` is `STRING`.
|
16714
17342
|
# Otherwise, null.
|
@@ -16734,6 +17362,7 @@ module Aws::Connect
|
|
16734
17362
|
class ReferenceSummary < Struct.new(
|
16735
17363
|
:url,
|
16736
17364
|
:attachment,
|
17365
|
+
:email_message,
|
16737
17366
|
:string,
|
16738
17367
|
:number,
|
16739
17368
|
:date,
|
@@ -16745,6 +17374,7 @@ module Aws::Connect
|
|
16745
17374
|
|
16746
17375
|
class Url < ReferenceSummary; end
|
16747
17376
|
class Attachment < ReferenceSummary; end
|
17377
|
+
class EmailMessage < ReferenceSummary; end
|
16748
17378
|
class String < ReferenceSummary; end
|
16749
17379
|
class Number < ReferenceSummary; end
|
16750
17380
|
class Date < ReferenceSummary; end
|
@@ -18126,6 +18756,9 @@ module Aws::Connect
|
|
18126
18756
|
# [2]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-actions-as-permissions
|
18127
18757
|
# @return [Types::SearchableContactAttributes]
|
18128
18758
|
#
|
18759
|
+
# @!attribute [rw] searchable_segment_attributes
|
18760
|
+
# @return [Types::SearchableSegmentAttributes]
|
18761
|
+
#
|
18129
18762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
|
18130
18763
|
#
|
18131
18764
|
class SearchCriteria < Struct.new(
|
@@ -18135,29 +18768,76 @@ module Aws::Connect
|
|
18135
18768
|
:contact_analysis,
|
18136
18769
|
:initiation_methods,
|
18137
18770
|
:queue_ids,
|
18138
|
-
:searchable_contact_attributes
|
18771
|
+
:searchable_contact_attributes,
|
18772
|
+
:searchable_segment_attributes)
|
18139
18773
|
SENSITIVE = []
|
18140
18774
|
include Aws::Structure
|
18141
18775
|
end
|
18142
18776
|
|
18143
18777
|
# @!attribute [rw] instance_id
|
18144
|
-
# The identifier of the Amazon Connect instance. You can [find the
|
18145
|
-
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18146
|
-
#
|
18147
|
-
#
|
18148
|
-
#
|
18149
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18150
18778
|
# @return [String]
|
18151
18779
|
#
|
18780
|
+
# @!attribute [rw] max_results
|
18781
|
+
# @return [Integer]
|
18782
|
+
#
|
18152
18783
|
# @!attribute [rw] next_token
|
18153
|
-
# The token for the next set of results. Use the value returned in the
|
18154
|
-
# previous response in the next request to retrieve the next set of
|
18155
|
-
# results.
|
18156
18784
|
# @return [String]
|
18157
18785
|
#
|
18158
|
-
# @!attribute [rw]
|
18159
|
-
#
|
18160
|
-
#
|
18786
|
+
# @!attribute [rw] search_criteria
|
18787
|
+
# @return [Types::EmailAddressSearchCriteria]
|
18788
|
+
#
|
18789
|
+
# @!attribute [rw] search_filter
|
18790
|
+
# @return [Types::EmailAddressSearchFilter]
|
18791
|
+
#
|
18792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEmailAddressesRequest AWS API Documentation
|
18793
|
+
#
|
18794
|
+
class SearchEmailAddressesRequest < Struct.new(
|
18795
|
+
:instance_id,
|
18796
|
+
:max_results,
|
18797
|
+
:next_token,
|
18798
|
+
:search_criteria,
|
18799
|
+
:search_filter)
|
18800
|
+
SENSITIVE = []
|
18801
|
+
include Aws::Structure
|
18802
|
+
end
|
18803
|
+
|
18804
|
+
# @!attribute [rw] next_token
|
18805
|
+
# @return [String]
|
18806
|
+
#
|
18807
|
+
# @!attribute [rw] email_addresses
|
18808
|
+
# @return [Array<Types::EmailAddressMetadata>]
|
18809
|
+
#
|
18810
|
+
# @!attribute [rw] approximate_total_count
|
18811
|
+
# @return [Integer]
|
18812
|
+
#
|
18813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchEmailAddressesResponse AWS API Documentation
|
18814
|
+
#
|
18815
|
+
class SearchEmailAddressesResponse < Struct.new(
|
18816
|
+
:next_token,
|
18817
|
+
:email_addresses,
|
18818
|
+
:approximate_total_count)
|
18819
|
+
SENSITIVE = []
|
18820
|
+
include Aws::Structure
|
18821
|
+
end
|
18822
|
+
|
18823
|
+
# @!attribute [rw] instance_id
|
18824
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
18825
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18826
|
+
#
|
18827
|
+
#
|
18828
|
+
#
|
18829
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18830
|
+
# @return [String]
|
18831
|
+
#
|
18832
|
+
# @!attribute [rw] next_token
|
18833
|
+
# The token for the next set of results. Use the value returned in the
|
18834
|
+
# previous response in the next request to retrieve the next set of
|
18835
|
+
# results.
|
18836
|
+
# @return [String]
|
18837
|
+
#
|
18838
|
+
# @!attribute [rw] max_results
|
18839
|
+
# The maximum number of results to return per page.
|
18840
|
+
# @return [Integer]
|
18161
18841
|
#
|
18162
18842
|
# @!attribute [rw] search_filter
|
18163
18843
|
# Filters to be applied to search results.
|
@@ -18911,6 +19591,36 @@ module Aws::Connect
|
|
18911
19591
|
include Aws::Structure
|
18912
19592
|
end
|
18913
19593
|
|
19594
|
+
# @!attribute [rw] criteria
|
19595
|
+
# @return [Array<Types::SearchableSegmentAttributesCriteria>]
|
19596
|
+
#
|
19597
|
+
# @!attribute [rw] match_type
|
19598
|
+
# @return [String]
|
19599
|
+
#
|
19600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableSegmentAttributes AWS API Documentation
|
19601
|
+
#
|
19602
|
+
class SearchableSegmentAttributes < Struct.new(
|
19603
|
+
:criteria,
|
19604
|
+
:match_type)
|
19605
|
+
SENSITIVE = []
|
19606
|
+
include Aws::Structure
|
19607
|
+
end
|
19608
|
+
|
19609
|
+
# @!attribute [rw] key
|
19610
|
+
# @return [String]
|
19611
|
+
#
|
19612
|
+
# @!attribute [rw] values
|
19613
|
+
# @return [Array<String>]
|
19614
|
+
#
|
19615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableSegmentAttributesCriteria AWS API Documentation
|
19616
|
+
#
|
19617
|
+
class SearchableSegmentAttributesCriteria < Struct.new(
|
19618
|
+
:key,
|
19619
|
+
:values)
|
19620
|
+
SENSITIVE = [:key, :values]
|
19621
|
+
include Aws::Structure
|
19622
|
+
end
|
19623
|
+
|
18914
19624
|
# Configuration information of the security key.
|
18915
19625
|
#
|
18916
19626
|
# @!attribute [rw] association_id
|
@@ -19267,19 +19977,84 @@ module Aws::Connect
|
|
19267
19977
|
include Aws::Structure
|
19268
19978
|
end
|
19269
19979
|
|
19980
|
+
# @!attribute [rw] instance_id
|
19981
|
+
# @return [String]
|
19982
|
+
#
|
19983
|
+
# @!attribute [rw] from_email_address
|
19984
|
+
# @return [Types::EmailAddressInfo]
|
19985
|
+
#
|
19986
|
+
# @!attribute [rw] destination_email_address
|
19987
|
+
# @return [Types::EmailAddressInfo]
|
19988
|
+
#
|
19989
|
+
# @!attribute [rw] additional_recipients
|
19990
|
+
# @return [Types::OutboundAdditionalRecipients]
|
19991
|
+
#
|
19992
|
+
# @!attribute [rw] email_message
|
19993
|
+
# @return [Types::OutboundEmailContent]
|
19994
|
+
#
|
19995
|
+
# @!attribute [rw] traffic_type
|
19996
|
+
# @return [String]
|
19997
|
+
#
|
19998
|
+
# @!attribute [rw] source_campaign
|
19999
|
+
# @return [Types::SourceCampaign]
|
20000
|
+
#
|
20001
|
+
# @!attribute [rw] client_token
|
20002
|
+
# **A suitable default value is auto-generated.** You should normally
|
20003
|
+
# not need to pass this option.
|
20004
|
+
# @return [String]
|
20005
|
+
#
|
20006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendOutboundEmailRequest AWS API Documentation
|
20007
|
+
#
|
20008
|
+
class SendOutboundEmailRequest < Struct.new(
|
20009
|
+
:instance_id,
|
20010
|
+
:from_email_address,
|
20011
|
+
:destination_email_address,
|
20012
|
+
:additional_recipients,
|
20013
|
+
:email_message,
|
20014
|
+
:traffic_type,
|
20015
|
+
:source_campaign,
|
20016
|
+
:client_token)
|
20017
|
+
SENSITIVE = []
|
20018
|
+
include Aws::Structure
|
20019
|
+
end
|
20020
|
+
|
20021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendOutboundEmailResponse AWS API Documentation
|
20022
|
+
#
|
20023
|
+
class SendOutboundEmailResponse < Aws::EmptyStructure; end
|
20024
|
+
|
19270
20025
|
# The service quota has been exceeded.
|
19271
20026
|
#
|
19272
20027
|
# @!attribute [rw] message
|
19273
20028
|
# @return [String]
|
19274
20029
|
#
|
20030
|
+
# @!attribute [rw] reason
|
20031
|
+
# @return [Types::ServiceQuotaExceededExceptionReason]
|
20032
|
+
#
|
19275
20033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ServiceQuotaExceededException AWS API Documentation
|
19276
20034
|
#
|
19277
20035
|
class ServiceQuotaExceededException < Struct.new(
|
19278
|
-
:message
|
20036
|
+
:message,
|
20037
|
+
:reason)
|
19279
20038
|
SENSITIVE = []
|
19280
20039
|
include Aws::Structure
|
19281
20040
|
end
|
19282
20041
|
|
20042
|
+
# @!attribute [rw] attached_file_service_quota_exceeded_exception_reason
|
20043
|
+
# @return [String]
|
20044
|
+
#
|
20045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ServiceQuotaExceededExceptionReason AWS API Documentation
|
20046
|
+
#
|
20047
|
+
class ServiceQuotaExceededExceptionReason < Struct.new(
|
20048
|
+
:attached_file_service_quota_exceeded_exception_reason,
|
20049
|
+
:unknown)
|
20050
|
+
SENSITIVE = []
|
20051
|
+
include Aws::Structure
|
20052
|
+
include Aws::Structure::Union
|
20053
|
+
|
20054
|
+
class AttachedFileServiceQuotaExceededExceptionReason < ServiceQuotaExceededExceptionReason; end
|
20055
|
+
class Unknown < ServiceQuotaExceededExceptionReason; end
|
20056
|
+
end
|
20057
|
+
|
19283
20058
|
# The distribution that determines which Amazon Web Services Regions
|
19284
20059
|
# should be used to sign in agents in to both the instance and its
|
19285
20060
|
# replica(s).
|
@@ -19364,6 +20139,21 @@ module Aws::Connect
|
|
19364
20139
|
include Aws::Structure
|
19365
20140
|
end
|
19366
20141
|
|
20142
|
+
# @!attribute [rw] campaign_id
|
20143
|
+
# @return [String]
|
20144
|
+
#
|
20145
|
+
# @!attribute [rw] outbound_request_id
|
20146
|
+
# @return [String]
|
20147
|
+
#
|
20148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SourceCampaign AWS API Documentation
|
20149
|
+
#
|
20150
|
+
class SourceCampaign < Struct.new(
|
20151
|
+
:campaign_id,
|
20152
|
+
:outbound_request_id)
|
20153
|
+
SENSITIVE = []
|
20154
|
+
include Aws::Structure
|
20155
|
+
end
|
20156
|
+
|
19367
20157
|
# @!attribute [rw] client_token
|
19368
20158
|
# A unique, case-sensitive identifier that you provide to ensure the
|
19369
20159
|
# idempotency of the request. If not provided, the Amazon Web Services
|
@@ -19807,6 +20597,82 @@ module Aws::Connect
|
|
19807
20597
|
include Aws::Structure
|
19808
20598
|
end
|
19809
20599
|
|
20600
|
+
# @!attribute [rw] instance_id
|
20601
|
+
# @return [String]
|
20602
|
+
#
|
20603
|
+
# @!attribute [rw] from_email_address
|
20604
|
+
# @return [Types::EmailAddressInfo]
|
20605
|
+
#
|
20606
|
+
# @!attribute [rw] destination_email_address
|
20607
|
+
# @return [String]
|
20608
|
+
#
|
20609
|
+
# @!attribute [rw] description
|
20610
|
+
# @return [String]
|
20611
|
+
#
|
20612
|
+
# @!attribute [rw] references
|
20613
|
+
# @return [Hash<String,Types::Reference>]
|
20614
|
+
#
|
20615
|
+
# @!attribute [rw] name
|
20616
|
+
# @return [String]
|
20617
|
+
#
|
20618
|
+
# @!attribute [rw] email_message
|
20619
|
+
# @return [Types::InboundEmailContent]
|
20620
|
+
#
|
20621
|
+
# @!attribute [rw] additional_recipients
|
20622
|
+
# @return [Types::InboundAdditionalRecipients]
|
20623
|
+
#
|
20624
|
+
# @!attribute [rw] attachments
|
20625
|
+
# @return [Array<Types::EmailAttachment>]
|
20626
|
+
#
|
20627
|
+
# @!attribute [rw] contact_flow_id
|
20628
|
+
# @return [String]
|
20629
|
+
#
|
20630
|
+
# @!attribute [rw] related_contact_id
|
20631
|
+
# @return [String]
|
20632
|
+
#
|
20633
|
+
# @!attribute [rw] attributes
|
20634
|
+
# @return [Hash<String,String>]
|
20635
|
+
#
|
20636
|
+
# @!attribute [rw] segment_attributes
|
20637
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
20638
|
+
#
|
20639
|
+
# @!attribute [rw] client_token
|
20640
|
+
# **A suitable default value is auto-generated.** You should normally
|
20641
|
+
# not need to pass this option.
|
20642
|
+
# @return [String]
|
20643
|
+
#
|
20644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartEmailContactRequest AWS API Documentation
|
20645
|
+
#
|
20646
|
+
class StartEmailContactRequest < Struct.new(
|
20647
|
+
:instance_id,
|
20648
|
+
:from_email_address,
|
20649
|
+
:destination_email_address,
|
20650
|
+
:description,
|
20651
|
+
:references,
|
20652
|
+
:name,
|
20653
|
+
:email_message,
|
20654
|
+
:additional_recipients,
|
20655
|
+
:attachments,
|
20656
|
+
:contact_flow_id,
|
20657
|
+
:related_contact_id,
|
20658
|
+
:attributes,
|
20659
|
+
:segment_attributes,
|
20660
|
+
:client_token)
|
20661
|
+
SENSITIVE = [:destination_email_address, :description, :name, :attachments]
|
20662
|
+
include Aws::Structure
|
20663
|
+
end
|
20664
|
+
|
20665
|
+
# @!attribute [rw] contact_id
|
20666
|
+
# @return [String]
|
20667
|
+
#
|
20668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartEmailContactResponse AWS API Documentation
|
20669
|
+
#
|
20670
|
+
class StartEmailContactResponse < Struct.new(
|
20671
|
+
:contact_id)
|
20672
|
+
SENSITIVE = []
|
20673
|
+
include Aws::Structure
|
20674
|
+
end
|
20675
|
+
|
19810
20676
|
# @!attribute [rw] source_endpoint
|
19811
20677
|
# Information about the endpoint.
|
19812
20678
|
# @return [Types::Endpoint]
|
@@ -19941,6 +20807,54 @@ module Aws::Connect
|
|
19941
20807
|
include Aws::Structure
|
19942
20808
|
end
|
19943
20809
|
|
20810
|
+
# @!attribute [rw] instance_id
|
20811
|
+
# @return [String]
|
20812
|
+
#
|
20813
|
+
# @!attribute [rw] contact_id
|
20814
|
+
# @return [String]
|
20815
|
+
#
|
20816
|
+
# @!attribute [rw] from_email_address
|
20817
|
+
# @return [Types::EmailAddressInfo]
|
20818
|
+
#
|
20819
|
+
# @!attribute [rw] destination_email_address
|
20820
|
+
# @return [Types::EmailAddressInfo]
|
20821
|
+
#
|
20822
|
+
# @!attribute [rw] additional_recipients
|
20823
|
+
# @return [Types::OutboundAdditionalRecipients]
|
20824
|
+
#
|
20825
|
+
# @!attribute [rw] email_message
|
20826
|
+
# @return [Types::OutboundEmailContent]
|
20827
|
+
#
|
20828
|
+
# @!attribute [rw] client_token
|
20829
|
+
# **A suitable default value is auto-generated.** You should normally
|
20830
|
+
# not need to pass this option.
|
20831
|
+
# @return [String]
|
20832
|
+
#
|
20833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundEmailContactRequest AWS API Documentation
|
20834
|
+
#
|
20835
|
+
class StartOutboundEmailContactRequest < Struct.new(
|
20836
|
+
:instance_id,
|
20837
|
+
:contact_id,
|
20838
|
+
:from_email_address,
|
20839
|
+
:destination_email_address,
|
20840
|
+
:additional_recipients,
|
20841
|
+
:email_message,
|
20842
|
+
:client_token)
|
20843
|
+
SENSITIVE = []
|
20844
|
+
include Aws::Structure
|
20845
|
+
end
|
20846
|
+
|
20847
|
+
# @!attribute [rw] contact_id
|
20848
|
+
# @return [String]
|
20849
|
+
#
|
20850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundEmailContactResponse AWS API Documentation
|
20851
|
+
#
|
20852
|
+
class StartOutboundEmailContactResponse < Struct.new(
|
20853
|
+
:contact_id)
|
20854
|
+
SENSITIVE = []
|
20855
|
+
include Aws::Structure
|
20856
|
+
end
|
20857
|
+
|
19944
20858
|
# @!attribute [rw] name
|
19945
20859
|
# The name of a voice contact that is shown to an agent in the Contact
|
19946
20860
|
# Control Panel (CCP).
|
@@ -20231,6 +21145,9 @@ module Aws::Connect
|
|
20231
21145
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks
|
20232
21146
|
# @return [String]
|
20233
21147
|
#
|
21148
|
+
# @!attribute [rw] segment_attributes
|
21149
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
21150
|
+
#
|
20234
21151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
|
20235
21152
|
#
|
20236
21153
|
class StartTaskContactRequest < Struct.new(
|
@@ -20245,7 +21162,8 @@ module Aws::Connect
|
|
20245
21162
|
:scheduled_time,
|
20246
21163
|
:task_template_id,
|
20247
21164
|
:quick_connect_id,
|
20248
|
-
:related_contact_id
|
21165
|
+
:related_contact_id,
|
21166
|
+
:segment_attributes)
|
20249
21167
|
SENSITIVE = [:name, :description]
|
20250
21168
|
include Aws::Structure
|
20251
21169
|
end
|
@@ -20995,6 +21913,40 @@ module Aws::Connect
|
|
20995
21913
|
include Aws::Structure
|
20996
21914
|
end
|
20997
21915
|
|
21916
|
+
# @!attribute [rw] custom_attributes
|
21917
|
+
# @return [Hash<String,String>]
|
21918
|
+
#
|
21919
|
+
# @!attribute [rw] customer_profile_attributes
|
21920
|
+
# @return [String]
|
21921
|
+
#
|
21922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TemplateAttributes AWS API Documentation
|
21923
|
+
#
|
21924
|
+
class TemplateAttributes < Struct.new(
|
21925
|
+
:custom_attributes,
|
21926
|
+
:customer_profile_attributes)
|
21927
|
+
SENSITIVE = []
|
21928
|
+
include Aws::Structure
|
21929
|
+
end
|
21930
|
+
|
21931
|
+
# @!attribute [rw] knowledge_base_id
|
21932
|
+
# @return [String]
|
21933
|
+
#
|
21934
|
+
# @!attribute [rw] message_template_id
|
21935
|
+
# @return [String]
|
21936
|
+
#
|
21937
|
+
# @!attribute [rw] template_attributes
|
21938
|
+
# @return [Types::TemplateAttributes]
|
21939
|
+
#
|
21940
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TemplatedMessageConfig AWS API Documentation
|
21941
|
+
#
|
21942
|
+
class TemplatedMessageConfig < Struct.new(
|
21943
|
+
:knowledge_base_id,
|
21944
|
+
:message_template_id,
|
21945
|
+
:template_attributes)
|
21946
|
+
SENSITIVE = []
|
21947
|
+
include Aws::Structure
|
21948
|
+
end
|
21949
|
+
|
20998
21950
|
# Contains information about the threshold for service level metrics.
|
20999
21951
|
#
|
21000
21952
|
# @!attribute [rw] comparison
|
@@ -21859,6 +22811,9 @@ module Aws::Connect
|
|
21859
22811
|
# Panel (CCP).
|
21860
22812
|
# @return [Hash<String,Types::Reference>]
|
21861
22813
|
#
|
22814
|
+
# @!attribute [rw] segment_attributes
|
22815
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
22816
|
+
#
|
21862
22817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRequest AWS API Documentation
|
21863
22818
|
#
|
21864
22819
|
class UpdateContactRequest < Struct.new(
|
@@ -21866,7 +22821,8 @@ module Aws::Connect
|
|
21866
22821
|
:contact_id,
|
21867
22822
|
:name,
|
21868
22823
|
:description,
|
21869
|
-
:references
|
22824
|
+
:references,
|
22825
|
+
:segment_attributes)
|
21870
22826
|
SENSITIVE = [:name, :description]
|
21871
22827
|
include Aws::Structure
|
21872
22828
|
end
|
@@ -21956,6 +22912,48 @@ module Aws::Connect
|
|
21956
22912
|
#
|
21957
22913
|
class UpdateContactScheduleResponse < Aws::EmptyStructure; end
|
21958
22914
|
|
22915
|
+
# @!attribute [rw] instance_id
|
22916
|
+
# @return [String]
|
22917
|
+
#
|
22918
|
+
# @!attribute [rw] email_address_id
|
22919
|
+
# @return [String]
|
22920
|
+
#
|
22921
|
+
# @!attribute [rw] description
|
22922
|
+
# @return [String]
|
22923
|
+
#
|
22924
|
+
# @!attribute [rw] display_name
|
22925
|
+
# @return [String]
|
22926
|
+
#
|
22927
|
+
# @!attribute [rw] client_token
|
22928
|
+
# @return [String]
|
22929
|
+
#
|
22930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateEmailAddressMetadataRequest AWS API Documentation
|
22931
|
+
#
|
22932
|
+
class UpdateEmailAddressMetadataRequest < Struct.new(
|
22933
|
+
:instance_id,
|
22934
|
+
:email_address_id,
|
22935
|
+
:description,
|
22936
|
+
:display_name,
|
22937
|
+
:client_token)
|
22938
|
+
SENSITIVE = [:description, :display_name]
|
22939
|
+
include Aws::Structure
|
22940
|
+
end
|
22941
|
+
|
22942
|
+
# @!attribute [rw] email_address_id
|
22943
|
+
# @return [String]
|
22944
|
+
#
|
22945
|
+
# @!attribute [rw] email_address_arn
|
22946
|
+
# @return [String]
|
22947
|
+
#
|
22948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateEmailAddressMetadataResponse AWS API Documentation
|
22949
|
+
#
|
22950
|
+
class UpdateEmailAddressMetadataResponse < Struct.new(
|
22951
|
+
:email_address_id,
|
22952
|
+
:email_address_arn)
|
22953
|
+
SENSITIVE = []
|
22954
|
+
include Aws::Structure
|
22955
|
+
end
|
22956
|
+
|
21959
22957
|
# @!attribute [rw] instance_id
|
21960
22958
|
# The identifier of the Amazon Connect instance. You can [find the
|
21961
22959
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -22499,6 +23497,25 @@ module Aws::Connect
|
|
22499
23497
|
include Aws::Structure
|
22500
23498
|
end
|
22501
23499
|
|
23500
|
+
# @!attribute [rw] instance_id
|
23501
|
+
# @return [String]
|
23502
|
+
#
|
23503
|
+
# @!attribute [rw] queue_id
|
23504
|
+
# @return [String]
|
23505
|
+
#
|
23506
|
+
# @!attribute [rw] outbound_email_config
|
23507
|
+
# @return [Types::OutboundEmailConfig]
|
23508
|
+
#
|
23509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueOutboundEmailConfigRequest AWS API Documentation
|
23510
|
+
#
|
23511
|
+
class UpdateQueueOutboundEmailConfigRequest < Struct.new(
|
23512
|
+
:instance_id,
|
23513
|
+
:queue_id,
|
23514
|
+
:outbound_email_config)
|
23515
|
+
SENSITIVE = []
|
23516
|
+
include Aws::Structure
|
23517
|
+
end
|
23518
|
+
|
22502
23519
|
# @!attribute [rw] instance_id
|
22503
23520
|
# The identifier of the Amazon Connect instance. You can [find the
|
22504
23521
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -22870,6 +23887,9 @@ module Aws::Connect
|
|
22870
23887
|
# created by referencing this template.
|
22871
23888
|
# @return [String]
|
22872
23889
|
#
|
23890
|
+
# @!attribute [rw] self_assign_flow_id
|
23891
|
+
# @return [String]
|
23892
|
+
#
|
22873
23893
|
# @!attribute [rw] constraints
|
22874
23894
|
# Constraints that are applicable to the fields listed.
|
22875
23895
|
# @return [Types::TaskTemplateConstraints]
|
@@ -22898,6 +23918,7 @@ module Aws::Connect
|
|
22898
23918
|
:name,
|
22899
23919
|
:description,
|
22900
23920
|
:contact_flow_id,
|
23921
|
+
:self_assign_flow_id,
|
22901
23922
|
:constraints,
|
22902
23923
|
:defaults,
|
22903
23924
|
:status,
|
@@ -22936,6 +23957,9 @@ module Aws::Connect
|
|
22936
23957
|
# created by referencing this template.
|
22937
23958
|
# @return [String]
|
22938
23959
|
#
|
23960
|
+
# @!attribute [rw] self_assign_flow_id
|
23961
|
+
# @return [String]
|
23962
|
+
#
|
22939
23963
|
# @!attribute [rw] constraints
|
22940
23964
|
# Constraints that are applicable to the fields listed.
|
22941
23965
|
# @return [Types::TaskTemplateConstraints]
|
@@ -22973,6 +23997,7 @@ module Aws::Connect
|
|
22973
23997
|
:name,
|
22974
23998
|
:description,
|
22975
23999
|
:contact_flow_id,
|
24000
|
+
:self_assign_flow_id,
|
22976
24001
|
:constraints,
|
22977
24002
|
:defaults,
|
22978
24003
|
:fields,
|
@@ -23681,6 +24706,17 @@ module Aws::Connect
|
|
23681
24706
|
include Aws::Structure
|
23682
24707
|
end
|
23683
24708
|
|
24709
|
+
# @!attribute [rw] user_id
|
24710
|
+
# @return [String]
|
24711
|
+
#
|
24712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserInfo AWS API Documentation
|
24713
|
+
#
|
24714
|
+
class UserInfo < Struct.new(
|
24715
|
+
:user_id)
|
24716
|
+
SENSITIVE = []
|
24717
|
+
include Aws::Structure
|
24718
|
+
end
|
24719
|
+
|
23684
24720
|
# No user with the specified credentials was found in the Amazon Connect
|
23685
24721
|
# instance.
|
23686
24722
|
#
|