aws-sdk-connect 1.189.0 → 1.190.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 +435 -4
- data/lib/aws-sdk-connect/client_api.rb +257 -0
- data/lib/aws-sdk-connect/types.rb +552 -4
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +160 -1
- data/sig/types.rbs +147 -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]
|
@@ -2532,6 +2532,11 @@ module Aws::Connect
|
|
2532
2532
|
#
|
2533
2533
|
# @!attribute [rw] participant_role
|
2534
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>
|
2535
2540
|
# @return [String]
|
2536
2541
|
#
|
2537
2542
|
# @!attribute [rw] include_raw_message
|
@@ -2779,12 +2784,22 @@ module Aws::Connect
|
|
2779
2784
|
# condition.
|
2780
2785
|
# @return [Types::StringCondition]
|
2781
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
|
+
#
|
2782
2795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleSearchCriteria AWS API Documentation
|
2783
2796
|
#
|
2784
2797
|
class ContactFlowModuleSearchCriteria < Struct.new(
|
2785
2798
|
:or_conditions,
|
2786
2799
|
:and_conditions,
|
2787
|
-
:string_condition
|
2800
|
+
:string_condition,
|
2801
|
+
:state_condition,
|
2802
|
+
:status_condition)
|
2788
2803
|
SENSITIVE = []
|
2789
2804
|
include Aws::Structure
|
2790
2805
|
end
|
@@ -3817,6 +3832,63 @@ module Aws::Connect
|
|
3817
3832
|
include Aws::Structure
|
3818
3833
|
end
|
3819
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
|
+
|
3820
3892
|
# @!attribute [rw] instance_id
|
3821
3893
|
# The identifier of the Amazon Connect instance. You can [find the
|
3822
3894
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -5538,6 +5610,31 @@ module Aws::Connect
|
|
5538
5610
|
include Aws::Structure
|
5539
5611
|
end
|
5540
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
|
+
|
5541
5638
|
# Information about a reference when the `referenceType` is `DATE`.
|
5542
5639
|
# Otherwise, null.
|
5543
5640
|
#
|
@@ -5814,6 +5911,28 @@ module Aws::Connect
|
|
5814
5911
|
include Aws::Structure
|
5815
5912
|
end
|
5816
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
|
+
|
5817
5936
|
# @!attribute [rw] instance_id
|
5818
5937
|
# The identifier of the Amazon Connect instance. You can [find the
|
5819
5938
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -6579,6 +6698,40 @@ module Aws::Connect
|
|
6579
6698
|
include Aws::Structure
|
6580
6699
|
end
|
6581
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
|
+
|
6582
6735
|
# @!attribute [rw] instance_id
|
6583
6736
|
# The identifier of the Amazon Connect instance. You can [find the
|
6584
6737
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -7710,6 +7863,27 @@ module Aws::Connect
|
|
7710
7863
|
include Aws::Structure
|
7711
7864
|
end
|
7712
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
|
+
|
7713
7887
|
# Contains information about a source or destination email address
|
7714
7888
|
#
|
7715
7889
|
# @!attribute [rw] email_address
|
@@ -9564,6 +9738,50 @@ module Aws::Connect
|
|
9564
9738
|
include Aws::Structure
|
9565
9739
|
end
|
9566
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
|
+
|
9567
9785
|
# @!attribute [rw] instance_id
|
9568
9786
|
# The identifier of the Amazon Connect instance. You can [find the
|
9569
9787
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -12179,6 +12397,118 @@ module Aws::Connect
|
|
12179
12397
|
include Aws::Structure
|
12180
12398
|
end
|
12181
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
|
+
|
12182
12512
|
# The search criteria to be used to return hours of operations.
|
12183
12513
|
#
|
12184
12514
|
# @!attribute [rw] or_conditions
|
@@ -13766,6 +14096,66 @@ module Aws::Connect
|
|
13766
14096
|
include Aws::Structure
|
13767
14097
|
end
|
13768
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
|
+
|
13769
14159
|
# @!attribute [rw] instance_id
|
13770
14160
|
# The identifier of the Amazon Connect instance. You can [find the
|
13771
14161
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -16077,6 +16467,26 @@ module Aws::Connect
|
|
16077
16467
|
include Aws::Structure
|
16078
16468
|
end
|
16079
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
|
+
|
16080
16490
|
# The additional recipients information of outbound email.
|
16081
16491
|
#
|
16082
16492
|
# @!attribute [rw] cc_email_addresses
|
@@ -16207,6 +16617,25 @@ module Aws::Connect
|
|
16207
16617
|
include Aws::Structure
|
16208
16618
|
end
|
16209
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
|
+
|
16210
16639
|
# The configuration for the allowed video and screen sharing
|
16211
16640
|
# capabilities for participants present over the call. For more
|
16212
16641
|
# information, see [Set up in-app, web, video calling, and screen
|
@@ -19353,6 +19782,69 @@ module Aws::Connect
|
|
19353
19782
|
include Aws::Structure
|
19354
19783
|
end
|
19355
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
|
+
|
19356
19848
|
# @!attribute [rw] instance_id
|
19357
19849
|
# The identifier of the Amazon Connect instance. You can [find the
|
19358
19850
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -23853,6 +24345,56 @@ module Aws::Connect
|
|
23853
24345
|
include Aws::Structure
|
23854
24346
|
end
|
23855
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
|
+
|
23856
24398
|
# @!attribute [rw] instance_id
|
23857
24399
|
# The identifier of the Amazon Connect instance. You can [find the
|
23858
24400
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -25468,12 +26010,18 @@ module Aws::Connect
|
|
25468
26010
|
#
|
25469
26011
|
# @!attribute [rw] first_name
|
25470
26012
|
# The first name. This is required if you are using Amazon Connect or
|
25471
|
-
# 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.
|
25472
26017
|
# @return [String]
|
25473
26018
|
#
|
25474
26019
|
# @!attribute [rw] last_name
|
25475
26020
|
# The last name. This is required if you are using Amazon Connect or
|
25476
|
-
# 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.
|
25477
26025
|
# @return [String]
|
25478
26026
|
#
|
25479
26027
|
# @!attribute [rw] email
|