aws-sdk-connect 1.189.0 → 1.191.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 +514 -13
- data/lib/aws-sdk-connect/client_api.rb +289 -0
- data/lib/aws-sdk-connect/types.rb +622 -6
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +179 -6
- data/sig/types.rbs +168 -7
- metadata +2 -2
@@ -2294,6 +2294,73 @@ module Aws::Connect
|
|
2294
2294
|
req.send_request(options)
|
2295
2295
|
end
|
2296
2296
|
|
2297
|
+
# Creates an hours of operation override in an Amazon Connect hours of
|
2298
|
+
# operation resource
|
2299
|
+
#
|
2300
|
+
# @option params [required, String] :instance_id
|
2301
|
+
# The identifier of the Amazon Connect instance.
|
2302
|
+
#
|
2303
|
+
# @option params [required, String] :hours_of_operation_id
|
2304
|
+
# The identifier for the hours of operation
|
2305
|
+
#
|
2306
|
+
# @option params [required, String] :name
|
2307
|
+
# The name of the hours of operation override.
|
2308
|
+
#
|
2309
|
+
# @option params [String] :description
|
2310
|
+
# The description of the hours of operation override.
|
2311
|
+
#
|
2312
|
+
# @option params [required, Array<Types::HoursOfOperationOverrideConfig>] :config
|
2313
|
+
# Configuration information for the hours of operation override: day,
|
2314
|
+
# start time, and end time.
|
2315
|
+
#
|
2316
|
+
# @option params [required, String] :effective_from
|
2317
|
+
# The date from when the hours of operation override would be effective.
|
2318
|
+
#
|
2319
|
+
# @option params [required, String] :effective_till
|
2320
|
+
# The date until when the hours of operation override would be
|
2321
|
+
# effective.
|
2322
|
+
#
|
2323
|
+
# @return [Types::CreateHoursOfOperationOverrideResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2324
|
+
#
|
2325
|
+
# * {Types::CreateHoursOfOperationOverrideResponse#hours_of_operation_override_id #hours_of_operation_override_id} => String
|
2326
|
+
#
|
2327
|
+
# @example Request syntax with placeholder values
|
2328
|
+
#
|
2329
|
+
# resp = client.create_hours_of_operation_override({
|
2330
|
+
# instance_id: "InstanceId", # required
|
2331
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
2332
|
+
# name: "CommonHumanReadableName", # required
|
2333
|
+
# description: "CommonHumanReadableDescription",
|
2334
|
+
# config: [ # required
|
2335
|
+
# {
|
2336
|
+
# day: "SUNDAY", # accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
|
2337
|
+
# start_time: {
|
2338
|
+
# hours: 1, # required
|
2339
|
+
# minutes: 1, # required
|
2340
|
+
# },
|
2341
|
+
# end_time: {
|
2342
|
+
# hours: 1, # required
|
2343
|
+
# minutes: 1, # required
|
2344
|
+
# },
|
2345
|
+
# },
|
2346
|
+
# ],
|
2347
|
+
# effective_from: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
2348
|
+
# effective_till: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
2349
|
+
# })
|
2350
|
+
#
|
2351
|
+
# @example Response structure
|
2352
|
+
#
|
2353
|
+
# resp.hours_of_operation_override_id #=> String
|
2354
|
+
#
|
2355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverride AWS API Documentation
|
2356
|
+
#
|
2357
|
+
# @overload create_hours_of_operation_override(params = {})
|
2358
|
+
# @param [Hash] params ({})
|
2359
|
+
def create_hours_of_operation_override(params = {}, options = {})
|
2360
|
+
req = build_request(:create_hours_of_operation_override, params)
|
2361
|
+
req.send_request(options)
|
2362
|
+
end
|
2363
|
+
|
2297
2364
|
# This API is in preview release for Amazon Connect and is subject to
|
2298
2365
|
# change.
|
2299
2366
|
#
|
@@ -2420,7 +2487,7 @@ module Aws::Connect
|
|
2420
2487
|
#
|
2421
2488
|
# resp = client.create_integration_association({
|
2422
2489
|
# instance_id: "InstanceId", # required
|
2423
|
-
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR
|
2490
|
+
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR, COGNITO_USER_POOL
|
2424
2491
|
# integration_arn: "ARN", # required
|
2425
2492
|
# source_application_url: "URI",
|
2426
2493
|
# source_application_name: "SourceApplicationName",
|
@@ -2753,7 +2820,7 @@ module Aws::Connect
|
|
2753
2820
|
#
|
2754
2821
|
#
|
2755
2822
|
#
|
2756
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
2823
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-push-notifications-for-mobile-chat.html
|
2757
2824
|
#
|
2758
2825
|
# @option params [required, String] :instance_id
|
2759
2826
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -2820,9 +2887,6 @@ module Aws::Connect
|
|
2820
2887
|
req.send_request(options)
|
2821
2888
|
end
|
2822
2889
|
|
2823
|
-
# This API is in preview release for Amazon Connect and is subject to
|
2824
|
-
# change.
|
2825
|
-
#
|
2826
2890
|
# Creates a new queue for the specified Amazon Connect instance.
|
2827
2891
|
#
|
2828
2892
|
# * If the phone number is claimed to a traffic distribution group that
|
@@ -4316,6 +4380,37 @@ module Aws::Connect
|
|
4316
4380
|
req.send_request(options)
|
4317
4381
|
end
|
4318
4382
|
|
4383
|
+
# Deletes an hours of operation override in an Amazon Connect hours of
|
4384
|
+
# operation resource
|
4385
|
+
#
|
4386
|
+
# @option params [required, String] :instance_id
|
4387
|
+
# The identifier of the Amazon Connect instance.
|
4388
|
+
#
|
4389
|
+
# @option params [required, String] :hours_of_operation_id
|
4390
|
+
# The identifier for the hours of operation.
|
4391
|
+
#
|
4392
|
+
# @option params [required, String] :hours_of_operation_override_id
|
4393
|
+
# The identifier for the hours of operation override.
|
4394
|
+
#
|
4395
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4396
|
+
#
|
4397
|
+
# @example Request syntax with placeholder values
|
4398
|
+
#
|
4399
|
+
# resp = client.delete_hours_of_operation_override({
|
4400
|
+
# instance_id: "InstanceId", # required
|
4401
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
4402
|
+
# hours_of_operation_override_id: "HoursOfOperationOverrideId", # required
|
4403
|
+
# })
|
4404
|
+
#
|
4405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteHoursOfOperationOverride AWS API Documentation
|
4406
|
+
#
|
4407
|
+
# @overload delete_hours_of_operation_override(params = {})
|
4408
|
+
# @param [Hash] params ({})
|
4409
|
+
def delete_hours_of_operation_override(params = {}, options = {})
|
4410
|
+
req = build_request(:delete_hours_of_operation_override, params)
|
4411
|
+
req.send_request(options)
|
4412
|
+
end
|
4413
|
+
|
4319
4414
|
# This API is in preview release for Amazon Connect and is subject to
|
4320
4415
|
# change.
|
4321
4416
|
#
|
@@ -5115,6 +5210,7 @@ module Aws::Connect
|
|
5115
5210
|
# resp.contact.scheduled_timestamp #=> Time
|
5116
5211
|
# resp.contact.related_contact_id #=> String
|
5117
5212
|
# resp.contact.wisdom_info.session_arn #=> String
|
5213
|
+
# resp.contact.customer_id #=> String
|
5118
5214
|
# resp.contact.customer_endpoint.type #=> String, one of "TELEPHONE_NUMBER", "VOIP", "CONTACT_FLOW", "CONNECT_PHONENUMBER_ARN", "EMAIL_ADDRESS"
|
5119
5215
|
# resp.contact.customer_endpoint.address #=> String
|
5120
5216
|
# resp.contact.customer_endpoint.display_name #=> String
|
@@ -5588,6 +5684,54 @@ module Aws::Connect
|
|
5588
5684
|
req.send_request(options)
|
5589
5685
|
end
|
5590
5686
|
|
5687
|
+
# Describes the hours of operation override.
|
5688
|
+
#
|
5689
|
+
# @option params [required, String] :instance_id
|
5690
|
+
# The identifier of the Amazon Connect instance.
|
5691
|
+
#
|
5692
|
+
# @option params [required, String] :hours_of_operation_id
|
5693
|
+
# The identifier for the hours of operation.
|
5694
|
+
#
|
5695
|
+
# @option params [required, String] :hours_of_operation_override_id
|
5696
|
+
# The identifier for the hours of operation override.
|
5697
|
+
#
|
5698
|
+
# @return [Types::DescribeHoursOfOperationOverrideResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5699
|
+
#
|
5700
|
+
# * {Types::DescribeHoursOfOperationOverrideResponse#hours_of_operation_override #hours_of_operation_override} => Types::HoursOfOperationOverride
|
5701
|
+
#
|
5702
|
+
# @example Request syntax with placeholder values
|
5703
|
+
#
|
5704
|
+
# resp = client.describe_hours_of_operation_override({
|
5705
|
+
# instance_id: "InstanceId", # required
|
5706
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
5707
|
+
# hours_of_operation_override_id: "HoursOfOperationOverrideId", # required
|
5708
|
+
# })
|
5709
|
+
#
|
5710
|
+
# @example Response structure
|
5711
|
+
#
|
5712
|
+
# resp.hours_of_operation_override.hours_of_operation_override_id #=> String
|
5713
|
+
# resp.hours_of_operation_override.hours_of_operation_id #=> String
|
5714
|
+
# resp.hours_of_operation_override.hours_of_operation_arn #=> String
|
5715
|
+
# resp.hours_of_operation_override.name #=> String
|
5716
|
+
# resp.hours_of_operation_override.description #=> String
|
5717
|
+
# resp.hours_of_operation_override.config #=> Array
|
5718
|
+
# resp.hours_of_operation_override.config[0].day #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
5719
|
+
# resp.hours_of_operation_override.config[0].start_time.hours #=> Integer
|
5720
|
+
# resp.hours_of_operation_override.config[0].start_time.minutes #=> Integer
|
5721
|
+
# resp.hours_of_operation_override.config[0].end_time.hours #=> Integer
|
5722
|
+
# resp.hours_of_operation_override.config[0].end_time.minutes #=> Integer
|
5723
|
+
# resp.hours_of_operation_override.effective_from #=> String
|
5724
|
+
# resp.hours_of_operation_override.effective_till #=> String
|
5725
|
+
#
|
5726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeHoursOfOperationOverride AWS API Documentation
|
5727
|
+
#
|
5728
|
+
# @overload describe_hours_of_operation_override(params = {})
|
5729
|
+
# @param [Hash] params ({})
|
5730
|
+
def describe_hours_of_operation_override(params = {}, options = {})
|
5731
|
+
req = build_request(:describe_hours_of_operation_override, params)
|
5732
|
+
req.send_request(options)
|
5733
|
+
end
|
5734
|
+
|
5591
5735
|
# This API is in preview release for Amazon Connect and is subject to
|
5592
5736
|
# change.
|
5593
5737
|
#
|
@@ -5674,12 +5818,12 @@ module Aws::Connect
|
|
5674
5818
|
#
|
5675
5819
|
# resp = client.describe_instance_attribute({
|
5676
5820
|
# instance_id: "InstanceId", # required
|
5677
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING
|
5821
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING, MULTI_PARTY_CHAT_CONFERENCE
|
5678
5822
|
# })
|
5679
5823
|
#
|
5680
5824
|
# @example Response structure
|
5681
5825
|
#
|
5682
|
-
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING"
|
5826
|
+
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING", "MULTI_PARTY_CHAT_CONFERENCE"
|
5683
5827
|
# resp.attribute.value #=> String
|
5684
5828
|
#
|
5685
5829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceAttribute AWS API Documentation
|
@@ -7559,6 +7703,54 @@ module Aws::Connect
|
|
7559
7703
|
req.send_request(options)
|
7560
7704
|
end
|
7561
7705
|
|
7706
|
+
# Get the hours of operations with the effective override applied.
|
7707
|
+
#
|
7708
|
+
# @option params [required, String] :instance_id
|
7709
|
+
# The identifier of the Amazon Connect instance.
|
7710
|
+
#
|
7711
|
+
# @option params [required, String] :hours_of_operation_id
|
7712
|
+
# The identifier for the hours of operation.
|
7713
|
+
#
|
7714
|
+
# @option params [required, String] :from_date
|
7715
|
+
# The Date from when the hours of operation are listed.
|
7716
|
+
#
|
7717
|
+
# @option params [required, String] :to_date
|
7718
|
+
# The Date until when the hours of operation are listed.
|
7719
|
+
#
|
7720
|
+
# @return [Types::GetEffectiveHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7721
|
+
#
|
7722
|
+
# * {Types::GetEffectiveHoursOfOperationsResponse#effective_hours_of_operation_list #effective_hours_of_operation_list} => Array<Types::EffectiveHoursOfOperations>
|
7723
|
+
# * {Types::GetEffectiveHoursOfOperationsResponse#time_zone #time_zone} => String
|
7724
|
+
#
|
7725
|
+
# @example Request syntax with placeholder values
|
7726
|
+
#
|
7727
|
+
# resp = client.get_effective_hours_of_operations({
|
7728
|
+
# instance_id: "InstanceId", # required
|
7729
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
7730
|
+
# from_date: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
7731
|
+
# to_date: "HoursOfOperationOverrideYearMonthDayDateFormat", # required
|
7732
|
+
# })
|
7733
|
+
#
|
7734
|
+
# @example Response structure
|
7735
|
+
#
|
7736
|
+
# resp.effective_hours_of_operation_list #=> Array
|
7737
|
+
# resp.effective_hours_of_operation_list[0].date #=> String
|
7738
|
+
# resp.effective_hours_of_operation_list[0].operational_hours #=> Array
|
7739
|
+
# resp.effective_hours_of_operation_list[0].operational_hours[0].start.hours #=> Integer
|
7740
|
+
# resp.effective_hours_of_operation_list[0].operational_hours[0].start.minutes #=> Integer
|
7741
|
+
# resp.effective_hours_of_operation_list[0].operational_hours[0].end.hours #=> Integer
|
7742
|
+
# resp.effective_hours_of_operation_list[0].operational_hours[0].end.minutes #=> Integer
|
7743
|
+
# resp.time_zone #=> String
|
7744
|
+
#
|
7745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperations AWS API Documentation
|
7746
|
+
#
|
7747
|
+
# @overload get_effective_hours_of_operations(params = {})
|
7748
|
+
# @param [Hash] params ({})
|
7749
|
+
def get_effective_hours_of_operations(params = {}, options = {})
|
7750
|
+
req = build_request(:get_effective_hours_of_operations, params)
|
7751
|
+
req.send_request(options)
|
7752
|
+
end
|
7753
|
+
|
7562
7754
|
# Supports SAML sign-in for Amazon Connect. Retrieves a token for
|
7563
7755
|
# federation. The token is for the Amazon Connect user which corresponds
|
7564
7756
|
# to the IAM credentials that were used to invoke this action.
|
@@ -10101,7 +10293,7 @@ module Aws::Connect
|
|
10101
10293
|
#
|
10102
10294
|
# For the specified version of Amazon Lex, returns a paginated list of
|
10103
10295
|
# all the Amazon Lex bots currently associated with the instance. Use
|
10104
|
-
# this API to
|
10296
|
+
# this API to return both Amazon Lex V1 and V2 bots.
|
10105
10297
|
#
|
10106
10298
|
# @option params [required, String] :instance_id
|
10107
10299
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -10703,6 +10895,71 @@ module Aws::Connect
|
|
10703
10895
|
req.send_request(options)
|
10704
10896
|
end
|
10705
10897
|
|
10898
|
+
# List the hours of operation overrides.
|
10899
|
+
#
|
10900
|
+
# @option params [required, String] :instance_id
|
10901
|
+
# The identifier of the Amazon Connect instance.
|
10902
|
+
#
|
10903
|
+
# @option params [required, String] :hours_of_operation_id
|
10904
|
+
# The identifier for the hours of operation
|
10905
|
+
#
|
10906
|
+
# @option params [String] :next_token
|
10907
|
+
# The token for the next set of results. Use the value returned in the
|
10908
|
+
# previous response in the next request to retrieve the next set of
|
10909
|
+
# results.
|
10910
|
+
#
|
10911
|
+
# @option params [Integer] :max_results
|
10912
|
+
# The maximum number of results to return per page. The default
|
10913
|
+
# MaxResult size is 100. Valid Range: Minimum value of 1. Maximum value
|
10914
|
+
# of 1000.
|
10915
|
+
#
|
10916
|
+
# @return [Types::ListHoursOfOperationOverridesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10917
|
+
#
|
10918
|
+
# * {Types::ListHoursOfOperationOverridesResponse#next_token #next_token} => String
|
10919
|
+
# * {Types::ListHoursOfOperationOverridesResponse#hours_of_operation_override_list #hours_of_operation_override_list} => Array<Types::HoursOfOperationOverride>
|
10920
|
+
# * {Types::ListHoursOfOperationOverridesResponse#last_modified_region #last_modified_region} => String
|
10921
|
+
# * {Types::ListHoursOfOperationOverridesResponse#last_modified_time #last_modified_time} => Time
|
10922
|
+
#
|
10923
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10924
|
+
#
|
10925
|
+
# @example Request syntax with placeholder values
|
10926
|
+
#
|
10927
|
+
# resp = client.list_hours_of_operation_overrides({
|
10928
|
+
# instance_id: "InstanceId", # required
|
10929
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
10930
|
+
# next_token: "NextToken",
|
10931
|
+
# max_results: 1,
|
10932
|
+
# })
|
10933
|
+
#
|
10934
|
+
# @example Response structure
|
10935
|
+
#
|
10936
|
+
# resp.next_token #=> String
|
10937
|
+
# resp.hours_of_operation_override_list #=> Array
|
10938
|
+
# resp.hours_of_operation_override_list[0].hours_of_operation_override_id #=> String
|
10939
|
+
# resp.hours_of_operation_override_list[0].hours_of_operation_id #=> String
|
10940
|
+
# resp.hours_of_operation_override_list[0].hours_of_operation_arn #=> String
|
10941
|
+
# resp.hours_of_operation_override_list[0].name #=> String
|
10942
|
+
# resp.hours_of_operation_override_list[0].description #=> String
|
10943
|
+
# resp.hours_of_operation_override_list[0].config #=> Array
|
10944
|
+
# resp.hours_of_operation_override_list[0].config[0].day #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
10945
|
+
# resp.hours_of_operation_override_list[0].config[0].start_time.hours #=> Integer
|
10946
|
+
# resp.hours_of_operation_override_list[0].config[0].start_time.minutes #=> Integer
|
10947
|
+
# resp.hours_of_operation_override_list[0].config[0].end_time.hours #=> Integer
|
10948
|
+
# resp.hours_of_operation_override_list[0].config[0].end_time.minutes #=> Integer
|
10949
|
+
# resp.hours_of_operation_override_list[0].effective_from #=> String
|
10950
|
+
# resp.hours_of_operation_override_list[0].effective_till #=> String
|
10951
|
+
# resp.last_modified_region #=> String
|
10952
|
+
# resp.last_modified_time #=> Time
|
10953
|
+
#
|
10954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperationOverrides AWS API Documentation
|
10955
|
+
#
|
10956
|
+
# @overload list_hours_of_operation_overrides(params = {})
|
10957
|
+
# @param [Hash] params ({})
|
10958
|
+
def list_hours_of_operation_overrides(params = {}, options = {})
|
10959
|
+
req = build_request(:list_hours_of_operation_overrides, params)
|
10960
|
+
req.send_request(options)
|
10961
|
+
end
|
10962
|
+
|
10706
10963
|
# Provides information about the hours of operation for the specified
|
10707
10964
|
# Amazon Connect instance.
|
10708
10965
|
#
|
@@ -10804,7 +11061,7 @@ module Aws::Connect
|
|
10804
11061
|
# @example Response structure
|
10805
11062
|
#
|
10806
11063
|
# resp.attributes #=> Array
|
10807
|
-
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING"
|
11064
|
+
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING", "MULTI_PARTY_CHAT_CONFERENCE"
|
10808
11065
|
# resp.attributes[0].value #=> String
|
10809
11066
|
# resp.next_token #=> String
|
10810
11067
|
#
|
@@ -10974,7 +11231,7 @@ module Aws::Connect
|
|
10974
11231
|
#
|
10975
11232
|
# resp = client.list_integration_associations({
|
10976
11233
|
# instance_id: "InstanceId", # required
|
10977
|
-
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR
|
11234
|
+
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR, COGNITO_USER_POOL
|
10978
11235
|
# next_token: "NextToken",
|
10979
11236
|
# max_results: 1,
|
10980
11237
|
# integration_arn: "ARN",
|
@@ -10986,7 +11243,7 @@ module Aws::Connect
|
|
10986
11243
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
10987
11244
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
10988
11245
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
10989
|
-
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER", "SES_IDENTITY", "ANALYTICS_CONNECTOR", "CALL_TRANSFER_CONNECTOR"
|
11246
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER", "SES_IDENTITY", "ANALYTICS_CONNECTOR", "CALL_TRANSFER_CONNECTOR", "COGNITO_USER_POOL"
|
10990
11247
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
10991
11248
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
10992
11249
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -13310,6 +13567,8 @@ module Aws::Connect
|
|
13310
13567
|
# value: "String",
|
13311
13568
|
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
13312
13569
|
# },
|
13570
|
+
# state_condition: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
13571
|
+
# status_condition: "PUBLISHED", # accepts PUBLISHED, SAVED
|
13313
13572
|
# },
|
13314
13573
|
# })
|
13315
13574
|
#
|
@@ -13671,6 +13930,116 @@ module Aws::Connect
|
|
13671
13930
|
req.send_request(options)
|
13672
13931
|
end
|
13673
13932
|
|
13933
|
+
# Searches the hours of operation overrides.
|
13934
|
+
#
|
13935
|
+
# @option params [required, String] :instance_id
|
13936
|
+
# The identifier of the Amazon Connect instance.
|
13937
|
+
#
|
13938
|
+
# @option params [String] :next_token
|
13939
|
+
# The token for the next set of results. Use the value returned in the
|
13940
|
+
# previous response in the next request to retrieve the next set of
|
13941
|
+
# results. Length Constraints: Minimum length of 1. Maximum length of
|
13942
|
+
# 2500.
|
13943
|
+
#
|
13944
|
+
# @option params [Integer] :max_results
|
13945
|
+
# The maximum number of results to return per page. Valid Range: Minimum
|
13946
|
+
# value of 1. Maximum value of 100.
|
13947
|
+
#
|
13948
|
+
# @option params [Types::HoursOfOperationSearchFilter] :search_filter
|
13949
|
+
# Filters to be applied to search results.
|
13950
|
+
#
|
13951
|
+
# @option params [Types::HoursOfOperationOverrideSearchCriteria] :search_criteria
|
13952
|
+
# The search criteria to be used to return hours of operations
|
13953
|
+
# overrides.
|
13954
|
+
#
|
13955
|
+
# @return [Types::SearchHoursOfOperationOverridesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13956
|
+
#
|
13957
|
+
# * {Types::SearchHoursOfOperationOverridesResponse#hours_of_operation_overrides #hours_of_operation_overrides} => Array<Types::HoursOfOperationOverride>
|
13958
|
+
# * {Types::SearchHoursOfOperationOverridesResponse#next_token #next_token} => String
|
13959
|
+
# * {Types::SearchHoursOfOperationOverridesResponse#approximate_total_count #approximate_total_count} => Integer
|
13960
|
+
#
|
13961
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
13962
|
+
#
|
13963
|
+
# @example Request syntax with placeholder values
|
13964
|
+
#
|
13965
|
+
# resp = client.search_hours_of_operation_overrides({
|
13966
|
+
# instance_id: "InstanceId", # required
|
13967
|
+
# next_token: "NextToken2500",
|
13968
|
+
# max_results: 1,
|
13969
|
+
# search_filter: {
|
13970
|
+
# tag_filter: {
|
13971
|
+
# or_conditions: [
|
13972
|
+
# [
|
13973
|
+
# {
|
13974
|
+
# tag_key: "String",
|
13975
|
+
# tag_value: "String",
|
13976
|
+
# },
|
13977
|
+
# ],
|
13978
|
+
# ],
|
13979
|
+
# and_conditions: [
|
13980
|
+
# {
|
13981
|
+
# tag_key: "String",
|
13982
|
+
# tag_value: "String",
|
13983
|
+
# },
|
13984
|
+
# ],
|
13985
|
+
# tag_condition: {
|
13986
|
+
# tag_key: "String",
|
13987
|
+
# tag_value: "String",
|
13988
|
+
# },
|
13989
|
+
# },
|
13990
|
+
# },
|
13991
|
+
# search_criteria: {
|
13992
|
+
# or_conditions: [
|
13993
|
+
# {
|
13994
|
+
# # recursive HoursOfOperationOverrideSearchCriteria
|
13995
|
+
# },
|
13996
|
+
# ],
|
13997
|
+
# and_conditions: [
|
13998
|
+
# {
|
13999
|
+
# # recursive HoursOfOperationOverrideSearchCriteria
|
14000
|
+
# },
|
14001
|
+
# ],
|
14002
|
+
# string_condition: {
|
14003
|
+
# field_name: "String",
|
14004
|
+
# value: "String",
|
14005
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
14006
|
+
# },
|
14007
|
+
# date_condition: {
|
14008
|
+
# field_name: "String",
|
14009
|
+
# value: "DateYearMonthDayFormat",
|
14010
|
+
# comparison_type: "GREATER_THAN", # accepts GREATER_THAN, LESS_THAN, GREATER_THAN_OR_EQUAL_TO, LESS_THAN_OR_EQUAL_TO, EQUAL_TO
|
14011
|
+
# },
|
14012
|
+
# },
|
14013
|
+
# })
|
14014
|
+
#
|
14015
|
+
# @example Response structure
|
14016
|
+
#
|
14017
|
+
# resp.hours_of_operation_overrides #=> Array
|
14018
|
+
# resp.hours_of_operation_overrides[0].hours_of_operation_override_id #=> String
|
14019
|
+
# resp.hours_of_operation_overrides[0].hours_of_operation_id #=> String
|
14020
|
+
# resp.hours_of_operation_overrides[0].hours_of_operation_arn #=> String
|
14021
|
+
# resp.hours_of_operation_overrides[0].name #=> String
|
14022
|
+
# resp.hours_of_operation_overrides[0].description #=> String
|
14023
|
+
# resp.hours_of_operation_overrides[0].config #=> Array
|
14024
|
+
# resp.hours_of_operation_overrides[0].config[0].day #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
14025
|
+
# resp.hours_of_operation_overrides[0].config[0].start_time.hours #=> Integer
|
14026
|
+
# resp.hours_of_operation_overrides[0].config[0].start_time.minutes #=> Integer
|
14027
|
+
# resp.hours_of_operation_overrides[0].config[0].end_time.hours #=> Integer
|
14028
|
+
# resp.hours_of_operation_overrides[0].config[0].end_time.minutes #=> Integer
|
14029
|
+
# resp.hours_of_operation_overrides[0].effective_from #=> String
|
14030
|
+
# resp.hours_of_operation_overrides[0].effective_till #=> String
|
14031
|
+
# resp.next_token #=> String
|
14032
|
+
# resp.approximate_total_count #=> Integer
|
14033
|
+
#
|
14034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchHoursOfOperationOverrides AWS API Documentation
|
14035
|
+
#
|
14036
|
+
# @overload search_hours_of_operation_overrides(params = {})
|
14037
|
+
# @param [Hash] params ({})
|
14038
|
+
def search_hours_of_operation_overrides(params = {}, options = {})
|
14039
|
+
req = build_request(:search_hours_of_operation_overrides, params)
|
14040
|
+
req.send_request(options)
|
14041
|
+
end
|
14042
|
+
|
13674
14043
|
# Searches the hours of operation in an Amazon Connect instance, with
|
13675
14044
|
# optional filtering.
|
13676
14045
|
#
|
@@ -15358,6 +15727,10 @@ module Aws::Connect
|
|
15358
15727
|
#
|
15359
15728
|
# </note>
|
15360
15729
|
#
|
15730
|
+
# @option params [String] :customer_id
|
15731
|
+
# The customer's identification number. For example, the `CustomerId`
|
15732
|
+
# may be a customer number from your CRM.
|
15733
|
+
#
|
15361
15734
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15362
15735
|
#
|
15363
15736
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
@@ -15399,6 +15772,7 @@ module Aws::Connect
|
|
15399
15772
|
# value_integer: 1,
|
15400
15773
|
# },
|
15401
15774
|
# },
|
15775
|
+
# customer_id: "CustomerIdNonEmpty",
|
15402
15776
|
# })
|
15403
15777
|
#
|
15404
15778
|
# @example Response structure
|
@@ -18217,6 +18591,69 @@ module Aws::Connect
|
|
18217
18591
|
req.send_request(options)
|
18218
18592
|
end
|
18219
18593
|
|
18594
|
+
# Update the hours of operation override.
|
18595
|
+
#
|
18596
|
+
# @option params [required, String] :instance_id
|
18597
|
+
# The identifier of the Amazon Connect instance.
|
18598
|
+
#
|
18599
|
+
# @option params [required, String] :hours_of_operation_id
|
18600
|
+
# The identifier for the hours of operation.
|
18601
|
+
#
|
18602
|
+
# @option params [required, String] :hours_of_operation_override_id
|
18603
|
+
# The identifier for the hours of operation override.
|
18604
|
+
#
|
18605
|
+
# @option params [String] :name
|
18606
|
+
# The name of the hours of operation override.
|
18607
|
+
#
|
18608
|
+
# @option params [String] :description
|
18609
|
+
# The description of the hours of operation override.
|
18610
|
+
#
|
18611
|
+
# @option params [Array<Types::HoursOfOperationOverrideConfig>] :config
|
18612
|
+
# Configuration information for the hours of operation override: day,
|
18613
|
+
# start time, and end time.
|
18614
|
+
#
|
18615
|
+
# @option params [String] :effective_from
|
18616
|
+
# The date from when the hours of operation override would be effective.
|
18617
|
+
#
|
18618
|
+
# @option params [String] :effective_till
|
18619
|
+
# The date till when the hours of operation override would be effective.
|
18620
|
+
#
|
18621
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18622
|
+
#
|
18623
|
+
# @example Request syntax with placeholder values
|
18624
|
+
#
|
18625
|
+
# resp = client.update_hours_of_operation_override({
|
18626
|
+
# instance_id: "InstanceId", # required
|
18627
|
+
# hours_of_operation_id: "HoursOfOperationId", # required
|
18628
|
+
# hours_of_operation_override_id: "HoursOfOperationOverrideId", # required
|
18629
|
+
# name: "CommonHumanReadableName",
|
18630
|
+
# description: "CommonHumanReadableDescription",
|
18631
|
+
# config: [
|
18632
|
+
# {
|
18633
|
+
# day: "SUNDAY", # accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
|
18634
|
+
# start_time: {
|
18635
|
+
# hours: 1, # required
|
18636
|
+
# minutes: 1, # required
|
18637
|
+
# },
|
18638
|
+
# end_time: {
|
18639
|
+
# hours: 1, # required
|
18640
|
+
# minutes: 1, # required
|
18641
|
+
# },
|
18642
|
+
# },
|
18643
|
+
# ],
|
18644
|
+
# effective_from: "HoursOfOperationOverrideYearMonthDayDateFormat",
|
18645
|
+
# effective_till: "HoursOfOperationOverrideYearMonthDayDateFormat",
|
18646
|
+
# })
|
18647
|
+
#
|
18648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateHoursOfOperationOverride AWS API Documentation
|
18649
|
+
#
|
18650
|
+
# @overload update_hours_of_operation_override(params = {})
|
18651
|
+
# @param [Hash] params ({})
|
18652
|
+
def update_hours_of_operation_override(params = {}, options = {})
|
18653
|
+
req = build_request(:update_hours_of_operation_override, params)
|
18654
|
+
req.send_request(options)
|
18655
|
+
end
|
18656
|
+
|
18220
18657
|
# This API is in preview release for Amazon Connect and is subject to
|
18221
18658
|
# change.
|
18222
18659
|
#
|
@@ -18248,7 +18685,7 @@ module Aws::Connect
|
|
18248
18685
|
#
|
18249
18686
|
# resp = client.update_instance_attribute({
|
18250
18687
|
# instance_id: "InstanceId", # required
|
18251
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING
|
18688
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING, MULTI_PARTY_CHAT_CONFERENCE
|
18252
18689
|
# value: "InstanceAttributeValue", # required
|
18253
18690
|
# })
|
18254
18691
|
#
|
@@ -18330,6 +18767,70 @@ module Aws::Connect
|
|
18330
18767
|
req.send_request(options)
|
18331
18768
|
end
|
18332
18769
|
|
18770
|
+
# Instructs Amazon Connect to resume the authentication process. The
|
18771
|
+
# subsequent actions depend on the request body contents:
|
18772
|
+
#
|
18773
|
+
# * **If a code is provided**: Connect retrieves the identity
|
18774
|
+
# information from Amazon Cognito and imports it into Connect Customer
|
18775
|
+
# Profiles.
|
18776
|
+
#
|
18777
|
+
# * **If an error is provided**: The error branch of the Authenticate
|
18778
|
+
# Customer block is executed.
|
18779
|
+
#
|
18780
|
+
# <note markdown="1"> The API returns a success response to acknowledge the request.
|
18781
|
+
# However, the interaction and exchange of identity information occur
|
18782
|
+
# asynchronously after the response is returned.
|
18783
|
+
#
|
18784
|
+
# </note>
|
18785
|
+
#
|
18786
|
+
# @option params [required, String] :state
|
18787
|
+
# The `state` query parameter that was provided by Cognito in the
|
18788
|
+
# `redirectUri`. This will also match the `state` parameter provided in
|
18789
|
+
# the `AuthenticationUrl` from the [GetAuthenticationUrl][1] response.
|
18790
|
+
#
|
18791
|
+
#
|
18792
|
+
#
|
18793
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetAuthenticationUrl.html
|
18794
|
+
#
|
18795
|
+
# @option params [required, String] :instance_id
|
18796
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
18797
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18798
|
+
#
|
18799
|
+
#
|
18800
|
+
#
|
18801
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18802
|
+
#
|
18803
|
+
# @option params [String] :code
|
18804
|
+
# The `code` query parameter provided by Cognito in the `redirectUri`.
|
18805
|
+
#
|
18806
|
+
# @option params [String] :error
|
18807
|
+
# The `error` query parameter provided by Cognito in the `redirectUri`.
|
18808
|
+
#
|
18809
|
+
# @option params [String] :error_description
|
18810
|
+
# The `error_description` parameter provided by Cognito in the
|
18811
|
+
# `redirectUri`.
|
18812
|
+
#
|
18813
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18814
|
+
#
|
18815
|
+
# @example Request syntax with placeholder values
|
18816
|
+
#
|
18817
|
+
# resp = client.update_participant_authentication({
|
18818
|
+
# state: "ParticipantToken", # required
|
18819
|
+
# instance_id: "InstanceId", # required
|
18820
|
+
# code: "AuthorizationCode",
|
18821
|
+
# error: "AuthenticationError",
|
18822
|
+
# error_description: "AuthenticationErrorDescription",
|
18823
|
+
# })
|
18824
|
+
#
|
18825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateParticipantAuthentication AWS API Documentation
|
18826
|
+
#
|
18827
|
+
# @overload update_participant_authentication(params = {})
|
18828
|
+
# @param [Hash] params ({})
|
18829
|
+
def update_participant_authentication(params = {}, options = {})
|
18830
|
+
req = build_request(:update_participant_authentication, params)
|
18831
|
+
req.send_request(options)
|
18832
|
+
end
|
18833
|
+
|
18333
18834
|
# Updates timeouts for when human chat participants are to be considered
|
18334
18835
|
# idle, and when agents are automatically disconnected from a chat due
|
18335
18836
|
# to idleness. You can set four timers:
|
@@ -20069,7 +20570,7 @@ module Aws::Connect
|
|
20069
20570
|
tracer: tracer
|
20070
20571
|
)
|
20071
20572
|
context[:gem_name] = 'aws-sdk-connect'
|
20072
|
-
context[:gem_version] = '1.
|
20573
|
+
context[:gem_version] = '1.191.0'
|
20073
20574
|
Seahorse::Client::Request.new(handlers, context)
|
20074
20575
|
end
|
20075
20576
|
|