aws-sdk-connect 1.188.0 → 1.190.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +543 -3
- data/lib/aws-sdk-connect/client_api.rb +316 -0
- data/lib/aws-sdk-connect/types.rb +672 -4
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +190 -1
- data/sig/types.rbs +179 -0
- metadata +2 -2
@@ -2232,7 +2232,7 @@ module Aws::Connect
|
|
2232
2232
|
include Aws::Structure
|
2233
2233
|
end
|
2234
2234
|
|
2235
|
-
#
|
2235
|
+
# Request processing failed because dependent condition failed.
|
2236
2236
|
#
|
2237
2237
|
# @!attribute [rw] message
|
2238
2238
|
# @return [String]
|
@@ -2524,6 +2524,36 @@ module Aws::Connect
|
|
2524
2524
|
include Aws::Structure
|
2525
2525
|
end
|
2526
2526
|
|
2527
|
+
# The contact configuration for push notification registration.
|
2528
|
+
#
|
2529
|
+
# @!attribute [rw] contact_id
|
2530
|
+
# The identifier of the contact within the Amazon Connect instance.
|
2531
|
+
# @return [String]
|
2532
|
+
#
|
2533
|
+
# @!attribute [rw] participant_role
|
2534
|
+
# The role of the participant in the chat conversation.
|
2535
|
+
#
|
2536
|
+
# <note markdown="1"> Only `CUSTOMER` is currently supported. Any other values other than
|
2537
|
+
# `CUSTOMER` will result in an exception (4xx error).
|
2538
|
+
#
|
2539
|
+
# </note>
|
2540
|
+
# @return [String]
|
2541
|
+
#
|
2542
|
+
# @!attribute [rw] include_raw_message
|
2543
|
+
# Whether to include raw connect message in the push notification
|
2544
|
+
# payload. Default is `False`.
|
2545
|
+
# @return [Boolean]
|
2546
|
+
#
|
2547
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactConfiguration AWS API Documentation
|
2548
|
+
#
|
2549
|
+
class ContactConfiguration < Struct.new(
|
2550
|
+
:contact_id,
|
2551
|
+
:participant_role,
|
2552
|
+
:include_raw_message)
|
2553
|
+
SENSITIVE = []
|
2554
|
+
include Aws::Structure
|
2555
|
+
end
|
2556
|
+
|
2527
2557
|
# Request object with information to create a contact.
|
2528
2558
|
#
|
2529
2559
|
# @!attribute [rw] system_endpoint
|
@@ -2754,12 +2784,22 @@ module Aws::Connect
|
|
2754
2784
|
# condition.
|
2755
2785
|
# @return [Types::StringCondition]
|
2756
2786
|
#
|
2787
|
+
# @!attribute [rw] state_condition
|
2788
|
+
# The state of the flow.
|
2789
|
+
# @return [String]
|
2790
|
+
#
|
2791
|
+
# @!attribute [rw] status_condition
|
2792
|
+
# The status of the flow.
|
2793
|
+
# @return [String]
|
2794
|
+
#
|
2757
2795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleSearchCriteria AWS API Documentation
|
2758
2796
|
#
|
2759
2797
|
class ContactFlowModuleSearchCriteria < Struct.new(
|
2760
2798
|
:or_conditions,
|
2761
2799
|
:and_conditions,
|
2762
|
-
:string_condition
|
2800
|
+
:string_condition,
|
2801
|
+
:state_condition,
|
2802
|
+
:status_condition)
|
2763
2803
|
SENSITIVE = []
|
2764
2804
|
include Aws::Structure
|
2765
2805
|
end
|
@@ -3792,6 +3832,63 @@ module Aws::Connect
|
|
3792
3832
|
include Aws::Structure
|
3793
3833
|
end
|
3794
3834
|
|
3835
|
+
# @!attribute [rw] instance_id
|
3836
|
+
# The identifier of the Amazon Connect instance.
|
3837
|
+
# @return [String]
|
3838
|
+
#
|
3839
|
+
# @!attribute [rw] hours_of_operation_id
|
3840
|
+
# The identifier for the hours of operation
|
3841
|
+
# @return [String]
|
3842
|
+
#
|
3843
|
+
# @!attribute [rw] name
|
3844
|
+
# The name of the hours of operation override.
|
3845
|
+
# @return [String]
|
3846
|
+
#
|
3847
|
+
# @!attribute [rw] description
|
3848
|
+
# The description of the hours of operation override.
|
3849
|
+
# @return [String]
|
3850
|
+
#
|
3851
|
+
# @!attribute [rw] config
|
3852
|
+
# Configuration information for the hours of operation override: day,
|
3853
|
+
# start time, and end time.
|
3854
|
+
# @return [Array<Types::HoursOfOperationOverrideConfig>]
|
3855
|
+
#
|
3856
|
+
# @!attribute [rw] effective_from
|
3857
|
+
# The date from when the hours of operation override would be
|
3858
|
+
# effective.
|
3859
|
+
# @return [String]
|
3860
|
+
#
|
3861
|
+
# @!attribute [rw] effective_till
|
3862
|
+
# The date until when the hours of operation override would be
|
3863
|
+
# effective.
|
3864
|
+
# @return [String]
|
3865
|
+
#
|
3866
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverrideRequest AWS API Documentation
|
3867
|
+
#
|
3868
|
+
class CreateHoursOfOperationOverrideRequest < Struct.new(
|
3869
|
+
:instance_id,
|
3870
|
+
:hours_of_operation_id,
|
3871
|
+
:name,
|
3872
|
+
:description,
|
3873
|
+
:config,
|
3874
|
+
:effective_from,
|
3875
|
+
:effective_till)
|
3876
|
+
SENSITIVE = []
|
3877
|
+
include Aws::Structure
|
3878
|
+
end
|
3879
|
+
|
3880
|
+
# @!attribute [rw] hours_of_operation_override_id
|
3881
|
+
# The identifier for the hours of operation override.
|
3882
|
+
# @return [String]
|
3883
|
+
#
|
3884
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverrideResponse AWS API Documentation
|
3885
|
+
#
|
3886
|
+
class CreateHoursOfOperationOverrideResponse < Struct.new(
|
3887
|
+
:hours_of_operation_override_id)
|
3888
|
+
SENSITIVE = []
|
3889
|
+
include Aws::Structure
|
3890
|
+
end
|
3891
|
+
|
3795
3892
|
# @!attribute [rw] instance_id
|
3796
3893
|
# The identifier of the Amazon Connect instance. You can [find the
|
3797
3894
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -4262,6 +4359,70 @@ module Aws::Connect
|
|
4262
4359
|
include Aws::Structure
|
4263
4360
|
end
|
4264
4361
|
|
4362
|
+
# @!attribute [rw] instance_id
|
4363
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4364
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4365
|
+
#
|
4366
|
+
#
|
4367
|
+
#
|
4368
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4369
|
+
# @return [String]
|
4370
|
+
#
|
4371
|
+
# @!attribute [rw] client_token
|
4372
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
4373
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
4374
|
+
# SDK populates this field. For more information about idempotency,
|
4375
|
+
# see [Making retries safe with idempotent APIs][1].
|
4376
|
+
#
|
4377
|
+
# **A suitable default value is auto-generated.** You should normally
|
4378
|
+
# not need to pass this option.
|
4379
|
+
#
|
4380
|
+
#
|
4381
|
+
#
|
4382
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
4383
|
+
# @return [String]
|
4384
|
+
#
|
4385
|
+
# @!attribute [rw] pinpoint_app_arn
|
4386
|
+
# The Amazon Resource Name (ARN) of the Pinpoint application.
|
4387
|
+
# @return [String]
|
4388
|
+
#
|
4389
|
+
# @!attribute [rw] device_token
|
4390
|
+
# The push notification token issued by the Apple or Google gateways.
|
4391
|
+
# @return [String]
|
4392
|
+
#
|
4393
|
+
# @!attribute [rw] device_type
|
4394
|
+
# The device type to use when sending the message.
|
4395
|
+
# @return [String]
|
4396
|
+
#
|
4397
|
+
# @!attribute [rw] contact_configuration
|
4398
|
+
# The contact configuration for push notification registration.
|
4399
|
+
# @return [Types::ContactConfiguration]
|
4400
|
+
#
|
4401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePushNotificationRegistrationRequest AWS API Documentation
|
4402
|
+
#
|
4403
|
+
class CreatePushNotificationRegistrationRequest < Struct.new(
|
4404
|
+
:instance_id,
|
4405
|
+
:client_token,
|
4406
|
+
:pinpoint_app_arn,
|
4407
|
+
:device_token,
|
4408
|
+
:device_type,
|
4409
|
+
:contact_configuration)
|
4410
|
+
SENSITIVE = []
|
4411
|
+
include Aws::Structure
|
4412
|
+
end
|
4413
|
+
|
4414
|
+
# @!attribute [rw] registration_id
|
4415
|
+
# The identifier for the registration.
|
4416
|
+
# @return [String]
|
4417
|
+
#
|
4418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePushNotificationRegistrationResponse AWS API Documentation
|
4419
|
+
#
|
4420
|
+
class CreatePushNotificationRegistrationResponse < Struct.new(
|
4421
|
+
:registration_id)
|
4422
|
+
SENSITIVE = []
|
4423
|
+
include Aws::Structure
|
4424
|
+
end
|
4425
|
+
|
4265
4426
|
# @!attribute [rw] instance_id
|
4266
4427
|
# The identifier of the Amazon Connect instance. You can [find the
|
4267
4428
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -5449,6 +5610,31 @@ module Aws::Connect
|
|
5449
5610
|
include Aws::Structure
|
5450
5611
|
end
|
5451
5612
|
|
5613
|
+
# An object to specify the hours of operation override date condition.
|
5614
|
+
#
|
5615
|
+
# @!attribute [rw] field_name
|
5616
|
+
# An object to specify the hours of operation override date field.
|
5617
|
+
# @return [String]
|
5618
|
+
#
|
5619
|
+
# @!attribute [rw] value
|
5620
|
+
# An object to specify the hours of operation override date value.
|
5621
|
+
# @return [String]
|
5622
|
+
#
|
5623
|
+
# @!attribute [rw] comparison_type
|
5624
|
+
# An object to specify the hours of operation override date condition
|
5625
|
+
# `comparisonType`.
|
5626
|
+
# @return [String]
|
5627
|
+
#
|
5628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DateCondition AWS API Documentation
|
5629
|
+
#
|
5630
|
+
class DateCondition < Struct.new(
|
5631
|
+
:field_name,
|
5632
|
+
:value,
|
5633
|
+
:comparison_type)
|
5634
|
+
SENSITIVE = []
|
5635
|
+
include Aws::Structure
|
5636
|
+
end
|
5637
|
+
|
5452
5638
|
# Information about a reference when the `referenceType` is `DATE`.
|
5453
5639
|
# Otherwise, null.
|
5454
5640
|
#
|
@@ -5725,6 +5911,28 @@ module Aws::Connect
|
|
5725
5911
|
include Aws::Structure
|
5726
5912
|
end
|
5727
5913
|
|
5914
|
+
# @!attribute [rw] instance_id
|
5915
|
+
# The identifier of the Amazon Connect instance.
|
5916
|
+
# @return [String]
|
5917
|
+
#
|
5918
|
+
# @!attribute [rw] hours_of_operation_id
|
5919
|
+
# The identifier for the hours of operation.
|
5920
|
+
# @return [String]
|
5921
|
+
#
|
5922
|
+
# @!attribute [rw] hours_of_operation_override_id
|
5923
|
+
# The identifier for the hours of operation override.
|
5924
|
+
# @return [String]
|
5925
|
+
#
|
5926
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteHoursOfOperationOverrideRequest AWS API Documentation
|
5927
|
+
#
|
5928
|
+
class DeleteHoursOfOperationOverrideRequest < Struct.new(
|
5929
|
+
:instance_id,
|
5930
|
+
:hours_of_operation_id,
|
5931
|
+
:hours_of_operation_override_id)
|
5932
|
+
SENSITIVE = []
|
5933
|
+
include Aws::Structure
|
5934
|
+
end
|
5935
|
+
|
5728
5936
|
# @!attribute [rw] instance_id
|
5729
5937
|
# The identifier of the Amazon Connect instance. You can [find the
|
5730
5938
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -5826,6 +6034,37 @@ module Aws::Connect
|
|
5826
6034
|
include Aws::Structure
|
5827
6035
|
end
|
5828
6036
|
|
6037
|
+
# @!attribute [rw] instance_id
|
6038
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
6039
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
6040
|
+
#
|
6041
|
+
#
|
6042
|
+
#
|
6043
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
6044
|
+
# @return [String]
|
6045
|
+
#
|
6046
|
+
# @!attribute [rw] registration_id
|
6047
|
+
# The identifier for the registration.
|
6048
|
+
# @return [String]
|
6049
|
+
#
|
6050
|
+
# @!attribute [rw] contact_id
|
6051
|
+
# The identifier of the contact within the Amazon Connect instance.
|
6052
|
+
# @return [String]
|
6053
|
+
#
|
6054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeletePushNotificationRegistrationRequest AWS API Documentation
|
6055
|
+
#
|
6056
|
+
class DeletePushNotificationRegistrationRequest < Struct.new(
|
6057
|
+
:instance_id,
|
6058
|
+
:registration_id,
|
6059
|
+
:contact_id)
|
6060
|
+
SENSITIVE = []
|
6061
|
+
include Aws::Structure
|
6062
|
+
end
|
6063
|
+
|
6064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeletePushNotificationRegistrationResponse AWS API Documentation
|
6065
|
+
#
|
6066
|
+
class DeletePushNotificationRegistrationResponse < Aws::EmptyStructure; end
|
6067
|
+
|
5829
6068
|
# @!attribute [rw] instance_id
|
5830
6069
|
# The identifier of the Amazon Connect instance. You can [find the
|
5831
6070
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -6459,6 +6698,40 @@ module Aws::Connect
|
|
6459
6698
|
include Aws::Structure
|
6460
6699
|
end
|
6461
6700
|
|
6701
|
+
# @!attribute [rw] instance_id
|
6702
|
+
# The identifier of the Amazon Connect instance.
|
6703
|
+
# @return [String]
|
6704
|
+
#
|
6705
|
+
# @!attribute [rw] hours_of_operation_id
|
6706
|
+
# The identifier for the hours of operation.
|
6707
|
+
# @return [String]
|
6708
|
+
#
|
6709
|
+
# @!attribute [rw] hours_of_operation_override_id
|
6710
|
+
# The identifier for the hours of operation override.
|
6711
|
+
# @return [String]
|
6712
|
+
#
|
6713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperationOverrideRequest AWS API Documentation
|
6714
|
+
#
|
6715
|
+
class DescribeHoursOfOperationOverrideRequest < Struct.new(
|
6716
|
+
:instance_id,
|
6717
|
+
:hours_of_operation_id,
|
6718
|
+
:hours_of_operation_override_id)
|
6719
|
+
SENSITIVE = []
|
6720
|
+
include Aws::Structure
|
6721
|
+
end
|
6722
|
+
|
6723
|
+
# @!attribute [rw] hours_of_operation_override
|
6724
|
+
# Information about the hours of operations override.
|
6725
|
+
# @return [Types::HoursOfOperationOverride]
|
6726
|
+
#
|
6727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperationOverrideResponse AWS API Documentation
|
6728
|
+
#
|
6729
|
+
class DescribeHoursOfOperationOverrideResponse < Struct.new(
|
6730
|
+
:hours_of_operation_override)
|
6731
|
+
SENSITIVE = []
|
6732
|
+
include Aws::Structure
|
6733
|
+
end
|
6734
|
+
|
6462
6735
|
# @!attribute [rw] instance_id
|
6463
6736
|
# The identifier of the Amazon Connect instance. You can [find the
|
6464
6737
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -7590,6 +7863,27 @@ module Aws::Connect
|
|
7590
7863
|
include Aws::Structure
|
7591
7864
|
end
|
7592
7865
|
|
7866
|
+
# Information about the hours of operations with the effective override
|
7867
|
+
# applied.
|
7868
|
+
#
|
7869
|
+
# @!attribute [rw] date
|
7870
|
+
# The date that the hours of operation or overrides applies to.
|
7871
|
+
# @return [String]
|
7872
|
+
#
|
7873
|
+
# @!attribute [rw] operational_hours
|
7874
|
+
# Information about the hours of operations with the effective
|
7875
|
+
# override applied.
|
7876
|
+
# @return [Array<Types::OperationalHour>]
|
7877
|
+
#
|
7878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EffectiveHoursOfOperations AWS API Documentation
|
7879
|
+
#
|
7880
|
+
class EffectiveHoursOfOperations < Struct.new(
|
7881
|
+
:date,
|
7882
|
+
:operational_hours)
|
7883
|
+
SENSITIVE = []
|
7884
|
+
include Aws::Structure
|
7885
|
+
end
|
7886
|
+
|
7593
7887
|
# Contains information about a source or destination email address
|
7594
7888
|
#
|
7595
7889
|
# @!attribute [rw] email_address
|
@@ -9444,6 +9738,50 @@ module Aws::Connect
|
|
9444
9738
|
include Aws::Structure
|
9445
9739
|
end
|
9446
9740
|
|
9741
|
+
# @!attribute [rw] instance_id
|
9742
|
+
# The identifier of the Amazon Connect instance.
|
9743
|
+
# @return [String]
|
9744
|
+
#
|
9745
|
+
# @!attribute [rw] hours_of_operation_id
|
9746
|
+
# The identifier for the hours of operation.
|
9747
|
+
# @return [String]
|
9748
|
+
#
|
9749
|
+
# @!attribute [rw] from_date
|
9750
|
+
# The Date from when the hours of operation are listed.
|
9751
|
+
# @return [String]
|
9752
|
+
#
|
9753
|
+
# @!attribute [rw] to_date
|
9754
|
+
# The Date until when the hours of operation are listed.
|
9755
|
+
# @return [String]
|
9756
|
+
#
|
9757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperationsRequest AWS API Documentation
|
9758
|
+
#
|
9759
|
+
class GetEffectiveHoursOfOperationsRequest < Struct.new(
|
9760
|
+
:instance_id,
|
9761
|
+
:hours_of_operation_id,
|
9762
|
+
:from_date,
|
9763
|
+
:to_date)
|
9764
|
+
SENSITIVE = []
|
9765
|
+
include Aws::Structure
|
9766
|
+
end
|
9767
|
+
|
9768
|
+
# @!attribute [rw] effective_hours_of_operation_list
|
9769
|
+
# Information about the effective hours of operations
|
9770
|
+
# @return [Array<Types::EffectiveHoursOfOperations>]
|
9771
|
+
#
|
9772
|
+
# @!attribute [rw] time_zone
|
9773
|
+
# The time zone for the hours of operation.
|
9774
|
+
# @return [String]
|
9775
|
+
#
|
9776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperationsResponse AWS API Documentation
|
9777
|
+
#
|
9778
|
+
class GetEffectiveHoursOfOperationsResponse < Struct.new(
|
9779
|
+
:effective_hours_of_operation_list,
|
9780
|
+
:time_zone)
|
9781
|
+
SENSITIVE = []
|
9782
|
+
include Aws::Structure
|
9783
|
+
end
|
9784
|
+
|
9447
9785
|
# @!attribute [rw] instance_id
|
9448
9786
|
# The identifier of the Amazon Connect instance. You can [find the
|
9449
9787
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -12059,6 +12397,118 @@ module Aws::Connect
|
|
12059
12397
|
include Aws::Structure
|
12060
12398
|
end
|
12061
12399
|
|
12400
|
+
# Information about the hours of operations override.
|
12401
|
+
#
|
12402
|
+
# @!attribute [rw] hours_of_operation_override_id
|
12403
|
+
# The identifier for the hours of operation override.
|
12404
|
+
# @return [String]
|
12405
|
+
#
|
12406
|
+
# @!attribute [rw] hours_of_operation_id
|
12407
|
+
# The identifier for the hours of operation.
|
12408
|
+
# @return [String]
|
12409
|
+
#
|
12410
|
+
# @!attribute [rw] hours_of_operation_arn
|
12411
|
+
# The Amazon Resource Name (ARN) for the hours of operation.
|
12412
|
+
# @return [String]
|
12413
|
+
#
|
12414
|
+
# @!attribute [rw] name
|
12415
|
+
# The name of the hours of operation override.
|
12416
|
+
# @return [String]
|
12417
|
+
#
|
12418
|
+
# @!attribute [rw] description
|
12419
|
+
# The description of the hours of operation override.
|
12420
|
+
# @return [String]
|
12421
|
+
#
|
12422
|
+
# @!attribute [rw] config
|
12423
|
+
# Configuration information for the hours of operation override: day,
|
12424
|
+
# start time, and end time.
|
12425
|
+
# @return [Array<Types::HoursOfOperationOverrideConfig>]
|
12426
|
+
#
|
12427
|
+
# @!attribute [rw] effective_from
|
12428
|
+
# The date from which the hours of operation override would be
|
12429
|
+
# effective.
|
12430
|
+
# @return [String]
|
12431
|
+
#
|
12432
|
+
# @!attribute [rw] effective_till
|
12433
|
+
# The date till which the hours of operation override would be
|
12434
|
+
# effective.
|
12435
|
+
# @return [String]
|
12436
|
+
#
|
12437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverride AWS API Documentation
|
12438
|
+
#
|
12439
|
+
class HoursOfOperationOverride < Struct.new(
|
12440
|
+
:hours_of_operation_override_id,
|
12441
|
+
:hours_of_operation_id,
|
12442
|
+
:hours_of_operation_arn,
|
12443
|
+
:name,
|
12444
|
+
:description,
|
12445
|
+
:config,
|
12446
|
+
:effective_from,
|
12447
|
+
:effective_till)
|
12448
|
+
SENSITIVE = []
|
12449
|
+
include Aws::Structure
|
12450
|
+
end
|
12451
|
+
|
12452
|
+
# Information about the hours of operation override config: day, start
|
12453
|
+
# time, and end time.
|
12454
|
+
#
|
12455
|
+
# @!attribute [rw] day
|
12456
|
+
# The day that the hours of operation override applies to.
|
12457
|
+
# @return [String]
|
12458
|
+
#
|
12459
|
+
# @!attribute [rw] start_time
|
12460
|
+
# The start time when your contact center opens if overrides are
|
12461
|
+
# applied.
|
12462
|
+
# @return [Types::OverrideTimeSlice]
|
12463
|
+
#
|
12464
|
+
# @!attribute [rw] end_time
|
12465
|
+
# The end time that your contact center closes if overrides are
|
12466
|
+
# applied.
|
12467
|
+
# @return [Types::OverrideTimeSlice]
|
12468
|
+
#
|
12469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverrideConfig AWS API Documentation
|
12470
|
+
#
|
12471
|
+
class HoursOfOperationOverrideConfig < Struct.new(
|
12472
|
+
:day,
|
12473
|
+
:start_time,
|
12474
|
+
:end_time)
|
12475
|
+
SENSITIVE = []
|
12476
|
+
include Aws::Structure
|
12477
|
+
end
|
12478
|
+
|
12479
|
+
# The search criteria to be used to return hours of operations
|
12480
|
+
# overrides.
|
12481
|
+
#
|
12482
|
+
# @!attribute [rw] or_conditions
|
12483
|
+
# A list of conditions which would be applied together with an OR
|
12484
|
+
# condition.
|
12485
|
+
# @return [Array<Types::HoursOfOperationOverrideSearchCriteria>]
|
12486
|
+
#
|
12487
|
+
# @!attribute [rw] and_conditions
|
12488
|
+
# A list of conditions which would be applied together with an AND
|
12489
|
+
# condition.
|
12490
|
+
# @return [Array<Types::HoursOfOperationOverrideSearchCriteria>]
|
12491
|
+
#
|
12492
|
+
# @!attribute [rw] string_condition
|
12493
|
+
# A leaf node condition which can be used to specify a string
|
12494
|
+
# condition.
|
12495
|
+
# @return [Types::StringCondition]
|
12496
|
+
#
|
12497
|
+
# @!attribute [rw] date_condition
|
12498
|
+
# A leaf node condition which can be used to specify a date condition.
|
12499
|
+
# @return [Types::DateCondition]
|
12500
|
+
#
|
12501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationOverrideSearchCriteria AWS API Documentation
|
12502
|
+
#
|
12503
|
+
class HoursOfOperationOverrideSearchCriteria < Struct.new(
|
12504
|
+
:or_conditions,
|
12505
|
+
:and_conditions,
|
12506
|
+
:string_condition,
|
12507
|
+
:date_condition)
|
12508
|
+
SENSITIVE = []
|
12509
|
+
include Aws::Structure
|
12510
|
+
end
|
12511
|
+
|
12062
12512
|
# The search criteria to be used to return hours of operations.
|
12063
12513
|
#
|
12064
12514
|
# @!attribute [rw] or_conditions
|
@@ -13646,6 +14096,66 @@ module Aws::Connect
|
|
13646
14096
|
include Aws::Structure
|
13647
14097
|
end
|
13648
14098
|
|
14099
|
+
# @!attribute [rw] instance_id
|
14100
|
+
# The identifier of the Amazon Connect instance.
|
14101
|
+
# @return [String]
|
14102
|
+
#
|
14103
|
+
# @!attribute [rw] hours_of_operation_id
|
14104
|
+
# The identifier for the hours of operation
|
14105
|
+
# @return [String]
|
14106
|
+
#
|
14107
|
+
# @!attribute [rw] next_token
|
14108
|
+
# The token for the next set of results. Use the value returned in the
|
14109
|
+
# previous response in the next request to retrieve the next set of
|
14110
|
+
# results.
|
14111
|
+
# @return [String]
|
14112
|
+
#
|
14113
|
+
# @!attribute [rw] max_results
|
14114
|
+
# The maximum number of results to return per page. The default
|
14115
|
+
# MaxResult size is 100. Valid Range: Minimum value of 1. Maximum
|
14116
|
+
# value of 1000.
|
14117
|
+
# @return [Integer]
|
14118
|
+
#
|
14119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperationOverridesRequest AWS API Documentation
|
14120
|
+
#
|
14121
|
+
class ListHoursOfOperationOverridesRequest < Struct.new(
|
14122
|
+
:instance_id,
|
14123
|
+
:hours_of_operation_id,
|
14124
|
+
:next_token,
|
14125
|
+
:max_results)
|
14126
|
+
SENSITIVE = []
|
14127
|
+
include Aws::Structure
|
14128
|
+
end
|
14129
|
+
|
14130
|
+
# @!attribute [rw] next_token
|
14131
|
+
# The token for the next set of results. Use the value returned in the
|
14132
|
+
# previous response in the next request to retrieve the next set of
|
14133
|
+
# results.
|
14134
|
+
# @return [String]
|
14135
|
+
#
|
14136
|
+
# @!attribute [rw] hours_of_operation_override_list
|
14137
|
+
# Information about the hours of operation override.
|
14138
|
+
# @return [Array<Types::HoursOfOperationOverride>]
|
14139
|
+
#
|
14140
|
+
# @!attribute [rw] last_modified_region
|
14141
|
+
# The AWS Region where this resource was last modified.
|
14142
|
+
# @return [String]
|
14143
|
+
#
|
14144
|
+
# @!attribute [rw] last_modified_time
|
14145
|
+
# The timestamp when this resource was last modified.
|
14146
|
+
# @return [Time]
|
14147
|
+
#
|
14148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperationOverridesResponse AWS API Documentation
|
14149
|
+
#
|
14150
|
+
class ListHoursOfOperationOverridesResponse < Struct.new(
|
14151
|
+
:next_token,
|
14152
|
+
:hours_of_operation_override_list,
|
14153
|
+
:last_modified_region,
|
14154
|
+
:last_modified_time)
|
14155
|
+
SENSITIVE = []
|
14156
|
+
include Aws::Structure
|
14157
|
+
end
|
14158
|
+
|
13649
14159
|
# @!attribute [rw] instance_id
|
13650
14160
|
# The identifier of the Amazon Connect instance. You can [find the
|
13651
14161
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -15957,6 +16467,26 @@ module Aws::Connect
|
|
15957
16467
|
include Aws::Structure
|
15958
16468
|
end
|
15959
16469
|
|
16470
|
+
# Information about the hours of operations with the effective override
|
16471
|
+
# applied.
|
16472
|
+
#
|
16473
|
+
# @!attribute [rw] start
|
16474
|
+
# The start time that your contact center opens.
|
16475
|
+
# @return [Types::OverrideTimeSlice]
|
16476
|
+
#
|
16477
|
+
# @!attribute [rw] end
|
16478
|
+
# The end time that your contact center closes.
|
16479
|
+
# @return [Types::OverrideTimeSlice]
|
16480
|
+
#
|
16481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OperationalHour AWS API Documentation
|
16482
|
+
#
|
16483
|
+
class OperationalHour < Struct.new(
|
16484
|
+
:start,
|
16485
|
+
:end)
|
16486
|
+
SENSITIVE = []
|
16487
|
+
include Aws::Structure
|
16488
|
+
end
|
16489
|
+
|
15960
16490
|
# The additional recipients information of outbound email.
|
15961
16491
|
#
|
15962
16492
|
# @!attribute [rw] cc_email_addresses
|
@@ -16087,6 +16617,25 @@ module Aws::Connect
|
|
16087
16617
|
include Aws::Structure
|
16088
16618
|
end
|
16089
16619
|
|
16620
|
+
# The start time or end time for an hours of operation override.
|
16621
|
+
#
|
16622
|
+
# @!attribute [rw] hours
|
16623
|
+
# The hours.
|
16624
|
+
# @return [Integer]
|
16625
|
+
#
|
16626
|
+
# @!attribute [rw] minutes
|
16627
|
+
# The minutes.
|
16628
|
+
# @return [Integer]
|
16629
|
+
#
|
16630
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/OverrideTimeSlice AWS API Documentation
|
16631
|
+
#
|
16632
|
+
class OverrideTimeSlice < Struct.new(
|
16633
|
+
:hours,
|
16634
|
+
:minutes)
|
16635
|
+
SENSITIVE = []
|
16636
|
+
include Aws::Structure
|
16637
|
+
end
|
16638
|
+
|
16090
16639
|
# The configuration for the allowed video and screen sharing
|
16091
16640
|
# capabilities for participants present over the call. For more
|
16092
16641
|
# information, see [Set up in-app, web, video calling, and screen
|
@@ -19233,6 +19782,69 @@ module Aws::Connect
|
|
19233
19782
|
include Aws::Structure
|
19234
19783
|
end
|
19235
19784
|
|
19785
|
+
# @!attribute [rw] instance_id
|
19786
|
+
# The identifier of the Amazon Connect instance.
|
19787
|
+
# @return [String]
|
19788
|
+
#
|
19789
|
+
# @!attribute [rw] next_token
|
19790
|
+
# The token for the next set of results. Use the value returned in the
|
19791
|
+
# previous response in the next request to retrieve the next set of
|
19792
|
+
# results. Length Constraints: Minimum length of 1. Maximum length of
|
19793
|
+
# 2500.
|
19794
|
+
# @return [String]
|
19795
|
+
#
|
19796
|
+
# @!attribute [rw] max_results
|
19797
|
+
# The maximum number of results to return per page. Valid Range:
|
19798
|
+
# Minimum value of 1. Maximum value of 100.
|
19799
|
+
# @return [Integer]
|
19800
|
+
#
|
19801
|
+
# @!attribute [rw] search_filter
|
19802
|
+
# Filters to be applied to search results.
|
19803
|
+
# @return [Types::HoursOfOperationSearchFilter]
|
19804
|
+
#
|
19805
|
+
# @!attribute [rw] search_criteria
|
19806
|
+
# The search criteria to be used to return hours of operations
|
19807
|
+
# overrides.
|
19808
|
+
# @return [Types::HoursOfOperationOverrideSearchCriteria]
|
19809
|
+
#
|
19810
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchHoursOfOperationOverridesRequest AWS API Documentation
|
19811
|
+
#
|
19812
|
+
class SearchHoursOfOperationOverridesRequest < Struct.new(
|
19813
|
+
:instance_id,
|
19814
|
+
:next_token,
|
19815
|
+
:max_results,
|
19816
|
+
:search_filter,
|
19817
|
+
:search_criteria)
|
19818
|
+
SENSITIVE = []
|
19819
|
+
include Aws::Structure
|
19820
|
+
end
|
19821
|
+
|
19822
|
+
# @!attribute [rw] hours_of_operation_overrides
|
19823
|
+
# Information about the hours of operations overrides.
|
19824
|
+
# @return [Array<Types::HoursOfOperationOverride>]
|
19825
|
+
#
|
19826
|
+
# @!attribute [rw] next_token
|
19827
|
+
# The token for the next set of results. Use the value returned in the
|
19828
|
+
# previous response in the next request to retrieve the next set of
|
19829
|
+
# results. Length Constraints: Minimum length of 1. Maximum length of
|
19830
|
+
# 2500.
|
19831
|
+
# @return [String]
|
19832
|
+
#
|
19833
|
+
# @!attribute [rw] approximate_total_count
|
19834
|
+
# The total number of hours of operations which matched your search
|
19835
|
+
# query.
|
19836
|
+
# @return [Integer]
|
19837
|
+
#
|
19838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchHoursOfOperationOverridesResponse AWS API Documentation
|
19839
|
+
#
|
19840
|
+
class SearchHoursOfOperationOverridesResponse < Struct.new(
|
19841
|
+
:hours_of_operation_overrides,
|
19842
|
+
:next_token,
|
19843
|
+
:approximate_total_count)
|
19844
|
+
SENSITIVE = []
|
19845
|
+
include Aws::Structure
|
19846
|
+
end
|
19847
|
+
|
19236
19848
|
# @!attribute [rw] instance_id
|
19237
19849
|
# The identifier of the Amazon Connect instance. You can [find the
|
19238
19850
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -23733,6 +24345,56 @@ module Aws::Connect
|
|
23733
24345
|
include Aws::Structure
|
23734
24346
|
end
|
23735
24347
|
|
24348
|
+
# @!attribute [rw] instance_id
|
24349
|
+
# The identifier of the Amazon Connect instance.
|
24350
|
+
# @return [String]
|
24351
|
+
#
|
24352
|
+
# @!attribute [rw] hours_of_operation_id
|
24353
|
+
# The identifier for the hours of operation.
|
24354
|
+
# @return [String]
|
24355
|
+
#
|
24356
|
+
# @!attribute [rw] hours_of_operation_override_id
|
24357
|
+
# The identifier for the hours of operation override.
|
24358
|
+
# @return [String]
|
24359
|
+
#
|
24360
|
+
# @!attribute [rw] name
|
24361
|
+
# The name of the hours of operation override.
|
24362
|
+
# @return [String]
|
24363
|
+
#
|
24364
|
+
# @!attribute [rw] description
|
24365
|
+
# The description of the hours of operation override.
|
24366
|
+
# @return [String]
|
24367
|
+
#
|
24368
|
+
# @!attribute [rw] config
|
24369
|
+
# Configuration information for the hours of operation override: day,
|
24370
|
+
# start time, and end time.
|
24371
|
+
# @return [Array<Types::HoursOfOperationOverrideConfig>]
|
24372
|
+
#
|
24373
|
+
# @!attribute [rw] effective_from
|
24374
|
+
# The date from when the hours of operation override would be
|
24375
|
+
# effective.
|
24376
|
+
# @return [String]
|
24377
|
+
#
|
24378
|
+
# @!attribute [rw] effective_till
|
24379
|
+
# The date till when the hours of operation override would be
|
24380
|
+
# effective.
|
24381
|
+
# @return [String]
|
24382
|
+
#
|
24383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverrideRequest AWS API Documentation
|
24384
|
+
#
|
24385
|
+
class UpdateHoursOfOperationOverrideRequest < Struct.new(
|
24386
|
+
:instance_id,
|
24387
|
+
:hours_of_operation_id,
|
24388
|
+
:hours_of_operation_override_id,
|
24389
|
+
:name,
|
24390
|
+
:description,
|
24391
|
+
:config,
|
24392
|
+
:effective_from,
|
24393
|
+
:effective_till)
|
24394
|
+
SENSITIVE = []
|
24395
|
+
include Aws::Structure
|
24396
|
+
end
|
24397
|
+
|
23736
24398
|
# @!attribute [rw] instance_id
|
23737
24399
|
# The identifier of the Amazon Connect instance. You can [find the
|
23738
24400
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -25348,12 +26010,18 @@ module Aws::Connect
|
|
25348
26010
|
#
|
25349
26011
|
# @!attribute [rw] first_name
|
25350
26012
|
# The first name. This is required if you are using Amazon Connect or
|
25351
|
-
# SAML for identity management.
|
26013
|
+
# SAML for identity management. Inputs must be in Unicode
|
26014
|
+
# Normalization Form C (NFC). Text containing characters in a non-NFC
|
26015
|
+
# form (for example, decomposed characters or combining marks) are not
|
26016
|
+
# accepted.
|
25352
26017
|
# @return [String]
|
25353
26018
|
#
|
25354
26019
|
# @!attribute [rw] last_name
|
25355
26020
|
# The last name. This is required if you are using Amazon Connect or
|
25356
|
-
# SAML for identity management.
|
26021
|
+
# SAML for identity management. Inputs must be in Unicode
|
26022
|
+
# Normalization Form C (NFC). Text containing characters in a non-NFC
|
26023
|
+
# form (for example, decomposed characters or combining marks) are not
|
26024
|
+
# accepted.
|
25357
26025
|
# @return [String]
|
25358
26026
|
#
|
25359
26027
|
# @!attribute [rw] email
|