aws-sdk-connect 1.111.0 → 1.112.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +317 -1
- data/lib/aws-sdk-connect/client_api.rb +147 -0
- data/lib/aws-sdk-connect/endpoints.rb +42 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-connect/types.rb +359 -11
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f481de74eba5495186d176b424c2c0b9be6d3ad459a7501091d9725073204d4
|
4
|
+
data.tar.gz: 8b7f4ba59f4aa292678c18f2ebde8078c1d2b5b3d844c7528325eca98be9cc92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 228bfdcd014205779b165ecfce7dbca3a894bf2228b1d33c23bd2765dbbe14a402cbd2cee24e8b3770770f7880317f04714468a4ca0b62d7fe7caab0b9e2cf7a
|
7
|
+
data.tar.gz: 1bf63ffd2f1a330eaa6f6ac70e29cdcff9b14f042a67ed5b55a7f220b93037a51cefc28a273aca8e52904a2cf2b28bd355151997306d6917d422bb48b5f6e668
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.112.0 (2023-06-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds search APIs for Prompts, Quick Connects and Hours of Operations, which can be used to search for those resources within a Connect Instance.
|
8
|
+
|
4
9
|
1.111.0 (2023-06-06)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.112.0
|
@@ -8458,6 +8458,215 @@ module Aws::Connect
|
|
8458
8458
|
req.send_request(options)
|
8459
8459
|
end
|
8460
8460
|
|
8461
|
+
# Searches the hours of operation in an Amazon Connect instance, with
|
8462
|
+
# optional filtering.
|
8463
|
+
#
|
8464
|
+
# @option params [required, String] :instance_id
|
8465
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8466
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8467
|
+
#
|
8468
|
+
#
|
8469
|
+
#
|
8470
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8471
|
+
#
|
8472
|
+
# @option params [String] :next_token
|
8473
|
+
# The token for the next set of results. Use the value returned in the
|
8474
|
+
# previous response in the next request to retrieve the next set of
|
8475
|
+
# results.
|
8476
|
+
#
|
8477
|
+
# @option params [Integer] :max_results
|
8478
|
+
# The maximum number of results to return per page.
|
8479
|
+
#
|
8480
|
+
# @option params [Types::HoursOfOperationSearchFilter] :search_filter
|
8481
|
+
# Filters to be applied to search results.
|
8482
|
+
#
|
8483
|
+
# @option params [Types::HoursOfOperationSearchCriteria] :search_criteria
|
8484
|
+
# The search criteria to be used to return hours of operations.
|
8485
|
+
#
|
8486
|
+
# @return [Types::SearchHoursOfOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8487
|
+
#
|
8488
|
+
# * {Types::SearchHoursOfOperationsResponse#hours_of_operations #hours_of_operations} => Array<Types::HoursOfOperation>
|
8489
|
+
# * {Types::SearchHoursOfOperationsResponse#next_token #next_token} => String
|
8490
|
+
# * {Types::SearchHoursOfOperationsResponse#approximate_total_count #approximate_total_count} => Integer
|
8491
|
+
#
|
8492
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8493
|
+
#
|
8494
|
+
# @example Request syntax with placeholder values
|
8495
|
+
#
|
8496
|
+
# resp = client.search_hours_of_operations({
|
8497
|
+
# instance_id: "InstanceId", # required
|
8498
|
+
# next_token: "NextToken2500",
|
8499
|
+
# max_results: 1,
|
8500
|
+
# search_filter: {
|
8501
|
+
# tag_filter: {
|
8502
|
+
# or_conditions: [
|
8503
|
+
# [
|
8504
|
+
# {
|
8505
|
+
# tag_key: "String",
|
8506
|
+
# tag_value: "String",
|
8507
|
+
# },
|
8508
|
+
# ],
|
8509
|
+
# ],
|
8510
|
+
# and_conditions: [
|
8511
|
+
# {
|
8512
|
+
# tag_key: "String",
|
8513
|
+
# tag_value: "String",
|
8514
|
+
# },
|
8515
|
+
# ],
|
8516
|
+
# tag_condition: {
|
8517
|
+
# tag_key: "String",
|
8518
|
+
# tag_value: "String",
|
8519
|
+
# },
|
8520
|
+
# },
|
8521
|
+
# },
|
8522
|
+
# search_criteria: {
|
8523
|
+
# or_conditions: [
|
8524
|
+
# {
|
8525
|
+
# # recursive HoursOfOperationSearchCriteria
|
8526
|
+
# },
|
8527
|
+
# ],
|
8528
|
+
# and_conditions: [
|
8529
|
+
# {
|
8530
|
+
# # recursive HoursOfOperationSearchCriteria
|
8531
|
+
# },
|
8532
|
+
# ],
|
8533
|
+
# string_condition: {
|
8534
|
+
# field_name: "String",
|
8535
|
+
# value: "String",
|
8536
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8537
|
+
# },
|
8538
|
+
# },
|
8539
|
+
# })
|
8540
|
+
#
|
8541
|
+
# @example Response structure
|
8542
|
+
#
|
8543
|
+
# resp.hours_of_operations #=> Array
|
8544
|
+
# resp.hours_of_operations[0].hours_of_operation_id #=> String
|
8545
|
+
# resp.hours_of_operations[0].hours_of_operation_arn #=> String
|
8546
|
+
# resp.hours_of_operations[0].name #=> String
|
8547
|
+
# resp.hours_of_operations[0].description #=> String
|
8548
|
+
# resp.hours_of_operations[0].time_zone #=> String
|
8549
|
+
# resp.hours_of_operations[0].config #=> Array
|
8550
|
+
# resp.hours_of_operations[0].config[0].day #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
|
8551
|
+
# resp.hours_of_operations[0].config[0].start_time.hours #=> Integer
|
8552
|
+
# resp.hours_of_operations[0].config[0].start_time.minutes #=> Integer
|
8553
|
+
# resp.hours_of_operations[0].config[0].end_time.hours #=> Integer
|
8554
|
+
# resp.hours_of_operations[0].config[0].end_time.minutes #=> Integer
|
8555
|
+
# resp.hours_of_operations[0].tags #=> Hash
|
8556
|
+
# resp.hours_of_operations[0].tags["TagKey"] #=> String
|
8557
|
+
# resp.next_token #=> String
|
8558
|
+
# resp.approximate_total_count #=> Integer
|
8559
|
+
#
|
8560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchHoursOfOperations AWS API Documentation
|
8561
|
+
#
|
8562
|
+
# @overload search_hours_of_operations(params = {})
|
8563
|
+
# @param [Hash] params ({})
|
8564
|
+
def search_hours_of_operations(params = {}, options = {})
|
8565
|
+
req = build_request(:search_hours_of_operations, params)
|
8566
|
+
req.send_request(options)
|
8567
|
+
end
|
8568
|
+
|
8569
|
+
# Searches prompts in an Amazon Connect instance, with optional
|
8570
|
+
# filtering.
|
8571
|
+
#
|
8572
|
+
# @option params [required, String] :instance_id
|
8573
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8574
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8575
|
+
#
|
8576
|
+
#
|
8577
|
+
#
|
8578
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8579
|
+
#
|
8580
|
+
# @option params [String] :next_token
|
8581
|
+
# The token for the next set of results. Use the value returned in the
|
8582
|
+
# previous response in the next request to retrieve the next set of
|
8583
|
+
# results.
|
8584
|
+
#
|
8585
|
+
# @option params [Integer] :max_results
|
8586
|
+
# The maximum number of results to return per page.
|
8587
|
+
#
|
8588
|
+
# @option params [Types::PromptSearchFilter] :search_filter
|
8589
|
+
# Filters to be applied to search results.
|
8590
|
+
#
|
8591
|
+
# @option params [Types::PromptSearchCriteria] :search_criteria
|
8592
|
+
# The search criteria to be used to return prompts.
|
8593
|
+
#
|
8594
|
+
# @return [Types::SearchPromptsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8595
|
+
#
|
8596
|
+
# * {Types::SearchPromptsResponse#prompts #prompts} => Array<Types::Prompt>
|
8597
|
+
# * {Types::SearchPromptsResponse#next_token #next_token} => String
|
8598
|
+
# * {Types::SearchPromptsResponse#approximate_total_count #approximate_total_count} => Integer
|
8599
|
+
#
|
8600
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8601
|
+
#
|
8602
|
+
# @example Request syntax with placeholder values
|
8603
|
+
#
|
8604
|
+
# resp = client.search_prompts({
|
8605
|
+
# instance_id: "InstanceId", # required
|
8606
|
+
# next_token: "NextToken2500",
|
8607
|
+
# max_results: 1,
|
8608
|
+
# search_filter: {
|
8609
|
+
# tag_filter: {
|
8610
|
+
# or_conditions: [
|
8611
|
+
# [
|
8612
|
+
# {
|
8613
|
+
# tag_key: "String",
|
8614
|
+
# tag_value: "String",
|
8615
|
+
# },
|
8616
|
+
# ],
|
8617
|
+
# ],
|
8618
|
+
# and_conditions: [
|
8619
|
+
# {
|
8620
|
+
# tag_key: "String",
|
8621
|
+
# tag_value: "String",
|
8622
|
+
# },
|
8623
|
+
# ],
|
8624
|
+
# tag_condition: {
|
8625
|
+
# tag_key: "String",
|
8626
|
+
# tag_value: "String",
|
8627
|
+
# },
|
8628
|
+
# },
|
8629
|
+
# },
|
8630
|
+
# search_criteria: {
|
8631
|
+
# or_conditions: [
|
8632
|
+
# {
|
8633
|
+
# # recursive PromptSearchCriteria
|
8634
|
+
# },
|
8635
|
+
# ],
|
8636
|
+
# and_conditions: [
|
8637
|
+
# {
|
8638
|
+
# # recursive PromptSearchCriteria
|
8639
|
+
# },
|
8640
|
+
# ],
|
8641
|
+
# string_condition: {
|
8642
|
+
# field_name: "String",
|
8643
|
+
# value: "String",
|
8644
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8645
|
+
# },
|
8646
|
+
# },
|
8647
|
+
# })
|
8648
|
+
#
|
8649
|
+
# @example Response structure
|
8650
|
+
#
|
8651
|
+
# resp.prompts #=> Array
|
8652
|
+
# resp.prompts[0].prompt_arn #=> String
|
8653
|
+
# resp.prompts[0].prompt_id #=> String
|
8654
|
+
# resp.prompts[0].name #=> String
|
8655
|
+
# resp.prompts[0].description #=> String
|
8656
|
+
# resp.prompts[0].tags #=> Hash
|
8657
|
+
# resp.prompts[0].tags["TagKey"] #=> String
|
8658
|
+
# resp.next_token #=> String
|
8659
|
+
# resp.approximate_total_count #=> Integer
|
8660
|
+
#
|
8661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchPrompts AWS API Documentation
|
8662
|
+
#
|
8663
|
+
# @overload search_prompts(params = {})
|
8664
|
+
# @param [Hash] params ({})
|
8665
|
+
def search_prompts(params = {}, options = {})
|
8666
|
+
req = build_request(:search_prompts, params)
|
8667
|
+
req.send_request(options)
|
8668
|
+
end
|
8669
|
+
|
8461
8670
|
# This API is in preview release for Amazon Connect and is subject to
|
8462
8671
|
# change.
|
8463
8672
|
#
|
@@ -8576,6 +8785,113 @@ module Aws::Connect
|
|
8576
8785
|
req.send_request(options)
|
8577
8786
|
end
|
8578
8787
|
|
8788
|
+
# Searches quick connects in an Amazon Connect instance, with optional
|
8789
|
+
# filtering.
|
8790
|
+
#
|
8791
|
+
# @option params [required, String] :instance_id
|
8792
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
8793
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
8794
|
+
#
|
8795
|
+
#
|
8796
|
+
#
|
8797
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
8798
|
+
#
|
8799
|
+
# @option params [String] :next_token
|
8800
|
+
# The token for the next set of results. Use the value returned in the
|
8801
|
+
# previous response in the next request to retrieve the next set of
|
8802
|
+
# results.
|
8803
|
+
#
|
8804
|
+
# @option params [Integer] :max_results
|
8805
|
+
# The maximum number of results to return per page.
|
8806
|
+
#
|
8807
|
+
# @option params [Types::QuickConnectSearchFilter] :search_filter
|
8808
|
+
# Filters to be applied to search results.
|
8809
|
+
#
|
8810
|
+
# @option params [Types::QuickConnectSearchCriteria] :search_criteria
|
8811
|
+
# The search criteria to be used to return quick connects.
|
8812
|
+
#
|
8813
|
+
# @return [Types::SearchQuickConnectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8814
|
+
#
|
8815
|
+
# * {Types::SearchQuickConnectsResponse#quick_connects #quick_connects} => Array<Types::QuickConnect>
|
8816
|
+
# * {Types::SearchQuickConnectsResponse#next_token #next_token} => String
|
8817
|
+
# * {Types::SearchQuickConnectsResponse#approximate_total_count #approximate_total_count} => Integer
|
8818
|
+
#
|
8819
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8820
|
+
#
|
8821
|
+
# @example Request syntax with placeholder values
|
8822
|
+
#
|
8823
|
+
# resp = client.search_quick_connects({
|
8824
|
+
# instance_id: "InstanceId", # required
|
8825
|
+
# next_token: "NextToken2500",
|
8826
|
+
# max_results: 1,
|
8827
|
+
# search_filter: {
|
8828
|
+
# tag_filter: {
|
8829
|
+
# or_conditions: [
|
8830
|
+
# [
|
8831
|
+
# {
|
8832
|
+
# tag_key: "String",
|
8833
|
+
# tag_value: "String",
|
8834
|
+
# },
|
8835
|
+
# ],
|
8836
|
+
# ],
|
8837
|
+
# and_conditions: [
|
8838
|
+
# {
|
8839
|
+
# tag_key: "String",
|
8840
|
+
# tag_value: "String",
|
8841
|
+
# },
|
8842
|
+
# ],
|
8843
|
+
# tag_condition: {
|
8844
|
+
# tag_key: "String",
|
8845
|
+
# tag_value: "String",
|
8846
|
+
# },
|
8847
|
+
# },
|
8848
|
+
# },
|
8849
|
+
# search_criteria: {
|
8850
|
+
# or_conditions: [
|
8851
|
+
# {
|
8852
|
+
# # recursive QuickConnectSearchCriteria
|
8853
|
+
# },
|
8854
|
+
# ],
|
8855
|
+
# and_conditions: [
|
8856
|
+
# {
|
8857
|
+
# # recursive QuickConnectSearchCriteria
|
8858
|
+
# },
|
8859
|
+
# ],
|
8860
|
+
# string_condition: {
|
8861
|
+
# field_name: "String",
|
8862
|
+
# value: "String",
|
8863
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8864
|
+
# },
|
8865
|
+
# },
|
8866
|
+
# })
|
8867
|
+
#
|
8868
|
+
# @example Response structure
|
8869
|
+
#
|
8870
|
+
# resp.quick_connects #=> Array
|
8871
|
+
# resp.quick_connects[0].quick_connect_arn #=> String
|
8872
|
+
# resp.quick_connects[0].quick_connect_id #=> String
|
8873
|
+
# resp.quick_connects[0].name #=> String
|
8874
|
+
# resp.quick_connects[0].description #=> String
|
8875
|
+
# resp.quick_connects[0].quick_connect_config.quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
|
8876
|
+
# resp.quick_connects[0].quick_connect_config.user_config.user_id #=> String
|
8877
|
+
# resp.quick_connects[0].quick_connect_config.user_config.contact_flow_id #=> String
|
8878
|
+
# resp.quick_connects[0].quick_connect_config.queue_config.queue_id #=> String
|
8879
|
+
# resp.quick_connects[0].quick_connect_config.queue_config.contact_flow_id #=> String
|
8880
|
+
# resp.quick_connects[0].quick_connect_config.phone_config.phone_number #=> String
|
8881
|
+
# resp.quick_connects[0].tags #=> Hash
|
8882
|
+
# resp.quick_connects[0].tags["TagKey"] #=> String
|
8883
|
+
# resp.next_token #=> String
|
8884
|
+
# resp.approximate_total_count #=> Integer
|
8885
|
+
#
|
8886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQuickConnects AWS API Documentation
|
8887
|
+
#
|
8888
|
+
# @overload search_quick_connects(params = {})
|
8889
|
+
# @param [Hash] params ({})
|
8890
|
+
def search_quick_connects(params = {}, options = {})
|
8891
|
+
req = build_request(:search_quick_connects, params)
|
8892
|
+
req.send_request(options)
|
8893
|
+
end
|
8894
|
+
|
8579
8895
|
# This API is in preview release for Amazon Connect and is subject to
|
8580
8896
|
# change.
|
8581
8897
|
#
|
@@ -12113,7 +12429,7 @@ module Aws::Connect
|
|
12113
12429
|
params: params,
|
12114
12430
|
config: config)
|
12115
12431
|
context[:gem_name] = 'aws-sdk-connect'
|
12116
|
-
context[:gem_version] = '1.
|
12432
|
+
context[:gem_version] = '1.112.0'
|
12117
12433
|
Seahorse::Client::Request.new(handlers, context)
|
12118
12434
|
end
|
12119
12435
|
|
@@ -393,7 +393,11 @@ module Aws::Connect
|
|
393
393
|
HoursOfOperationDays = Shapes::StringShape.new(name: 'HoursOfOperationDays')
|
394
394
|
HoursOfOperationDescription = Shapes::StringShape.new(name: 'HoursOfOperationDescription')
|
395
395
|
HoursOfOperationId = Shapes::StringShape.new(name: 'HoursOfOperationId')
|
396
|
+
HoursOfOperationList = Shapes::ListShape.new(name: 'HoursOfOperationList')
|
396
397
|
HoursOfOperationName = Shapes::StringShape.new(name: 'HoursOfOperationName')
|
398
|
+
HoursOfOperationSearchConditionList = Shapes::ListShape.new(name: 'HoursOfOperationSearchConditionList')
|
399
|
+
HoursOfOperationSearchCriteria = Shapes::StructureShape.new(name: 'HoursOfOperationSearchCriteria')
|
400
|
+
HoursOfOperationSearchFilter = Shapes::StructureShape.new(name: 'HoursOfOperationSearchFilter')
|
397
401
|
HoursOfOperationSummary = Shapes::StructureShape.new(name: 'HoursOfOperationSummary')
|
398
402
|
HoursOfOperationSummaryList = Shapes::ListShape.new(name: 'HoursOfOperationSummaryList')
|
399
403
|
HoursOfOperationTimeSlice = Shapes::StructureShape.new(name: 'HoursOfOperationTimeSlice')
|
@@ -592,8 +596,12 @@ module Aws::Connect
|
|
592
596
|
Prompt = Shapes::StructureShape.new(name: 'Prompt')
|
593
597
|
PromptDescription = Shapes::StringShape.new(name: 'PromptDescription')
|
594
598
|
PromptId = Shapes::StringShape.new(name: 'PromptId')
|
599
|
+
PromptList = Shapes::ListShape.new(name: 'PromptList')
|
595
600
|
PromptName = Shapes::StringShape.new(name: 'PromptName')
|
596
601
|
PromptPresignedUrl = Shapes::StringShape.new(name: 'PromptPresignedUrl')
|
602
|
+
PromptSearchConditionList = Shapes::ListShape.new(name: 'PromptSearchConditionList')
|
603
|
+
PromptSearchCriteria = Shapes::StructureShape.new(name: 'PromptSearchCriteria')
|
604
|
+
PromptSearchFilter = Shapes::StructureShape.new(name: 'PromptSearchFilter')
|
597
605
|
PromptSummary = Shapes::StructureShape.new(name: 'PromptSummary')
|
598
606
|
PromptSummaryList = Shapes::ListShape.new(name: 'PromptSummaryList')
|
599
607
|
PropertyValidationException = Shapes::StructureShape.new(name: 'PropertyValidationException')
|
@@ -625,6 +633,10 @@ module Aws::Connect
|
|
625
633
|
QuickConnectDescription = Shapes::StringShape.new(name: 'QuickConnectDescription')
|
626
634
|
QuickConnectId = Shapes::StringShape.new(name: 'QuickConnectId')
|
627
635
|
QuickConnectName = Shapes::StringShape.new(name: 'QuickConnectName')
|
636
|
+
QuickConnectSearchConditionList = Shapes::ListShape.new(name: 'QuickConnectSearchConditionList')
|
637
|
+
QuickConnectSearchCriteria = Shapes::StructureShape.new(name: 'QuickConnectSearchCriteria')
|
638
|
+
QuickConnectSearchFilter = Shapes::StructureShape.new(name: 'QuickConnectSearchFilter')
|
639
|
+
QuickConnectSearchSummaryList = Shapes::ListShape.new(name: 'QuickConnectSearchSummaryList')
|
628
640
|
QuickConnectSummary = Shapes::StructureShape.new(name: 'QuickConnectSummary')
|
629
641
|
QuickConnectSummaryList = Shapes::ListShape.new(name: 'QuickConnectSummaryList')
|
630
642
|
QuickConnectType = Shapes::StringShape.new(name: 'QuickConnectType')
|
@@ -688,8 +700,14 @@ module Aws::Connect
|
|
688
700
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
689
701
|
SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
|
690
702
|
SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
|
703
|
+
SearchHoursOfOperationsRequest = Shapes::StructureShape.new(name: 'SearchHoursOfOperationsRequest')
|
704
|
+
SearchHoursOfOperationsResponse = Shapes::StructureShape.new(name: 'SearchHoursOfOperationsResponse')
|
705
|
+
SearchPromptsRequest = Shapes::StructureShape.new(name: 'SearchPromptsRequest')
|
706
|
+
SearchPromptsResponse = Shapes::StructureShape.new(name: 'SearchPromptsResponse')
|
691
707
|
SearchQueuesRequest = Shapes::StructureShape.new(name: 'SearchQueuesRequest')
|
692
708
|
SearchQueuesResponse = Shapes::StructureShape.new(name: 'SearchQueuesResponse')
|
709
|
+
SearchQuickConnectsRequest = Shapes::StructureShape.new(name: 'SearchQuickConnectsRequest')
|
710
|
+
SearchQuickConnectsResponse = Shapes::StructureShape.new(name: 'SearchQuickConnectsResponse')
|
693
711
|
SearchRoutingProfilesRequest = Shapes::StructureShape.new(name: 'SearchRoutingProfilesRequest')
|
694
712
|
SearchRoutingProfilesResponse = Shapes::StructureShape.new(name: 'SearchRoutingProfilesResponse')
|
695
713
|
SearchSecurityProfilesRequest = Shapes::StructureShape.new(name: 'SearchSecurityProfilesRequest')
|
@@ -2211,6 +2229,18 @@ module Aws::Connect
|
|
2211
2229
|
|
2212
2230
|
HoursOfOperationConfigList.member = Shapes::ShapeRef.new(shape: HoursOfOperationConfig)
|
2213
2231
|
|
2232
|
+
HoursOfOperationList.member = Shapes::ShapeRef.new(shape: HoursOfOperation)
|
2233
|
+
|
2234
|
+
HoursOfOperationSearchConditionList.member = Shapes::ShapeRef.new(shape: HoursOfOperationSearchCriteria)
|
2235
|
+
|
2236
|
+
HoursOfOperationSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: HoursOfOperationSearchConditionList, location_name: "OrConditions"))
|
2237
|
+
HoursOfOperationSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: HoursOfOperationSearchConditionList, location_name: "AndConditions"))
|
2238
|
+
HoursOfOperationSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
2239
|
+
HoursOfOperationSearchCriteria.struct_class = Types::HoursOfOperationSearchCriteria
|
2240
|
+
|
2241
|
+
HoursOfOperationSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
|
2242
|
+
HoursOfOperationSearchFilter.struct_class = Types::HoursOfOperationSearchFilter
|
2243
|
+
|
2214
2244
|
HoursOfOperationSummary.add_member(:id, Shapes::ShapeRef.new(shape: HoursOfOperationId, location_name: "Id"))
|
2215
2245
|
HoursOfOperationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2216
2246
|
HoursOfOperationSummary.add_member(:name, Shapes::ShapeRef.new(shape: HoursOfOperationName, location_name: "Name"))
|
@@ -2799,6 +2829,18 @@ module Aws::Connect
|
|
2799
2829
|
Prompt.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
2800
2830
|
Prompt.struct_class = Types::Prompt
|
2801
2831
|
|
2832
|
+
PromptList.member = Shapes::ShapeRef.new(shape: Prompt)
|
2833
|
+
|
2834
|
+
PromptSearchConditionList.member = Shapes::ShapeRef.new(shape: PromptSearchCriteria)
|
2835
|
+
|
2836
|
+
PromptSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: PromptSearchConditionList, location_name: "OrConditions"))
|
2837
|
+
PromptSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: PromptSearchConditionList, location_name: "AndConditions"))
|
2838
|
+
PromptSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
2839
|
+
PromptSearchCriteria.struct_class = Types::PromptSearchCriteria
|
2840
|
+
|
2841
|
+
PromptSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
|
2842
|
+
PromptSearchFilter.struct_class = Types::PromptSearchFilter
|
2843
|
+
|
2802
2844
|
PromptSummary.add_member(:id, Shapes::ShapeRef.new(shape: PromptId, location_name: "Id"))
|
2803
2845
|
PromptSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2804
2846
|
PromptSummary.add_member(:name, Shapes::ShapeRef.new(shape: PromptName, location_name: "Name"))
|
@@ -2886,6 +2928,18 @@ module Aws::Connect
|
|
2886
2928
|
QuickConnectConfig.add_member(:phone_config, Shapes::ShapeRef.new(shape: PhoneNumberQuickConnectConfig, location_name: "PhoneConfig"))
|
2887
2929
|
QuickConnectConfig.struct_class = Types::QuickConnectConfig
|
2888
2930
|
|
2931
|
+
QuickConnectSearchConditionList.member = Shapes::ShapeRef.new(shape: QuickConnectSearchCriteria)
|
2932
|
+
|
2933
|
+
QuickConnectSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: QuickConnectSearchConditionList, location_name: "OrConditions"))
|
2934
|
+
QuickConnectSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: QuickConnectSearchConditionList, location_name: "AndConditions"))
|
2935
|
+
QuickConnectSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
2936
|
+
QuickConnectSearchCriteria.struct_class = Types::QuickConnectSearchCriteria
|
2937
|
+
|
2938
|
+
QuickConnectSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
|
2939
|
+
QuickConnectSearchFilter.struct_class = Types::QuickConnectSearchFilter
|
2940
|
+
|
2941
|
+
QuickConnectSearchSummaryList.member = Shapes::ShapeRef.new(shape: QuickConnect)
|
2942
|
+
|
2889
2943
|
QuickConnectSummary.add_member(:id, Shapes::ShapeRef.new(shape: QuickConnectId, location_name: "Id"))
|
2890
2944
|
QuickConnectSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2891
2945
|
QuickConnectSummary.add_member(:name, Shapes::ShapeRef.new(shape: QuickConnectName, location_name: "Name"))
|
@@ -3082,6 +3136,30 @@ module Aws::Connect
|
|
3082
3136
|
SearchAvailablePhoneNumbersResponse.add_member(:available_numbers_list, Shapes::ShapeRef.new(shape: AvailableNumbersList, location_name: "AvailableNumbersList"))
|
3083
3137
|
SearchAvailablePhoneNumbersResponse.struct_class = Types::SearchAvailablePhoneNumbersResponse
|
3084
3138
|
|
3139
|
+
SearchHoursOfOperationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3140
|
+
SearchHoursOfOperationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3141
|
+
SearchHoursOfOperationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
3142
|
+
SearchHoursOfOperationsRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: HoursOfOperationSearchFilter, location_name: "SearchFilter"))
|
3143
|
+
SearchHoursOfOperationsRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: HoursOfOperationSearchCriteria, location_name: "SearchCriteria"))
|
3144
|
+
SearchHoursOfOperationsRequest.struct_class = Types::SearchHoursOfOperationsRequest
|
3145
|
+
|
3146
|
+
SearchHoursOfOperationsResponse.add_member(:hours_of_operations, Shapes::ShapeRef.new(shape: HoursOfOperationList, location_name: "HoursOfOperations"))
|
3147
|
+
SearchHoursOfOperationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3148
|
+
SearchHoursOfOperationsResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
3149
|
+
SearchHoursOfOperationsResponse.struct_class = Types::SearchHoursOfOperationsResponse
|
3150
|
+
|
3151
|
+
SearchPromptsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3152
|
+
SearchPromptsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3153
|
+
SearchPromptsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
3154
|
+
SearchPromptsRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: PromptSearchFilter, location_name: "SearchFilter"))
|
3155
|
+
SearchPromptsRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: PromptSearchCriteria, location_name: "SearchCriteria"))
|
3156
|
+
SearchPromptsRequest.struct_class = Types::SearchPromptsRequest
|
3157
|
+
|
3158
|
+
SearchPromptsResponse.add_member(:prompts, Shapes::ShapeRef.new(shape: PromptList, location_name: "Prompts"))
|
3159
|
+
SearchPromptsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3160
|
+
SearchPromptsResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
3161
|
+
SearchPromptsResponse.struct_class = Types::SearchPromptsResponse
|
3162
|
+
|
3085
3163
|
SearchQueuesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3086
3164
|
SearchQueuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3087
3165
|
SearchQueuesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
@@ -3094,6 +3172,18 @@ module Aws::Connect
|
|
3094
3172
|
SearchQueuesResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
3095
3173
|
SearchQueuesResponse.struct_class = Types::SearchQueuesResponse
|
3096
3174
|
|
3175
|
+
SearchQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3176
|
+
SearchQuickConnectsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3177
|
+
SearchQuickConnectsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
3178
|
+
SearchQuickConnectsRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: QuickConnectSearchFilter, location_name: "SearchFilter"))
|
3179
|
+
SearchQuickConnectsRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: QuickConnectSearchCriteria, location_name: "SearchCriteria"))
|
3180
|
+
SearchQuickConnectsRequest.struct_class = Types::SearchQuickConnectsRequest
|
3181
|
+
|
3182
|
+
SearchQuickConnectsResponse.add_member(:quick_connects, Shapes::ShapeRef.new(shape: QuickConnectSearchSummaryList, location_name: "QuickConnects"))
|
3183
|
+
SearchQuickConnectsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3184
|
+
SearchQuickConnectsResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
3185
|
+
SearchQuickConnectsResponse.struct_class = Types::SearchQuickConnectsResponse
|
3186
|
+
|
3097
3187
|
SearchRoutingProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3098
3188
|
SearchRoutingProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3099
3189
|
SearchRoutingProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
@@ -5876,6 +5966,44 @@ module Aws::Connect
|
|
5876
5966
|
)
|
5877
5967
|
end)
|
5878
5968
|
|
5969
|
+
api.add_operation(:search_hours_of_operations, Seahorse::Model::Operation.new.tap do |o|
|
5970
|
+
o.name = "SearchHoursOfOperations"
|
5971
|
+
o.http_method = "POST"
|
5972
|
+
o.http_request_uri = "/search-hours-of-operations"
|
5973
|
+
o.input = Shapes::ShapeRef.new(shape: SearchHoursOfOperationsRequest)
|
5974
|
+
o.output = Shapes::ShapeRef.new(shape: SearchHoursOfOperationsResponse)
|
5975
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
5976
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
5977
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
5978
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
5979
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5980
|
+
o[:pager] = Aws::Pager.new(
|
5981
|
+
limit_key: "max_results",
|
5982
|
+
tokens: {
|
5983
|
+
"next_token" => "next_token"
|
5984
|
+
}
|
5985
|
+
)
|
5986
|
+
end)
|
5987
|
+
|
5988
|
+
api.add_operation(:search_prompts, Seahorse::Model::Operation.new.tap do |o|
|
5989
|
+
o.name = "SearchPrompts"
|
5990
|
+
o.http_method = "POST"
|
5991
|
+
o.http_request_uri = "/search-prompts"
|
5992
|
+
o.input = Shapes::ShapeRef.new(shape: SearchPromptsRequest)
|
5993
|
+
o.output = Shapes::ShapeRef.new(shape: SearchPromptsResponse)
|
5994
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
5995
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
5996
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
5997
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
5998
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5999
|
+
o[:pager] = Aws::Pager.new(
|
6000
|
+
limit_key: "max_results",
|
6001
|
+
tokens: {
|
6002
|
+
"next_token" => "next_token"
|
6003
|
+
}
|
6004
|
+
)
|
6005
|
+
end)
|
6006
|
+
|
5879
6007
|
api.add_operation(:search_queues, Seahorse::Model::Operation.new.tap do |o|
|
5880
6008
|
o.name = "SearchQueues"
|
5881
6009
|
o.http_method = "POST"
|
@@ -5895,6 +6023,25 @@ module Aws::Connect
|
|
5895
6023
|
)
|
5896
6024
|
end)
|
5897
6025
|
|
6026
|
+
api.add_operation(:search_quick_connects, Seahorse::Model::Operation.new.tap do |o|
|
6027
|
+
o.name = "SearchQuickConnects"
|
6028
|
+
o.http_method = "POST"
|
6029
|
+
o.http_request_uri = "/search-quick-connects"
|
6030
|
+
o.input = Shapes::ShapeRef.new(shape: SearchQuickConnectsRequest)
|
6031
|
+
o.output = Shapes::ShapeRef.new(shape: SearchQuickConnectsResponse)
|
6032
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
6033
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
6034
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
6035
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
6036
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
6037
|
+
o[:pager] = Aws::Pager.new(
|
6038
|
+
limit_key: "max_results",
|
6039
|
+
tokens: {
|
6040
|
+
"next_token" => "next_token"
|
6041
|
+
}
|
6042
|
+
)
|
6043
|
+
end)
|
6044
|
+
|
5898
6045
|
api.add_operation(:search_routing_profiles, Seahorse::Model::Operation.new.tap do |o|
|
5899
6046
|
o.name = "SearchRoutingProfiles"
|
5900
6047
|
o.http_method = "POST"
|
@@ -1859,6 +1859,34 @@ module Aws::Connect
|
|
1859
1859
|
end
|
1860
1860
|
end
|
1861
1861
|
|
1862
|
+
class SearchHoursOfOperations
|
1863
|
+
def self.build(context)
|
1864
|
+
unless context.config.regional_endpoint
|
1865
|
+
endpoint = context.config.endpoint.to_s
|
1866
|
+
end
|
1867
|
+
Aws::Connect::EndpointParameters.new(
|
1868
|
+
region: context.config.region,
|
1869
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1870
|
+
use_fips: context.config.use_fips_endpoint,
|
1871
|
+
endpoint: endpoint,
|
1872
|
+
)
|
1873
|
+
end
|
1874
|
+
end
|
1875
|
+
|
1876
|
+
class SearchPrompts
|
1877
|
+
def self.build(context)
|
1878
|
+
unless context.config.regional_endpoint
|
1879
|
+
endpoint = context.config.endpoint.to_s
|
1880
|
+
end
|
1881
|
+
Aws::Connect::EndpointParameters.new(
|
1882
|
+
region: context.config.region,
|
1883
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1884
|
+
use_fips: context.config.use_fips_endpoint,
|
1885
|
+
endpoint: endpoint,
|
1886
|
+
)
|
1887
|
+
end
|
1888
|
+
end
|
1889
|
+
|
1862
1890
|
class SearchQueues
|
1863
1891
|
def self.build(context)
|
1864
1892
|
unless context.config.regional_endpoint
|
@@ -1873,6 +1901,20 @@ module Aws::Connect
|
|
1873
1901
|
end
|
1874
1902
|
end
|
1875
1903
|
|
1904
|
+
class SearchQuickConnects
|
1905
|
+
def self.build(context)
|
1906
|
+
unless context.config.regional_endpoint
|
1907
|
+
endpoint = context.config.endpoint.to_s
|
1908
|
+
end
|
1909
|
+
Aws::Connect::EndpointParameters.new(
|
1910
|
+
region: context.config.region,
|
1911
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1912
|
+
use_fips: context.config.use_fips_endpoint,
|
1913
|
+
endpoint: endpoint,
|
1914
|
+
)
|
1915
|
+
end
|
1916
|
+
end
|
1917
|
+
|
1876
1918
|
class SearchRoutingProfiles
|
1877
1919
|
def self.build(context)
|
1878
1920
|
unless context.config.regional_endpoint
|
@@ -320,8 +320,14 @@ module Aws::Connect
|
|
320
320
|
Aws::Connect::Endpoints::ResumeContactRecording.build(context)
|
321
321
|
when :search_available_phone_numbers
|
322
322
|
Aws::Connect::Endpoints::SearchAvailablePhoneNumbers.build(context)
|
323
|
+
when :search_hours_of_operations
|
324
|
+
Aws::Connect::Endpoints::SearchHoursOfOperations.build(context)
|
325
|
+
when :search_prompts
|
326
|
+
Aws::Connect::Endpoints::SearchPrompts.build(context)
|
323
327
|
when :search_queues
|
324
328
|
Aws::Connect::Endpoints::SearchQueues.build(context)
|
329
|
+
when :search_quick_connects
|
330
|
+
Aws::Connect::Endpoints::SearchQuickConnects.build(context)
|
325
331
|
when :search_routing_profiles
|
326
332
|
Aws::Connect::Endpoints::SearchRoutingProfiles.build(context)
|
327
333
|
when :search_security_profiles
|
@@ -6931,6 +6931,60 @@ module Aws::Connect
|
|
6931
6931
|
include Aws::Structure
|
6932
6932
|
end
|
6933
6933
|
|
6934
|
+
# The search criteria to be used to return hours of operations.
|
6935
|
+
#
|
6936
|
+
# @!attribute [rw] or_conditions
|
6937
|
+
# A list of conditions which would be applied together with an OR
|
6938
|
+
# condition.
|
6939
|
+
# @return [Array<Types::HoursOfOperationSearchCriteria>]
|
6940
|
+
#
|
6941
|
+
# @!attribute [rw] and_conditions
|
6942
|
+
# A list of conditions which would be applied together with an AND
|
6943
|
+
# condition.
|
6944
|
+
# @return [Array<Types::HoursOfOperationSearchCriteria>]
|
6945
|
+
#
|
6946
|
+
# @!attribute [rw] string_condition
|
6947
|
+
# A leaf node condition which can be used to specify a string
|
6948
|
+
# condition.
|
6949
|
+
#
|
6950
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
6951
|
+
# `description`, `timezone`, and `resourceID`.
|
6952
|
+
#
|
6953
|
+
# </note>
|
6954
|
+
# @return [Types::StringCondition]
|
6955
|
+
#
|
6956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationSearchCriteria AWS API Documentation
|
6957
|
+
#
|
6958
|
+
class HoursOfOperationSearchCriteria < Struct.new(
|
6959
|
+
:or_conditions,
|
6960
|
+
:and_conditions,
|
6961
|
+
:string_condition)
|
6962
|
+
SENSITIVE = []
|
6963
|
+
include Aws::Structure
|
6964
|
+
end
|
6965
|
+
|
6966
|
+
# Filters to be applied to search results.
|
6967
|
+
#
|
6968
|
+
# @!attribute [rw] tag_filter
|
6969
|
+
# An object that can be used to specify Tag conditions inside the
|
6970
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
6971
|
+
# where:
|
6972
|
+
#
|
6973
|
+
# * Top level list specifies conditions that need to be applied with
|
6974
|
+
# `OR` operator
|
6975
|
+
#
|
6976
|
+
# * Inner list specifies conditions that need to be applied with `AND`
|
6977
|
+
# operator.
|
6978
|
+
# @return [Types::ControlPlaneTagFilter]
|
6979
|
+
#
|
6980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationSearchFilter AWS API Documentation
|
6981
|
+
#
|
6982
|
+
class HoursOfOperationSearchFilter < Struct.new(
|
6983
|
+
:tag_filter)
|
6984
|
+
SENSITIVE = []
|
6985
|
+
include Aws::Structure
|
6986
|
+
end
|
6987
|
+
|
6934
6988
|
# Contains summary information about hours of operation for a contact
|
6935
6989
|
# center.
|
6936
6990
|
#
|
@@ -9860,7 +9914,7 @@ module Aws::Connect
|
|
9860
9914
|
# @return [String]
|
9861
9915
|
#
|
9862
9916
|
# @!attribute [rw] description
|
9863
|
-
#
|
9917
|
+
# The description of the prompt.
|
9864
9918
|
# @return [String]
|
9865
9919
|
#
|
9866
9920
|
# @!attribute [rw] tags
|
@@ -9881,6 +9935,60 @@ module Aws::Connect
|
|
9881
9935
|
include Aws::Structure
|
9882
9936
|
end
|
9883
9937
|
|
9938
|
+
# The search criteria to be used to return prompts.
|
9939
|
+
#
|
9940
|
+
# @!attribute [rw] or_conditions
|
9941
|
+
# A list of conditions which would be applied together with an OR
|
9942
|
+
# condition.
|
9943
|
+
# @return [Array<Types::PromptSearchCriteria>]
|
9944
|
+
#
|
9945
|
+
# @!attribute [rw] and_conditions
|
9946
|
+
# A list of conditions which would be applied together with an AND
|
9947
|
+
# condition.
|
9948
|
+
# @return [Array<Types::PromptSearchCriteria>]
|
9949
|
+
#
|
9950
|
+
# @!attribute [rw] string_condition
|
9951
|
+
# A leaf node condition which can be used to specify a string
|
9952
|
+
# condition.
|
9953
|
+
#
|
9954
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
9955
|
+
# `description`, and `resourceID`.
|
9956
|
+
#
|
9957
|
+
# </note>
|
9958
|
+
# @return [Types::StringCondition]
|
9959
|
+
#
|
9960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PromptSearchCriteria AWS API Documentation
|
9961
|
+
#
|
9962
|
+
class PromptSearchCriteria < Struct.new(
|
9963
|
+
:or_conditions,
|
9964
|
+
:and_conditions,
|
9965
|
+
:string_condition)
|
9966
|
+
SENSITIVE = []
|
9967
|
+
include Aws::Structure
|
9968
|
+
end
|
9969
|
+
|
9970
|
+
# Filters to be applied to search results.
|
9971
|
+
#
|
9972
|
+
# @!attribute [rw] tag_filter
|
9973
|
+
# An object that can be used to specify Tag conditions inside the
|
9974
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
9975
|
+
# where:
|
9976
|
+
#
|
9977
|
+
# * Top level list specifies conditions that need to be applied with
|
9978
|
+
# `OR` operator
|
9979
|
+
#
|
9980
|
+
# * Inner list specifies conditions that need to be applied with `AND`
|
9981
|
+
# operator.
|
9982
|
+
# @return [Types::ControlPlaneTagFilter]
|
9983
|
+
#
|
9984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PromptSearchFilter AWS API Documentation
|
9985
|
+
#
|
9986
|
+
class PromptSearchFilter < Struct.new(
|
9987
|
+
:tag_filter)
|
9988
|
+
SENSITIVE = []
|
9989
|
+
include Aws::Structure
|
9990
|
+
end
|
9991
|
+
|
9884
9992
|
# Contains information about the prompt.
|
9885
9993
|
#
|
9886
9994
|
# @!attribute [rw] id
|
@@ -10116,7 +10224,8 @@ module Aws::Connect
|
|
10116
10224
|
# A leaf node condition which can be used to specify a string
|
10117
10225
|
# condition.
|
10118
10226
|
#
|
10119
|
-
# <note markdown="1"> The currently supported
|
10227
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
10228
|
+
# `description`, and `resourceID`.
|
10120
10229
|
#
|
10121
10230
|
# </note>
|
10122
10231
|
# @return [Types::StringCondition]
|
@@ -10263,6 +10372,60 @@ module Aws::Connect
|
|
10263
10372
|
include Aws::Structure
|
10264
10373
|
end
|
10265
10374
|
|
10375
|
+
# The search criteria to be used to return quick connects.
|
10376
|
+
#
|
10377
|
+
# @!attribute [rw] or_conditions
|
10378
|
+
# A list of conditions which would be applied together with an OR
|
10379
|
+
# condition.
|
10380
|
+
# @return [Array<Types::QuickConnectSearchCriteria>]
|
10381
|
+
#
|
10382
|
+
# @!attribute [rw] and_conditions
|
10383
|
+
# A list of conditions which would be applied together with an AND
|
10384
|
+
# condition.
|
10385
|
+
# @return [Array<Types::QuickConnectSearchCriteria>]
|
10386
|
+
#
|
10387
|
+
# @!attribute [rw] string_condition
|
10388
|
+
# A leaf node condition which can be used to specify a string
|
10389
|
+
# condition.
|
10390
|
+
#
|
10391
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
10392
|
+
# `description`, and `resourceID`.
|
10393
|
+
#
|
10394
|
+
# </note>
|
10395
|
+
# @return [Types::StringCondition]
|
10396
|
+
#
|
10397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnectSearchCriteria AWS API Documentation
|
10398
|
+
#
|
10399
|
+
class QuickConnectSearchCriteria < Struct.new(
|
10400
|
+
:or_conditions,
|
10401
|
+
:and_conditions,
|
10402
|
+
:string_condition)
|
10403
|
+
SENSITIVE = []
|
10404
|
+
include Aws::Structure
|
10405
|
+
end
|
10406
|
+
|
10407
|
+
# Filters to be applied to search results.
|
10408
|
+
#
|
10409
|
+
# @!attribute [rw] tag_filter
|
10410
|
+
# An object that can be used to specify Tag conditions inside the
|
10411
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
10412
|
+
# where:
|
10413
|
+
#
|
10414
|
+
# * Top level list specifies conditions that need to be applied with
|
10415
|
+
# `OR` operator
|
10416
|
+
#
|
10417
|
+
# * Inner list specifies conditions that need to be applied with `AND`
|
10418
|
+
# operator.
|
10419
|
+
# @return [Types::ControlPlaneTagFilter]
|
10420
|
+
#
|
10421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnectSearchFilter AWS API Documentation
|
10422
|
+
#
|
10423
|
+
class QuickConnectSearchFilter < Struct.new(
|
10424
|
+
:tag_filter)
|
10425
|
+
SENSITIVE = []
|
10426
|
+
include Aws::Structure
|
10427
|
+
end
|
10428
|
+
|
10266
10429
|
# Contains summary information about a quick connect.
|
10267
10430
|
#
|
10268
10431
|
# @!attribute [rw] id
|
@@ -10808,7 +10971,8 @@ module Aws::Connect
|
|
10808
10971
|
# A leaf node condition which can be used to specify a string
|
10809
10972
|
# condition.
|
10810
10973
|
#
|
10811
|
-
# <note markdown="1"> The currently supported
|
10974
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
10975
|
+
# `description`, and `resourceID`.
|
10812
10976
|
#
|
10813
10977
|
# </note>
|
10814
10978
|
# @return [Types::StringCondition]
|
@@ -11129,6 +11293,131 @@ module Aws::Connect
|
|
11129
11293
|
include Aws::Structure
|
11130
11294
|
end
|
11131
11295
|
|
11296
|
+
# @!attribute [rw] instance_id
|
11297
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
11298
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
11299
|
+
#
|
11300
|
+
#
|
11301
|
+
#
|
11302
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
11303
|
+
# @return [String]
|
11304
|
+
#
|
11305
|
+
# @!attribute [rw] next_token
|
11306
|
+
# The token for the next set of results. Use the value returned in the
|
11307
|
+
# previous response in the next request to retrieve the next set of
|
11308
|
+
# results.
|
11309
|
+
# @return [String]
|
11310
|
+
#
|
11311
|
+
# @!attribute [rw] max_results
|
11312
|
+
# The maximum number of results to return per page.
|
11313
|
+
# @return [Integer]
|
11314
|
+
#
|
11315
|
+
# @!attribute [rw] search_filter
|
11316
|
+
# Filters to be applied to search results.
|
11317
|
+
# @return [Types::HoursOfOperationSearchFilter]
|
11318
|
+
#
|
11319
|
+
# @!attribute [rw] search_criteria
|
11320
|
+
# The search criteria to be used to return hours of operations.
|
11321
|
+
# @return [Types::HoursOfOperationSearchCriteria]
|
11322
|
+
#
|
11323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchHoursOfOperationsRequest AWS API Documentation
|
11324
|
+
#
|
11325
|
+
class SearchHoursOfOperationsRequest < Struct.new(
|
11326
|
+
:instance_id,
|
11327
|
+
:next_token,
|
11328
|
+
:max_results,
|
11329
|
+
:search_filter,
|
11330
|
+
:search_criteria)
|
11331
|
+
SENSITIVE = []
|
11332
|
+
include Aws::Structure
|
11333
|
+
end
|
11334
|
+
|
11335
|
+
# @!attribute [rw] hours_of_operations
|
11336
|
+
# Information about the hours of operations.
|
11337
|
+
# @return [Array<Types::HoursOfOperation>]
|
11338
|
+
#
|
11339
|
+
# @!attribute [rw] next_token
|
11340
|
+
# If there are additional results, this is the token for the next set
|
11341
|
+
# of results.
|
11342
|
+
# @return [String]
|
11343
|
+
#
|
11344
|
+
# @!attribute [rw] approximate_total_count
|
11345
|
+
# The total number of hours of operations which matched your search
|
11346
|
+
# query.
|
11347
|
+
# @return [Integer]
|
11348
|
+
#
|
11349
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchHoursOfOperationsResponse AWS API Documentation
|
11350
|
+
#
|
11351
|
+
class SearchHoursOfOperationsResponse < Struct.new(
|
11352
|
+
:hours_of_operations,
|
11353
|
+
:next_token,
|
11354
|
+
:approximate_total_count)
|
11355
|
+
SENSITIVE = []
|
11356
|
+
include Aws::Structure
|
11357
|
+
end
|
11358
|
+
|
11359
|
+
# @!attribute [rw] instance_id
|
11360
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
11361
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
11362
|
+
#
|
11363
|
+
#
|
11364
|
+
#
|
11365
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
11366
|
+
# @return [String]
|
11367
|
+
#
|
11368
|
+
# @!attribute [rw] next_token
|
11369
|
+
# The token for the next set of results. Use the value returned in the
|
11370
|
+
# previous response in the next request to retrieve the next set of
|
11371
|
+
# results.
|
11372
|
+
# @return [String]
|
11373
|
+
#
|
11374
|
+
# @!attribute [rw] max_results
|
11375
|
+
# The maximum number of results to return per page.
|
11376
|
+
# @return [Integer]
|
11377
|
+
#
|
11378
|
+
# @!attribute [rw] search_filter
|
11379
|
+
# Filters to be applied to search results.
|
11380
|
+
# @return [Types::PromptSearchFilter]
|
11381
|
+
#
|
11382
|
+
# @!attribute [rw] search_criteria
|
11383
|
+
# The search criteria to be used to return prompts.
|
11384
|
+
# @return [Types::PromptSearchCriteria]
|
11385
|
+
#
|
11386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchPromptsRequest AWS API Documentation
|
11387
|
+
#
|
11388
|
+
class SearchPromptsRequest < Struct.new(
|
11389
|
+
:instance_id,
|
11390
|
+
:next_token,
|
11391
|
+
:max_results,
|
11392
|
+
:search_filter,
|
11393
|
+
:search_criteria)
|
11394
|
+
SENSITIVE = []
|
11395
|
+
include Aws::Structure
|
11396
|
+
end
|
11397
|
+
|
11398
|
+
# @!attribute [rw] prompts
|
11399
|
+
# Information about the prompts.
|
11400
|
+
# @return [Array<Types::Prompt>]
|
11401
|
+
#
|
11402
|
+
# @!attribute [rw] next_token
|
11403
|
+
# If there are additional results, this is the token for the next set
|
11404
|
+
# of results.
|
11405
|
+
# @return [String]
|
11406
|
+
#
|
11407
|
+
# @!attribute [rw] approximate_total_count
|
11408
|
+
# The total number of quick connects which matched your search query.
|
11409
|
+
# @return [Integer]
|
11410
|
+
#
|
11411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchPromptsResponse AWS API Documentation
|
11412
|
+
#
|
11413
|
+
class SearchPromptsResponse < Struct.new(
|
11414
|
+
:prompts,
|
11415
|
+
:next_token,
|
11416
|
+
:approximate_total_count)
|
11417
|
+
SENSITIVE = []
|
11418
|
+
include Aws::Structure
|
11419
|
+
end
|
11420
|
+
|
11132
11421
|
# @!attribute [rw] instance_id
|
11133
11422
|
# The identifier of the Amazon Connect instance. You can [find the
|
11134
11423
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -11198,6 +11487,68 @@ module Aws::Connect
|
|
11198
11487
|
include Aws::Structure
|
11199
11488
|
end
|
11200
11489
|
|
11490
|
+
# @!attribute [rw] instance_id
|
11491
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
11492
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
11493
|
+
#
|
11494
|
+
#
|
11495
|
+
#
|
11496
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
11497
|
+
# @return [String]
|
11498
|
+
#
|
11499
|
+
# @!attribute [rw] next_token
|
11500
|
+
# The token for the next set of results. Use the value returned in the
|
11501
|
+
# previous response in the next request to retrieve the next set of
|
11502
|
+
# results.
|
11503
|
+
# @return [String]
|
11504
|
+
#
|
11505
|
+
# @!attribute [rw] max_results
|
11506
|
+
# The maximum number of results to return per page.
|
11507
|
+
# @return [Integer]
|
11508
|
+
#
|
11509
|
+
# @!attribute [rw] search_filter
|
11510
|
+
# Filters to be applied to search results.
|
11511
|
+
# @return [Types::QuickConnectSearchFilter]
|
11512
|
+
#
|
11513
|
+
# @!attribute [rw] search_criteria
|
11514
|
+
# The search criteria to be used to return quick connects.
|
11515
|
+
# @return [Types::QuickConnectSearchCriteria]
|
11516
|
+
#
|
11517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQuickConnectsRequest AWS API Documentation
|
11518
|
+
#
|
11519
|
+
class SearchQuickConnectsRequest < Struct.new(
|
11520
|
+
:instance_id,
|
11521
|
+
:next_token,
|
11522
|
+
:max_results,
|
11523
|
+
:search_filter,
|
11524
|
+
:search_criteria)
|
11525
|
+
SENSITIVE = []
|
11526
|
+
include Aws::Structure
|
11527
|
+
end
|
11528
|
+
|
11529
|
+
# @!attribute [rw] quick_connects
|
11530
|
+
# Information about the quick connects.
|
11531
|
+
# @return [Array<Types::QuickConnect>]
|
11532
|
+
#
|
11533
|
+
# @!attribute [rw] next_token
|
11534
|
+
# If there are additional results, this is the token for the next set
|
11535
|
+
# of results.
|
11536
|
+
# @return [String]
|
11537
|
+
#
|
11538
|
+
# @!attribute [rw] approximate_total_count
|
11539
|
+
# The total number of quick connects which matched your search query.
|
11540
|
+
# @return [Integer]
|
11541
|
+
#
|
11542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQuickConnectsResponse AWS API Documentation
|
11543
|
+
#
|
11544
|
+
class SearchQuickConnectsResponse < Struct.new(
|
11545
|
+
:quick_connects,
|
11546
|
+
:next_token,
|
11547
|
+
:approximate_total_count)
|
11548
|
+
SENSITIVE = []
|
11549
|
+
include Aws::Structure
|
11550
|
+
end
|
11551
|
+
|
11201
11552
|
# @!attribute [rw] instance_id
|
11202
11553
|
# The identifier of the Amazon Connect instance. You can [find the
|
11203
11554
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -11577,10 +11928,6 @@ module Aws::Connect
|
|
11577
11928
|
# @!attribute [rw] string_condition
|
11578
11929
|
# A leaf node condition which can be used to specify a string
|
11579
11930
|
# condition.
|
11580
|
-
#
|
11581
|
-
# <note markdown="1"> The currently supported value for `FieldName`: `name`
|
11582
|
-
#
|
11583
|
-
# </note>
|
11584
11931
|
# @return [Types::StringCondition]
|
11585
11932
|
#
|
11586
11933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfileSearchCriteria AWS API Documentation
|
@@ -12391,10 +12738,6 @@ module Aws::Connect
|
|
12391
12738
|
|
12392
12739
|
# A leaf node condition which can be used to specify a string condition.
|
12393
12740
|
#
|
12394
|
-
# <note markdown="1"> The currently supported value for `FieldName`: `name`
|
12395
|
-
#
|
12396
|
-
# </note>
|
12397
|
-
#
|
12398
12741
|
# @!attribute [rw] field_name
|
12399
12742
|
# The name of the field in the string condition.
|
12400
12743
|
# @return [String]
|
@@ -14919,6 +15262,11 @@ module Aws::Connect
|
|
14919
15262
|
# @!attribute [rw] string_condition
|
14920
15263
|
# A leaf node condition which can be used to specify a string
|
14921
15264
|
# condition.
|
15265
|
+
#
|
15266
|
+
# <note markdown="1"> The currently supported values for `FieldName` are `name`,
|
15267
|
+
# `description`, and `resourceID`.
|
15268
|
+
#
|
15269
|
+
# </note>
|
14922
15270
|
# @return [Types::StringCondition]
|
14923
15271
|
#
|
14924
15272
|
# @!attribute [rw] hierarchy_group_condition
|
data/lib/aws-sdk-connect.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.112.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|