aws-sdk-connect 1.75.0 → 1.76.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 +248 -7
- data/lib/aws-sdk-connect/client_api.rb +103 -0
- data/lib/aws-sdk-connect/types.rb +498 -5
- 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: 44b3dfb08baaeedf977b97035649bf0b7ff67bfb58165c81335917f86e35ee76
|
4
|
+
data.tar.gz: c8ff00ac5734742298ac774b1efdc8a85a6abec54c1e8162bcb8f080d6dfea73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63a1515aedf596446e1db2f73396a38c46336d4657274bdd31cae6036d6b778a9e6c2c99cd8257e0b7c9574bd7e6c63555cb6285b1d6740413151260017fd957
|
7
|
+
data.tar.gz: bd81080b9e65d7a4495702d6963a0010f7493003c0d6720a28d8a86d60017bcd4285d07f497d013a55cf3d430d149d91103c30603e414936bfef5ee31bec959d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.76.0 (2022-09-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds search APIs for Routing Profiles and Queues, which can be used to search for those resources within a Connect Instance.
|
8
|
+
|
4
9
|
1.75.0 (2022-08-19)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
@@ -1406,7 +1406,12 @@ module Aws::Connect
|
|
1406
1406
|
# The description of the security profile.
|
1407
1407
|
#
|
1408
1408
|
# @option params [Array<String>] :permissions
|
1409
|
-
# Permissions assigned to the security profile.
|
1409
|
+
# Permissions assigned to the security profile. For a list of valid
|
1410
|
+
# permissions, see [List of security profile permissions][1].
|
1411
|
+
#
|
1412
|
+
#
|
1413
|
+
#
|
1414
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
|
1410
1415
|
#
|
1411
1416
|
# @option params [required, String] :instance_id
|
1412
1417
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -2254,6 +2259,8 @@ module Aws::Connect
|
|
2254
2259
|
# Contact information remains available in Amazon Connect for 24 months,
|
2255
2260
|
# and then it is deleted.
|
2256
2261
|
#
|
2262
|
+
# Only data from November 12, 2021, and later is returned by this API.
|
2263
|
+
#
|
2257
2264
|
# @option params [required, String] :instance_id
|
2258
2265
|
# The identifier of the Amazon Connect instance. You can find the
|
2259
2266
|
# instanceId in the ARN of the instance.
|
@@ -2737,6 +2744,8 @@ module Aws::Connect
|
|
2737
2744
|
# resp.routing_profile.default_outbound_queue_id #=> String
|
2738
2745
|
# resp.routing_profile.tags #=> Hash
|
2739
2746
|
# resp.routing_profile.tags["TagKey"] #=> String
|
2747
|
+
# resp.routing_profile.number_of_associated_queues #=> Integer
|
2748
|
+
# resp.routing_profile.number_of_associated_users #=> Integer
|
2740
2749
|
#
|
2741
2750
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeRoutingProfile AWS API Documentation
|
2742
2751
|
#
|
@@ -4117,7 +4126,8 @@ module Aws::Connect
|
|
4117
4126
|
# change.
|
4118
4127
|
#
|
4119
4128
|
# For the specified version of Amazon Lex, returns a paginated list of
|
4120
|
-
# all the Amazon Lex bots currently associated with the instance.
|
4129
|
+
# all the Amazon Lex bots currently associated with the instance. Use
|
4130
|
+
# this API to returns both Amazon Lex V1 and V2 bots.
|
4121
4131
|
#
|
4122
4132
|
# @option params [required, String] :instance_id
|
4123
4133
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -4736,8 +4746,13 @@ module Aws::Connect
|
|
4736
4746
|
# This API is in preview release for Amazon Connect and is subject to
|
4737
4747
|
# change.
|
4738
4748
|
#
|
4739
|
-
# Returns a paginated list of all the Amazon Lex bots currently
|
4740
|
-
# associated with the instance.
|
4749
|
+
# Returns a paginated list of all the Amazon Lex V1 bots currently
|
4750
|
+
# associated with the instance. To return both Amazon Lex V1 and V2
|
4751
|
+
# bots, use the [ListBots][1] API.
|
4752
|
+
#
|
4753
|
+
#
|
4754
|
+
#
|
4755
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListBots.html
|
4741
4756
|
#
|
4742
4757
|
# @option params [required, String] :instance_id
|
4743
4758
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -5833,6 +5848,220 @@ module Aws::Connect
|
|
5833
5848
|
req.send_request(options)
|
5834
5849
|
end
|
5835
5850
|
|
5851
|
+
# This API is in preview release for Amazon Connect and is subject to
|
5852
|
+
# change.
|
5853
|
+
#
|
5854
|
+
# Searches queues in an Amazon Connect instance, with optional
|
5855
|
+
# filtering.
|
5856
|
+
#
|
5857
|
+
# @option params [required, String] :instance_id
|
5858
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5859
|
+
# instanceId in the ARN of the instance.
|
5860
|
+
#
|
5861
|
+
# @option params [String] :next_token
|
5862
|
+
# The token for the next set of results. Use the value returned in the
|
5863
|
+
# previous response in the next request to retrieve the next set of
|
5864
|
+
# results.
|
5865
|
+
#
|
5866
|
+
# @option params [Integer] :max_results
|
5867
|
+
# The maximum number of results to return per page.
|
5868
|
+
#
|
5869
|
+
# @option params [Types::QueueSearchFilter] :search_filter
|
5870
|
+
# Filters to be applied to search results.
|
5871
|
+
#
|
5872
|
+
# @option params [Types::QueueSearchCriteria] :search_criteria
|
5873
|
+
# The search criteria to be used to return queues.
|
5874
|
+
#
|
5875
|
+
# @return [Types::SearchQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5876
|
+
#
|
5877
|
+
# * {Types::SearchQueuesResponse#queues #queues} => Array<Types::Queue>
|
5878
|
+
# * {Types::SearchQueuesResponse#next_token #next_token} => String
|
5879
|
+
# * {Types::SearchQueuesResponse#approximate_total_count #approximate_total_count} => Integer
|
5880
|
+
#
|
5881
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5882
|
+
#
|
5883
|
+
# @example Request syntax with placeholder values
|
5884
|
+
#
|
5885
|
+
# resp = client.search_queues({
|
5886
|
+
# instance_id: "InstanceId", # required
|
5887
|
+
# next_token: "NextToken2500",
|
5888
|
+
# max_results: 1,
|
5889
|
+
# search_filter: {
|
5890
|
+
# tag_filter: {
|
5891
|
+
# or_conditions: [
|
5892
|
+
# [
|
5893
|
+
# {
|
5894
|
+
# tag_key: "String",
|
5895
|
+
# tag_value: "String",
|
5896
|
+
# },
|
5897
|
+
# ],
|
5898
|
+
# ],
|
5899
|
+
# and_conditions: [
|
5900
|
+
# {
|
5901
|
+
# tag_key: "String",
|
5902
|
+
# tag_value: "String",
|
5903
|
+
# },
|
5904
|
+
# ],
|
5905
|
+
# tag_condition: {
|
5906
|
+
# tag_key: "String",
|
5907
|
+
# tag_value: "String",
|
5908
|
+
# },
|
5909
|
+
# },
|
5910
|
+
# },
|
5911
|
+
# search_criteria: {
|
5912
|
+
# or_conditions: [
|
5913
|
+
# {
|
5914
|
+
# # recursive QueueSearchCriteria
|
5915
|
+
# },
|
5916
|
+
# ],
|
5917
|
+
# and_conditions: [
|
5918
|
+
# {
|
5919
|
+
# # recursive QueueSearchCriteria
|
5920
|
+
# },
|
5921
|
+
# ],
|
5922
|
+
# string_condition: {
|
5923
|
+
# field_name: "String",
|
5924
|
+
# value: "String",
|
5925
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
5926
|
+
# },
|
5927
|
+
# queue_type_condition: "STANDARD", # accepts STANDARD
|
5928
|
+
# },
|
5929
|
+
# })
|
5930
|
+
#
|
5931
|
+
# @example Response structure
|
5932
|
+
#
|
5933
|
+
# resp.queues #=> Array
|
5934
|
+
# resp.queues[0].name #=> String
|
5935
|
+
# resp.queues[0].queue_arn #=> String
|
5936
|
+
# resp.queues[0].queue_id #=> String
|
5937
|
+
# resp.queues[0].description #=> String
|
5938
|
+
# resp.queues[0].outbound_caller_config.outbound_caller_id_name #=> String
|
5939
|
+
# resp.queues[0].outbound_caller_config.outbound_caller_id_number_id #=> String
|
5940
|
+
# resp.queues[0].outbound_caller_config.outbound_flow_id #=> String
|
5941
|
+
# resp.queues[0].hours_of_operation_id #=> String
|
5942
|
+
# resp.queues[0].max_contacts #=> Integer
|
5943
|
+
# resp.queues[0].status #=> String, one of "ENABLED", "DISABLED"
|
5944
|
+
# resp.queues[0].tags #=> Hash
|
5945
|
+
# resp.queues[0].tags["TagKey"] #=> String
|
5946
|
+
# resp.next_token #=> String
|
5947
|
+
# resp.approximate_total_count #=> Integer
|
5948
|
+
#
|
5949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQueues AWS API Documentation
|
5950
|
+
#
|
5951
|
+
# @overload search_queues(params = {})
|
5952
|
+
# @param [Hash] params ({})
|
5953
|
+
def search_queues(params = {}, options = {})
|
5954
|
+
req = build_request(:search_queues, params)
|
5955
|
+
req.send_request(options)
|
5956
|
+
end
|
5957
|
+
|
5958
|
+
# This API is in preview release for Amazon Connect and is subject to
|
5959
|
+
# change.
|
5960
|
+
#
|
5961
|
+
# Searches routing profiles in an Amazon Connect instance, with optional
|
5962
|
+
# filtering.
|
5963
|
+
#
|
5964
|
+
# @option params [required, String] :instance_id
|
5965
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5966
|
+
# instanceId in the ARN of the instance.
|
5967
|
+
#
|
5968
|
+
# @option params [String] :next_token
|
5969
|
+
# The token for the next set of results. Use the value returned in the
|
5970
|
+
# previous response in the next request to retrieve the next set of
|
5971
|
+
# results.
|
5972
|
+
#
|
5973
|
+
# @option params [Integer] :max_results
|
5974
|
+
# The maximum number of results to return per page.
|
5975
|
+
#
|
5976
|
+
# @option params [Types::RoutingProfileSearchFilter] :search_filter
|
5977
|
+
# Filters to be applied to search results.
|
5978
|
+
#
|
5979
|
+
# @option params [Types::RoutingProfileSearchCriteria] :search_criteria
|
5980
|
+
# The search criteria to be used to return routing profiles.
|
5981
|
+
#
|
5982
|
+
# @return [Types::SearchRoutingProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5983
|
+
#
|
5984
|
+
# * {Types::SearchRoutingProfilesResponse#routing_profiles #routing_profiles} => Array<Types::RoutingProfile>
|
5985
|
+
# * {Types::SearchRoutingProfilesResponse#next_token #next_token} => String
|
5986
|
+
# * {Types::SearchRoutingProfilesResponse#approximate_total_count #approximate_total_count} => Integer
|
5987
|
+
#
|
5988
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5989
|
+
#
|
5990
|
+
# @example Request syntax with placeholder values
|
5991
|
+
#
|
5992
|
+
# resp = client.search_routing_profiles({
|
5993
|
+
# instance_id: "InstanceId", # required
|
5994
|
+
# next_token: "NextToken2500",
|
5995
|
+
# max_results: 1,
|
5996
|
+
# search_filter: {
|
5997
|
+
# tag_filter: {
|
5998
|
+
# or_conditions: [
|
5999
|
+
# [
|
6000
|
+
# {
|
6001
|
+
# tag_key: "String",
|
6002
|
+
# tag_value: "String",
|
6003
|
+
# },
|
6004
|
+
# ],
|
6005
|
+
# ],
|
6006
|
+
# and_conditions: [
|
6007
|
+
# {
|
6008
|
+
# tag_key: "String",
|
6009
|
+
# tag_value: "String",
|
6010
|
+
# },
|
6011
|
+
# ],
|
6012
|
+
# tag_condition: {
|
6013
|
+
# tag_key: "String",
|
6014
|
+
# tag_value: "String",
|
6015
|
+
# },
|
6016
|
+
# },
|
6017
|
+
# },
|
6018
|
+
# search_criteria: {
|
6019
|
+
# or_conditions: [
|
6020
|
+
# {
|
6021
|
+
# # recursive RoutingProfileSearchCriteria
|
6022
|
+
# },
|
6023
|
+
# ],
|
6024
|
+
# and_conditions: [
|
6025
|
+
# {
|
6026
|
+
# # recursive RoutingProfileSearchCriteria
|
6027
|
+
# },
|
6028
|
+
# ],
|
6029
|
+
# string_condition: {
|
6030
|
+
# field_name: "String",
|
6031
|
+
# value: "String",
|
6032
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
6033
|
+
# },
|
6034
|
+
# },
|
6035
|
+
# })
|
6036
|
+
#
|
6037
|
+
# @example Response structure
|
6038
|
+
#
|
6039
|
+
# resp.routing_profiles #=> Array
|
6040
|
+
# resp.routing_profiles[0].instance_id #=> String
|
6041
|
+
# resp.routing_profiles[0].name #=> String
|
6042
|
+
# resp.routing_profiles[0].routing_profile_arn #=> String
|
6043
|
+
# resp.routing_profiles[0].routing_profile_id #=> String
|
6044
|
+
# resp.routing_profiles[0].description #=> String
|
6045
|
+
# resp.routing_profiles[0].media_concurrencies #=> Array
|
6046
|
+
# resp.routing_profiles[0].media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
|
6047
|
+
# resp.routing_profiles[0].media_concurrencies[0].concurrency #=> Integer
|
6048
|
+
# resp.routing_profiles[0].default_outbound_queue_id #=> String
|
6049
|
+
# resp.routing_profiles[0].tags #=> Hash
|
6050
|
+
# resp.routing_profiles[0].tags["TagKey"] #=> String
|
6051
|
+
# resp.routing_profiles[0].number_of_associated_queues #=> Integer
|
6052
|
+
# resp.routing_profiles[0].number_of_associated_users #=> Integer
|
6053
|
+
# resp.next_token #=> String
|
6054
|
+
# resp.approximate_total_count #=> Integer
|
6055
|
+
#
|
6056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchRoutingProfiles AWS API Documentation
|
6057
|
+
#
|
6058
|
+
# @overload search_routing_profiles(params = {})
|
6059
|
+
# @param [Hash] params ({})
|
6060
|
+
def search_routing_profiles(params = {}, options = {})
|
6061
|
+
req = build_request(:search_routing_profiles, params)
|
6062
|
+
req.send_request(options)
|
6063
|
+
end
|
6064
|
+
|
5836
6065
|
# This API is in preview release for Amazon Connect and is subject to
|
5837
6066
|
# change.
|
5838
6067
|
#
|
@@ -5954,6 +6183,13 @@ module Aws::Connect
|
|
5954
6183
|
# @option params [Types::UserSearchCriteria] :search_criteria
|
5955
6184
|
# The search criteria to be used to return users.
|
5956
6185
|
#
|
6186
|
+
# <note markdown="1"> The `Username`, `Firstname`, and `Lastname` fields support
|
6187
|
+
# "contains" queries with a minimum of 2 characters and a maximum of
|
6188
|
+
# 25 characters. Any queries with character lengths outside of this
|
6189
|
+
# range result in empty results.
|
6190
|
+
#
|
6191
|
+
# </note>
|
6192
|
+
#
|
5957
6193
|
# @return [Types::SearchUsersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5958
6194
|
#
|
5959
6195
|
# * {Types::SearchUsersResponse#users #users} => Array<Types::UserSearchSummary>
|
@@ -7083,7 +7319,7 @@ module Aws::Connect
|
|
7083
7319
|
# The identifier of the flow.
|
7084
7320
|
#
|
7085
7321
|
# @option params [String] :name
|
7086
|
-
#
|
7322
|
+
# The name of the flow.
|
7087
7323
|
#
|
7088
7324
|
# @option params [String] :description
|
7089
7325
|
# The description of the flow.
|
@@ -7887,7 +8123,12 @@ module Aws::Connect
|
|
7887
8123
|
# The description of the security profile.
|
7888
8124
|
#
|
7889
8125
|
# @option params [Array<String>] :permissions
|
7890
|
-
# The permissions granted to a security profile.
|
8126
|
+
# The permissions granted to a security profile. For a list of valid
|
8127
|
+
# permissions, see [List of security profile permissions][1].
|
8128
|
+
#
|
8129
|
+
#
|
8130
|
+
#
|
8131
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
|
7891
8132
|
#
|
7892
8133
|
# @option params [required, String] :security_profile_id
|
7893
8134
|
# The identifier for the security profle.
|
@@ -8322,7 +8563,7 @@ module Aws::Connect
|
|
8322
8563
|
params: params,
|
8323
8564
|
config: config)
|
8324
8565
|
context[:gem_name] = 'aws-sdk-connect'
|
8325
|
-
context[:gem_version] = '1.
|
8566
|
+
context[:gem_version] = '1.76.0'
|
8326
8567
|
Seahorse::Client::Request.new(handlers, context)
|
8327
8568
|
end
|
8328
8569
|
|
@@ -374,6 +374,7 @@ module Aws::Connect
|
|
374
374
|
ListUserHierarchyGroupsResponse = Shapes::StructureShape.new(name: 'ListUserHierarchyGroupsResponse')
|
375
375
|
ListUsersRequest = Shapes::StructureShape.new(name: 'ListUsersRequest')
|
376
376
|
ListUsersResponse = Shapes::StructureShape.new(name: 'ListUsersResponse')
|
377
|
+
Long = Shapes::IntegerShape.new(name: 'Long')
|
377
378
|
MaxResult10 = Shapes::IntegerShape.new(name: 'MaxResult10')
|
378
379
|
MaxResult100 = Shapes::IntegerShape.new(name: 'MaxResult100')
|
379
380
|
MaxResult1000 = Shapes::IntegerShape.new(name: 'MaxResult1000')
|
@@ -438,6 +439,10 @@ module Aws::Connect
|
|
438
439
|
QueueName = Shapes::StringShape.new(name: 'QueueName')
|
439
440
|
QueueQuickConnectConfig = Shapes::StructureShape.new(name: 'QueueQuickConnectConfig')
|
440
441
|
QueueReference = Shapes::StructureShape.new(name: 'QueueReference')
|
442
|
+
QueueSearchConditionList = Shapes::ListShape.new(name: 'QueueSearchConditionList')
|
443
|
+
QueueSearchCriteria = Shapes::StructureShape.new(name: 'QueueSearchCriteria')
|
444
|
+
QueueSearchFilter = Shapes::StructureShape.new(name: 'QueueSearchFilter')
|
445
|
+
QueueSearchSummaryList = Shapes::ListShape.new(name: 'QueueSearchSummaryList')
|
441
446
|
QueueStatus = Shapes::StringShape.new(name: 'QueueStatus')
|
442
447
|
QueueSummary = Shapes::StructureShape.new(name: 'QueueSummary')
|
443
448
|
QueueSummaryList = Shapes::ListShape.new(name: 'QueueSummaryList')
|
@@ -476,6 +481,7 @@ module Aws::Connect
|
|
476
481
|
RoutingProfile = Shapes::StructureShape.new(name: 'RoutingProfile')
|
477
482
|
RoutingProfileDescription = Shapes::StringShape.new(name: 'RoutingProfileDescription')
|
478
483
|
RoutingProfileId = Shapes::StringShape.new(name: 'RoutingProfileId')
|
484
|
+
RoutingProfileList = Shapes::ListShape.new(name: 'RoutingProfileList')
|
479
485
|
RoutingProfileName = Shapes::StringShape.new(name: 'RoutingProfileName')
|
480
486
|
RoutingProfileQueueConfig = Shapes::StructureShape.new(name: 'RoutingProfileQueueConfig')
|
481
487
|
RoutingProfileQueueConfigList = Shapes::ListShape.new(name: 'RoutingProfileQueueConfigList')
|
@@ -484,17 +490,25 @@ module Aws::Connect
|
|
484
490
|
RoutingProfileQueueReference = Shapes::StructureShape.new(name: 'RoutingProfileQueueReference')
|
485
491
|
RoutingProfileQueueReferenceList = Shapes::ListShape.new(name: 'RoutingProfileQueueReferenceList')
|
486
492
|
RoutingProfileReference = Shapes::StructureShape.new(name: 'RoutingProfileReference')
|
493
|
+
RoutingProfileSearchConditionList = Shapes::ListShape.new(name: 'RoutingProfileSearchConditionList')
|
494
|
+
RoutingProfileSearchCriteria = Shapes::StructureShape.new(name: 'RoutingProfileSearchCriteria')
|
495
|
+
RoutingProfileSearchFilter = Shapes::StructureShape.new(name: 'RoutingProfileSearchFilter')
|
487
496
|
RoutingProfileSummary = Shapes::StructureShape.new(name: 'RoutingProfileSummary')
|
488
497
|
RoutingProfileSummaryList = Shapes::ListShape.new(name: 'RoutingProfileSummaryList')
|
489
498
|
S3Config = Shapes::StructureShape.new(name: 'S3Config')
|
490
499
|
SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
|
491
500
|
SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
|
501
|
+
SearchQueuesRequest = Shapes::StructureShape.new(name: 'SearchQueuesRequest')
|
502
|
+
SearchQueuesResponse = Shapes::StructureShape.new(name: 'SearchQueuesResponse')
|
503
|
+
SearchRoutingProfilesRequest = Shapes::StructureShape.new(name: 'SearchRoutingProfilesRequest')
|
504
|
+
SearchRoutingProfilesResponse = Shapes::StructureShape.new(name: 'SearchRoutingProfilesResponse')
|
492
505
|
SearchSecurityProfilesRequest = Shapes::StructureShape.new(name: 'SearchSecurityProfilesRequest')
|
493
506
|
SearchSecurityProfilesResponse = Shapes::StructureShape.new(name: 'SearchSecurityProfilesResponse')
|
494
507
|
SearchUsersRequest = Shapes::StructureShape.new(name: 'SearchUsersRequest')
|
495
508
|
SearchUsersResponse = Shapes::StructureShape.new(name: 'SearchUsersResponse')
|
496
509
|
SearchVocabulariesRequest = Shapes::StructureShape.new(name: 'SearchVocabulariesRequest')
|
497
510
|
SearchVocabulariesResponse = Shapes::StructureShape.new(name: 'SearchVocabulariesResponse')
|
511
|
+
SearchableQueueType = Shapes::StringShape.new(name: 'SearchableQueueType')
|
498
512
|
SecurityKey = Shapes::StructureShape.new(name: 'SecurityKey')
|
499
513
|
SecurityKeysList = Shapes::ListShape.new(name: 'SecurityKeysList')
|
500
514
|
SecurityProfile = Shapes::StructureShape.new(name: 'SecurityProfile')
|
@@ -2028,6 +2042,19 @@ module Aws::Connect
|
|
2028
2042
|
QueueReference.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2029
2043
|
QueueReference.struct_class = Types::QueueReference
|
2030
2044
|
|
2045
|
+
QueueSearchConditionList.member = Shapes::ShapeRef.new(shape: QueueSearchCriteria)
|
2046
|
+
|
2047
|
+
QueueSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: QueueSearchConditionList, location_name: "OrConditions"))
|
2048
|
+
QueueSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: QueueSearchConditionList, location_name: "AndConditions"))
|
2049
|
+
QueueSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
2050
|
+
QueueSearchCriteria.add_member(:queue_type_condition, Shapes::ShapeRef.new(shape: SearchableQueueType, location_name: "QueueTypeCondition"))
|
2051
|
+
QueueSearchCriteria.struct_class = Types::QueueSearchCriteria
|
2052
|
+
|
2053
|
+
QueueSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
|
2054
|
+
QueueSearchFilter.struct_class = Types::QueueSearchFilter
|
2055
|
+
|
2056
|
+
QueueSearchSummaryList.member = Shapes::ShapeRef.new(shape: Queue)
|
2057
|
+
|
2031
2058
|
QueueSummary.add_member(:id, Shapes::ShapeRef.new(shape: QueueId, location_name: "Id"))
|
2032
2059
|
QueueSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2033
2060
|
QueueSummary.add_member(:name, Shapes::ShapeRef.new(shape: QueueName, location_name: "Name"))
|
@@ -2130,8 +2157,12 @@ module Aws::Connect
|
|
2130
2157
|
RoutingProfile.add_member(:media_concurrencies, Shapes::ShapeRef.new(shape: MediaConcurrencies, location_name: "MediaConcurrencies"))
|
2131
2158
|
RoutingProfile.add_member(:default_outbound_queue_id, Shapes::ShapeRef.new(shape: QueueId, location_name: "DefaultOutboundQueueId"))
|
2132
2159
|
RoutingProfile.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
2160
|
+
RoutingProfile.add_member(:number_of_associated_queues, Shapes::ShapeRef.new(shape: Long, location_name: "NumberOfAssociatedQueues"))
|
2161
|
+
RoutingProfile.add_member(:number_of_associated_users, Shapes::ShapeRef.new(shape: Long, location_name: "NumberOfAssociatedUsers"))
|
2133
2162
|
RoutingProfile.struct_class = Types::RoutingProfile
|
2134
2163
|
|
2164
|
+
RoutingProfileList.member = Shapes::ShapeRef.new(shape: RoutingProfile)
|
2165
|
+
|
2135
2166
|
RoutingProfileQueueConfig.add_member(:queue_reference, Shapes::ShapeRef.new(shape: RoutingProfileQueueReference, required: true, location_name: "QueueReference"))
|
2136
2167
|
RoutingProfileQueueConfig.add_member(:priority, Shapes::ShapeRef.new(shape: Priority, required: true, location_name: "Priority", metadata: {"box"=>true}))
|
2137
2168
|
RoutingProfileQueueConfig.add_member(:delay, Shapes::ShapeRef.new(shape: Delay, required: true, location_name: "Delay", metadata: {"box"=>true}))
|
@@ -2159,6 +2190,16 @@ module Aws::Connect
|
|
2159
2190
|
RoutingProfileReference.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2160
2191
|
RoutingProfileReference.struct_class = Types::RoutingProfileReference
|
2161
2192
|
|
2193
|
+
RoutingProfileSearchConditionList.member = Shapes::ShapeRef.new(shape: RoutingProfileSearchCriteria)
|
2194
|
+
|
2195
|
+
RoutingProfileSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: RoutingProfileSearchConditionList, location_name: "OrConditions"))
|
2196
|
+
RoutingProfileSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: RoutingProfileSearchConditionList, location_name: "AndConditions"))
|
2197
|
+
RoutingProfileSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
2198
|
+
RoutingProfileSearchCriteria.struct_class = Types::RoutingProfileSearchCriteria
|
2199
|
+
|
2200
|
+
RoutingProfileSearchFilter.add_member(:tag_filter, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "TagFilter"))
|
2201
|
+
RoutingProfileSearchFilter.struct_class = Types::RoutingProfileSearchFilter
|
2202
|
+
|
2162
2203
|
RoutingProfileSummary.add_member(:id, Shapes::ShapeRef.new(shape: RoutingProfileId, location_name: "Id"))
|
2163
2204
|
RoutingProfileSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
2164
2205
|
RoutingProfileSummary.add_member(:name, Shapes::ShapeRef.new(shape: RoutingProfileName, location_name: "Name"))
|
@@ -2183,6 +2224,30 @@ module Aws::Connect
|
|
2183
2224
|
SearchAvailablePhoneNumbersResponse.add_member(:available_numbers_list, Shapes::ShapeRef.new(shape: AvailableNumbersList, location_name: "AvailableNumbersList"))
|
2184
2225
|
SearchAvailablePhoneNumbersResponse.struct_class = Types::SearchAvailablePhoneNumbersResponse
|
2185
2226
|
|
2227
|
+
SearchQueuesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2228
|
+
SearchQueuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
2229
|
+
SearchQueuesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
2230
|
+
SearchQueuesRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: QueueSearchFilter, location_name: "SearchFilter"))
|
2231
|
+
SearchQueuesRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: QueueSearchCriteria, location_name: "SearchCriteria"))
|
2232
|
+
SearchQueuesRequest.struct_class = Types::SearchQueuesRequest
|
2233
|
+
|
2234
|
+
SearchQueuesResponse.add_member(:queues, Shapes::ShapeRef.new(shape: QueueSearchSummaryList, location_name: "Queues"))
|
2235
|
+
SearchQueuesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
2236
|
+
SearchQueuesResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
2237
|
+
SearchQueuesResponse.struct_class = Types::SearchQueuesResponse
|
2238
|
+
|
2239
|
+
SearchRoutingProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2240
|
+
SearchRoutingProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
2241
|
+
SearchRoutingProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
2242
|
+
SearchRoutingProfilesRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: RoutingProfileSearchFilter, location_name: "SearchFilter"))
|
2243
|
+
SearchRoutingProfilesRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: RoutingProfileSearchCriteria, location_name: "SearchCriteria"))
|
2244
|
+
SearchRoutingProfilesRequest.struct_class = Types::SearchRoutingProfilesRequest
|
2245
|
+
|
2246
|
+
SearchRoutingProfilesResponse.add_member(:routing_profiles, Shapes::ShapeRef.new(shape: RoutingProfileList, location_name: "RoutingProfiles"))
|
2247
|
+
SearchRoutingProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
2248
|
+
SearchRoutingProfilesResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
2249
|
+
SearchRoutingProfilesResponse.struct_class = Types::SearchRoutingProfilesResponse
|
2250
|
+
|
2186
2251
|
SearchSecurityProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2187
2252
|
SearchSecurityProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
2188
2253
|
SearchSecurityProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
@@ -4386,6 +4451,44 @@ module Aws::Connect
|
|
4386
4451
|
)
|
4387
4452
|
end)
|
4388
4453
|
|
4454
|
+
api.add_operation(:search_queues, Seahorse::Model::Operation.new.tap do |o|
|
4455
|
+
o.name = "SearchQueues"
|
4456
|
+
o.http_method = "POST"
|
4457
|
+
o.http_request_uri = "/search-queues"
|
4458
|
+
o.input = Shapes::ShapeRef.new(shape: SearchQueuesRequest)
|
4459
|
+
o.output = Shapes::ShapeRef.new(shape: SearchQueuesResponse)
|
4460
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
4461
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
4462
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
4463
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
4464
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4465
|
+
o[:pager] = Aws::Pager.new(
|
4466
|
+
limit_key: "max_results",
|
4467
|
+
tokens: {
|
4468
|
+
"next_token" => "next_token"
|
4469
|
+
}
|
4470
|
+
)
|
4471
|
+
end)
|
4472
|
+
|
4473
|
+
api.add_operation(:search_routing_profiles, Seahorse::Model::Operation.new.tap do |o|
|
4474
|
+
o.name = "SearchRoutingProfiles"
|
4475
|
+
o.http_method = "POST"
|
4476
|
+
o.http_request_uri = "/search-routing-profiles"
|
4477
|
+
o.input = Shapes::ShapeRef.new(shape: SearchRoutingProfilesRequest)
|
4478
|
+
o.output = Shapes::ShapeRef.new(shape: SearchRoutingProfilesResponse)
|
4479
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
4480
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
4481
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
4482
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
4483
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4484
|
+
o[:pager] = Aws::Pager.new(
|
4485
|
+
limit_key: "max_results",
|
4486
|
+
tokens: {
|
4487
|
+
"next_token" => "next_token"
|
4488
|
+
}
|
4489
|
+
)
|
4490
|
+
end)
|
4491
|
+
|
4389
4492
|
api.add_operation(:search_security_profiles, Seahorse::Model::Operation.new.tap do |o|
|
4390
4493
|
o.name = "SearchSecurityProfiles"
|
4391
4494
|
o.http_method = "POST"
|
@@ -1968,7 +1968,12 @@ module Aws::Connect
|
|
1968
1968
|
# @return [String]
|
1969
1969
|
#
|
1970
1970
|
# @!attribute [rw] permissions
|
1971
|
-
# Permissions assigned to the security profile.
|
1971
|
+
# Permissions assigned to the security profile. For a list of valid
|
1972
|
+
# permissions, see [List of security profile permissions][1].
|
1973
|
+
#
|
1974
|
+
#
|
1975
|
+
#
|
1976
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
|
1972
1977
|
# @return [Array<String>]
|
1973
1978
|
#
|
1974
1979
|
# @!attribute [rw] instance_id
|
@@ -7242,7 +7247,12 @@ module Aws::Connect
|
|
7242
7247
|
end
|
7243
7248
|
|
7244
7249
|
# @!attribute [rw] permissions
|
7245
|
-
# The permissions granted to the security profile.
|
7250
|
+
# The permissions granted to the security profile. For a complete list
|
7251
|
+
# of valid permissions, see [List of security profile permissions][1].
|
7252
|
+
#
|
7253
|
+
#
|
7254
|
+
#
|
7255
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
|
7246
7256
|
# @return [Array<String>]
|
7247
7257
|
#
|
7248
7258
|
# @!attribute [rw] next_token
|
@@ -8023,6 +8033,130 @@ module Aws::Connect
|
|
8023
8033
|
include Aws::Structure
|
8024
8034
|
end
|
8025
8035
|
|
8036
|
+
# The search criteria to be used to return queues.
|
8037
|
+
#
|
8038
|
+
# @note When making an API call, you may pass QueueSearchCriteria
|
8039
|
+
# data as a hash:
|
8040
|
+
#
|
8041
|
+
# {
|
8042
|
+
# or_conditions: [
|
8043
|
+
# {
|
8044
|
+
# or_conditions: {
|
8045
|
+
# # recursive QueueSearchConditionList
|
8046
|
+
# },
|
8047
|
+
# and_conditions: {
|
8048
|
+
# # recursive QueueSearchConditionList
|
8049
|
+
# },
|
8050
|
+
# string_condition: {
|
8051
|
+
# field_name: "String",
|
8052
|
+
# value: "String",
|
8053
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8054
|
+
# },
|
8055
|
+
# queue_type_condition: "STANDARD", # accepts STANDARD
|
8056
|
+
# },
|
8057
|
+
# ],
|
8058
|
+
# and_conditions: [
|
8059
|
+
# {
|
8060
|
+
# or_conditions: {
|
8061
|
+
# # recursive QueueSearchConditionList
|
8062
|
+
# },
|
8063
|
+
# and_conditions: {
|
8064
|
+
# # recursive QueueSearchConditionList
|
8065
|
+
# },
|
8066
|
+
# string_condition: {
|
8067
|
+
# field_name: "String",
|
8068
|
+
# value: "String",
|
8069
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8070
|
+
# },
|
8071
|
+
# queue_type_condition: "STANDARD", # accepts STANDARD
|
8072
|
+
# },
|
8073
|
+
# ],
|
8074
|
+
# string_condition: {
|
8075
|
+
# field_name: "String",
|
8076
|
+
# value: "String",
|
8077
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8078
|
+
# },
|
8079
|
+
# queue_type_condition: "STANDARD", # accepts STANDARD
|
8080
|
+
# }
|
8081
|
+
#
|
8082
|
+
# @!attribute [rw] or_conditions
|
8083
|
+
# A list of conditions which would be applied together with an OR
|
8084
|
+
# condition.
|
8085
|
+
# @return [Array<Types::QueueSearchCriteria>]
|
8086
|
+
#
|
8087
|
+
# @!attribute [rw] and_conditions
|
8088
|
+
# A list of conditions which would be applied together with an AND
|
8089
|
+
# condition.
|
8090
|
+
# @return [Array<Types::QueueSearchCriteria>]
|
8091
|
+
#
|
8092
|
+
# @!attribute [rw] string_condition
|
8093
|
+
# A leaf node condition which can be used to specify a string
|
8094
|
+
# condition, for example, `username = 'abc'`.
|
8095
|
+
# @return [Types::StringCondition]
|
8096
|
+
#
|
8097
|
+
# @!attribute [rw] queue_type_condition
|
8098
|
+
# The type of queue.
|
8099
|
+
# @return [String]
|
8100
|
+
#
|
8101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QueueSearchCriteria AWS API Documentation
|
8102
|
+
#
|
8103
|
+
class QueueSearchCriteria < Struct.new(
|
8104
|
+
:or_conditions,
|
8105
|
+
:and_conditions,
|
8106
|
+
:string_condition,
|
8107
|
+
:queue_type_condition)
|
8108
|
+
SENSITIVE = []
|
8109
|
+
include Aws::Structure
|
8110
|
+
end
|
8111
|
+
|
8112
|
+
# Filters to be applied to search results.
|
8113
|
+
#
|
8114
|
+
# @note When making an API call, you may pass QueueSearchFilter
|
8115
|
+
# data as a hash:
|
8116
|
+
#
|
8117
|
+
# {
|
8118
|
+
# tag_filter: {
|
8119
|
+
# or_conditions: [
|
8120
|
+
# [
|
8121
|
+
# {
|
8122
|
+
# tag_key: "String",
|
8123
|
+
# tag_value: "String",
|
8124
|
+
# },
|
8125
|
+
# ],
|
8126
|
+
# ],
|
8127
|
+
# and_conditions: [
|
8128
|
+
# {
|
8129
|
+
# tag_key: "String",
|
8130
|
+
# tag_value: "String",
|
8131
|
+
# },
|
8132
|
+
# ],
|
8133
|
+
# tag_condition: {
|
8134
|
+
# tag_key: "String",
|
8135
|
+
# tag_value: "String",
|
8136
|
+
# },
|
8137
|
+
# },
|
8138
|
+
# }
|
8139
|
+
#
|
8140
|
+
# @!attribute [rw] tag_filter
|
8141
|
+
# An object that can be used to specify Tag conditions inside the
|
8142
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
8143
|
+
# where:
|
8144
|
+
#
|
8145
|
+
# * Top level list specifies conditions that need to be applied with
|
8146
|
+
# `OR` operator
|
8147
|
+
#
|
8148
|
+
# * Inner list specifies conditions that need to be applied with `AND`
|
8149
|
+
# operator.
|
8150
|
+
# @return [Types::ControlPlaneTagFilter]
|
8151
|
+
#
|
8152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QueueSearchFilter AWS API Documentation
|
8153
|
+
#
|
8154
|
+
class QueueSearchFilter < Struct.new(
|
8155
|
+
:tag_filter)
|
8156
|
+
SENSITIVE = []
|
8157
|
+
include Aws::Structure
|
8158
|
+
end
|
8159
|
+
|
8026
8160
|
# Contains summary information about a queue.
|
8027
8161
|
#
|
8028
8162
|
# @!attribute [rw] id
|
@@ -8469,6 +8603,14 @@ module Aws::Connect
|
|
8469
8603
|
# "key2":"value2"\\} \\}.
|
8470
8604
|
# @return [Hash<String,String>]
|
8471
8605
|
#
|
8606
|
+
# @!attribute [rw] number_of_associated_queues
|
8607
|
+
# The number of associated queues in routing profile.
|
8608
|
+
# @return [Integer]
|
8609
|
+
#
|
8610
|
+
# @!attribute [rw] number_of_associated_users
|
8611
|
+
# The number of associated users in routing profile.
|
8612
|
+
# @return [Integer]
|
8613
|
+
#
|
8472
8614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
|
8473
8615
|
#
|
8474
8616
|
class RoutingProfile < Struct.new(
|
@@ -8479,7 +8621,9 @@ module Aws::Connect
|
|
8479
8621
|
:description,
|
8480
8622
|
:media_concurrencies,
|
8481
8623
|
:default_outbound_queue_id,
|
8482
|
-
:tags
|
8624
|
+
:tags,
|
8625
|
+
:number_of_associated_queues,
|
8626
|
+
:number_of_associated_users)
|
8483
8627
|
SENSITIVE = []
|
8484
8628
|
include Aws::Structure
|
8485
8629
|
end
|
@@ -8630,6 +8774,122 @@ module Aws::Connect
|
|
8630
8774
|
include Aws::Structure
|
8631
8775
|
end
|
8632
8776
|
|
8777
|
+
# The search criteria to be used to return routing profiles.
|
8778
|
+
#
|
8779
|
+
# @note When making an API call, you may pass RoutingProfileSearchCriteria
|
8780
|
+
# data as a hash:
|
8781
|
+
#
|
8782
|
+
# {
|
8783
|
+
# or_conditions: [
|
8784
|
+
# {
|
8785
|
+
# or_conditions: {
|
8786
|
+
# # recursive RoutingProfileSearchConditionList
|
8787
|
+
# },
|
8788
|
+
# and_conditions: {
|
8789
|
+
# # recursive RoutingProfileSearchConditionList
|
8790
|
+
# },
|
8791
|
+
# string_condition: {
|
8792
|
+
# field_name: "String",
|
8793
|
+
# value: "String",
|
8794
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8795
|
+
# },
|
8796
|
+
# },
|
8797
|
+
# ],
|
8798
|
+
# and_conditions: [
|
8799
|
+
# {
|
8800
|
+
# or_conditions: {
|
8801
|
+
# # recursive RoutingProfileSearchConditionList
|
8802
|
+
# },
|
8803
|
+
# and_conditions: {
|
8804
|
+
# # recursive RoutingProfileSearchConditionList
|
8805
|
+
# },
|
8806
|
+
# string_condition: {
|
8807
|
+
# field_name: "String",
|
8808
|
+
# value: "String",
|
8809
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8810
|
+
# },
|
8811
|
+
# },
|
8812
|
+
# ],
|
8813
|
+
# string_condition: {
|
8814
|
+
# field_name: "String",
|
8815
|
+
# value: "String",
|
8816
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
8817
|
+
# },
|
8818
|
+
# }
|
8819
|
+
#
|
8820
|
+
# @!attribute [rw] or_conditions
|
8821
|
+
# A list of conditions which would be applied together with an OR
|
8822
|
+
# condition.
|
8823
|
+
# @return [Array<Types::RoutingProfileSearchCriteria>]
|
8824
|
+
#
|
8825
|
+
# @!attribute [rw] and_conditions
|
8826
|
+
# A list of conditions which would be applied together with an AND
|
8827
|
+
# condition.
|
8828
|
+
# @return [Array<Types::RoutingProfileSearchCriteria>]
|
8829
|
+
#
|
8830
|
+
# @!attribute [rw] string_condition
|
8831
|
+
# A leaf node condition which can be used to specify a string
|
8832
|
+
# condition, for example, `username = 'abc'`.
|
8833
|
+
# @return [Types::StringCondition]
|
8834
|
+
#
|
8835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileSearchCriteria AWS API Documentation
|
8836
|
+
#
|
8837
|
+
class RoutingProfileSearchCriteria < Struct.new(
|
8838
|
+
:or_conditions,
|
8839
|
+
:and_conditions,
|
8840
|
+
:string_condition)
|
8841
|
+
SENSITIVE = []
|
8842
|
+
include Aws::Structure
|
8843
|
+
end
|
8844
|
+
|
8845
|
+
# Filters to be applied to search results.
|
8846
|
+
#
|
8847
|
+
# @note When making an API call, you may pass RoutingProfileSearchFilter
|
8848
|
+
# data as a hash:
|
8849
|
+
#
|
8850
|
+
# {
|
8851
|
+
# tag_filter: {
|
8852
|
+
# or_conditions: [
|
8853
|
+
# [
|
8854
|
+
# {
|
8855
|
+
# tag_key: "String",
|
8856
|
+
# tag_value: "String",
|
8857
|
+
# },
|
8858
|
+
# ],
|
8859
|
+
# ],
|
8860
|
+
# and_conditions: [
|
8861
|
+
# {
|
8862
|
+
# tag_key: "String",
|
8863
|
+
# tag_value: "String",
|
8864
|
+
# },
|
8865
|
+
# ],
|
8866
|
+
# tag_condition: {
|
8867
|
+
# tag_key: "String",
|
8868
|
+
# tag_value: "String",
|
8869
|
+
# },
|
8870
|
+
# },
|
8871
|
+
# }
|
8872
|
+
#
|
8873
|
+
# @!attribute [rw] tag_filter
|
8874
|
+
# An object that can be used to specify Tag conditions inside the
|
8875
|
+
# `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
|
8876
|
+
# where:
|
8877
|
+
#
|
8878
|
+
# * Top level list specifies conditions that need to be applied with
|
8879
|
+
# `OR` operator
|
8880
|
+
#
|
8881
|
+
# * Inner list specifies conditions that need to be applied with `AND`
|
8882
|
+
# operator.
|
8883
|
+
# @return [Types::ControlPlaneTagFilter]
|
8884
|
+
#
|
8885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileSearchFilter AWS API Documentation
|
8886
|
+
#
|
8887
|
+
class RoutingProfileSearchFilter < Struct.new(
|
8888
|
+
:tag_filter)
|
8889
|
+
SENSITIVE = []
|
8890
|
+
include Aws::Structure
|
8891
|
+
end
|
8892
|
+
|
8633
8893
|
# Contains summary information about a routing profile.
|
8634
8894
|
#
|
8635
8895
|
# @!attribute [rw] id
|
@@ -8763,6 +9023,220 @@ module Aws::Connect
|
|
8763
9023
|
include Aws::Structure
|
8764
9024
|
end
|
8765
9025
|
|
9026
|
+
# @note When making an API call, you may pass SearchQueuesRequest
|
9027
|
+
# data as a hash:
|
9028
|
+
#
|
9029
|
+
# {
|
9030
|
+
# instance_id: "InstanceId", # required
|
9031
|
+
# next_token: "NextToken2500",
|
9032
|
+
# max_results: 1,
|
9033
|
+
# search_filter: {
|
9034
|
+
# tag_filter: {
|
9035
|
+
# or_conditions: [
|
9036
|
+
# [
|
9037
|
+
# {
|
9038
|
+
# tag_key: "String",
|
9039
|
+
# tag_value: "String",
|
9040
|
+
# },
|
9041
|
+
# ],
|
9042
|
+
# ],
|
9043
|
+
# and_conditions: [
|
9044
|
+
# {
|
9045
|
+
# tag_key: "String",
|
9046
|
+
# tag_value: "String",
|
9047
|
+
# },
|
9048
|
+
# ],
|
9049
|
+
# tag_condition: {
|
9050
|
+
# tag_key: "String",
|
9051
|
+
# tag_value: "String",
|
9052
|
+
# },
|
9053
|
+
# },
|
9054
|
+
# },
|
9055
|
+
# search_criteria: {
|
9056
|
+
# or_conditions: [
|
9057
|
+
# {
|
9058
|
+
# # recursive QueueSearchCriteria
|
9059
|
+
# },
|
9060
|
+
# ],
|
9061
|
+
# and_conditions: [
|
9062
|
+
# {
|
9063
|
+
# # recursive QueueSearchCriteria
|
9064
|
+
# },
|
9065
|
+
# ],
|
9066
|
+
# string_condition: {
|
9067
|
+
# field_name: "String",
|
9068
|
+
# value: "String",
|
9069
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
9070
|
+
# },
|
9071
|
+
# queue_type_condition: "STANDARD", # accepts STANDARD
|
9072
|
+
# },
|
9073
|
+
# }
|
9074
|
+
#
|
9075
|
+
# @!attribute [rw] instance_id
|
9076
|
+
# The identifier of the Amazon Connect instance. You can find the
|
9077
|
+
# instanceId in the ARN of the instance.
|
9078
|
+
# @return [String]
|
9079
|
+
#
|
9080
|
+
# @!attribute [rw] next_token
|
9081
|
+
# The token for the next set of results. Use the value returned in the
|
9082
|
+
# previous response in the next request to retrieve the next set of
|
9083
|
+
# results.
|
9084
|
+
# @return [String]
|
9085
|
+
#
|
9086
|
+
# @!attribute [rw] max_results
|
9087
|
+
# The maximum number of results to return per page.
|
9088
|
+
# @return [Integer]
|
9089
|
+
#
|
9090
|
+
# @!attribute [rw] search_filter
|
9091
|
+
# Filters to be applied to search results.
|
9092
|
+
# @return [Types::QueueSearchFilter]
|
9093
|
+
#
|
9094
|
+
# @!attribute [rw] search_criteria
|
9095
|
+
# The search criteria to be used to return queues.
|
9096
|
+
# @return [Types::QueueSearchCriteria]
|
9097
|
+
#
|
9098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQueuesRequest AWS API Documentation
|
9099
|
+
#
|
9100
|
+
class SearchQueuesRequest < Struct.new(
|
9101
|
+
:instance_id,
|
9102
|
+
:next_token,
|
9103
|
+
:max_results,
|
9104
|
+
:search_filter,
|
9105
|
+
:search_criteria)
|
9106
|
+
SENSITIVE = []
|
9107
|
+
include Aws::Structure
|
9108
|
+
end
|
9109
|
+
|
9110
|
+
# @!attribute [rw] queues
|
9111
|
+
# Information about the queues.
|
9112
|
+
# @return [Array<Types::Queue>]
|
9113
|
+
#
|
9114
|
+
# @!attribute [rw] next_token
|
9115
|
+
# If there are additional results, this is the token for the next set
|
9116
|
+
# of results.
|
9117
|
+
# @return [String]
|
9118
|
+
#
|
9119
|
+
# @!attribute [rw] approximate_total_count
|
9120
|
+
# The total number of queues which matched your search query.
|
9121
|
+
# @return [Integer]
|
9122
|
+
#
|
9123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQueuesResponse AWS API Documentation
|
9124
|
+
#
|
9125
|
+
class SearchQueuesResponse < Struct.new(
|
9126
|
+
:queues,
|
9127
|
+
:next_token,
|
9128
|
+
:approximate_total_count)
|
9129
|
+
SENSITIVE = []
|
9130
|
+
include Aws::Structure
|
9131
|
+
end
|
9132
|
+
|
9133
|
+
# @note When making an API call, you may pass SearchRoutingProfilesRequest
|
9134
|
+
# data as a hash:
|
9135
|
+
#
|
9136
|
+
# {
|
9137
|
+
# instance_id: "InstanceId", # required
|
9138
|
+
# next_token: "NextToken2500",
|
9139
|
+
# max_results: 1,
|
9140
|
+
# search_filter: {
|
9141
|
+
# tag_filter: {
|
9142
|
+
# or_conditions: [
|
9143
|
+
# [
|
9144
|
+
# {
|
9145
|
+
# tag_key: "String",
|
9146
|
+
# tag_value: "String",
|
9147
|
+
# },
|
9148
|
+
# ],
|
9149
|
+
# ],
|
9150
|
+
# and_conditions: [
|
9151
|
+
# {
|
9152
|
+
# tag_key: "String",
|
9153
|
+
# tag_value: "String",
|
9154
|
+
# },
|
9155
|
+
# ],
|
9156
|
+
# tag_condition: {
|
9157
|
+
# tag_key: "String",
|
9158
|
+
# tag_value: "String",
|
9159
|
+
# },
|
9160
|
+
# },
|
9161
|
+
# },
|
9162
|
+
# search_criteria: {
|
9163
|
+
# or_conditions: [
|
9164
|
+
# {
|
9165
|
+
# # recursive RoutingProfileSearchCriteria
|
9166
|
+
# },
|
9167
|
+
# ],
|
9168
|
+
# and_conditions: [
|
9169
|
+
# {
|
9170
|
+
# # recursive RoutingProfileSearchCriteria
|
9171
|
+
# },
|
9172
|
+
# ],
|
9173
|
+
# string_condition: {
|
9174
|
+
# field_name: "String",
|
9175
|
+
# value: "String",
|
9176
|
+
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
9177
|
+
# },
|
9178
|
+
# },
|
9179
|
+
# }
|
9180
|
+
#
|
9181
|
+
# @!attribute [rw] instance_id
|
9182
|
+
# The identifier of the Amazon Connect instance. You can find the
|
9183
|
+
# instanceId in the ARN of the instance.
|
9184
|
+
# @return [String]
|
9185
|
+
#
|
9186
|
+
# @!attribute [rw] next_token
|
9187
|
+
# The token for the next set of results. Use the value returned in the
|
9188
|
+
# previous response in the next request to retrieve the next set of
|
9189
|
+
# results.
|
9190
|
+
# @return [String]
|
9191
|
+
#
|
9192
|
+
# @!attribute [rw] max_results
|
9193
|
+
# The maximum number of results to return per page.
|
9194
|
+
# @return [Integer]
|
9195
|
+
#
|
9196
|
+
# @!attribute [rw] search_filter
|
9197
|
+
# Filters to be applied to search results.
|
9198
|
+
# @return [Types::RoutingProfileSearchFilter]
|
9199
|
+
#
|
9200
|
+
# @!attribute [rw] search_criteria
|
9201
|
+
# The search criteria to be used to return routing profiles.
|
9202
|
+
# @return [Types::RoutingProfileSearchCriteria]
|
9203
|
+
#
|
9204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchRoutingProfilesRequest AWS API Documentation
|
9205
|
+
#
|
9206
|
+
class SearchRoutingProfilesRequest < Struct.new(
|
9207
|
+
:instance_id,
|
9208
|
+
:next_token,
|
9209
|
+
:max_results,
|
9210
|
+
:search_filter,
|
9211
|
+
:search_criteria)
|
9212
|
+
SENSITIVE = []
|
9213
|
+
include Aws::Structure
|
9214
|
+
end
|
9215
|
+
|
9216
|
+
# @!attribute [rw] routing_profiles
|
9217
|
+
# Information about the routing profiles.
|
9218
|
+
# @return [Array<Types::RoutingProfile>]
|
9219
|
+
#
|
9220
|
+
# @!attribute [rw] next_token
|
9221
|
+
# If there are additional results, this is the token for the next set
|
9222
|
+
# of results.
|
9223
|
+
# @return [String]
|
9224
|
+
#
|
9225
|
+
# @!attribute [rw] approximate_total_count
|
9226
|
+
# The total number of routing profiles which matched your search
|
9227
|
+
# query.
|
9228
|
+
# @return [Integer]
|
9229
|
+
#
|
9230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchRoutingProfilesResponse AWS API Documentation
|
9231
|
+
#
|
9232
|
+
class SearchRoutingProfilesResponse < Struct.new(
|
9233
|
+
:routing_profiles,
|
9234
|
+
:next_token,
|
9235
|
+
:approximate_total_count)
|
9236
|
+
SENSITIVE = []
|
9237
|
+
include Aws::Structure
|
9238
|
+
end
|
9239
|
+
|
8766
9240
|
# @note When making an API call, you may pass SearchSecurityProfilesRequest
|
8767
9241
|
# data as a hash:
|
8768
9242
|
#
|
@@ -8943,6 +9417,13 @@ module Aws::Connect
|
|
8943
9417
|
#
|
8944
9418
|
# @!attribute [rw] search_criteria
|
8945
9419
|
# The search criteria to be used to return users.
|
9420
|
+
#
|
9421
|
+
# <note markdown="1"> The `Username`, `Firstname`, and `Lastname` fields support
|
9422
|
+
# "contains" queries with a minimum of 2 characters and a maximum of
|
9423
|
+
# 25 characters. Any queries with character lengths outside of this
|
9424
|
+
# range result in empty results.
|
9425
|
+
#
|
9426
|
+
# </note>
|
8946
9427
|
# @return [Types::UserSearchCriteria]
|
8947
9428
|
#
|
8948
9429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchUsersRequest AWS API Documentation
|
@@ -10544,7 +11025,7 @@ module Aws::Connect
|
|
10544
11025
|
# @return [String]
|
10545
11026
|
#
|
10546
11027
|
# @!attribute [rw] name
|
10547
|
-
#
|
11028
|
+
# The name of the flow.
|
10548
11029
|
# @return [String]
|
10549
11030
|
#
|
10550
11031
|
# @!attribute [rw] description
|
@@ -11420,7 +11901,12 @@ module Aws::Connect
|
|
11420
11901
|
# @return [String]
|
11421
11902
|
#
|
11422
11903
|
# @!attribute [rw] permissions
|
11423
|
-
# The permissions granted to a security profile.
|
11904
|
+
# The permissions granted to a security profile. For a list of valid
|
11905
|
+
# permissions, see [List of security profile permissions][1].
|
11906
|
+
#
|
11907
|
+
#
|
11908
|
+
#
|
11909
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/security-profile-list.html
|
11424
11910
|
# @return [Array<String>]
|
11425
11911
|
#
|
11426
11912
|
# @!attribute [rw] security_profile_id
|
@@ -12230,6 +12716,13 @@ module Aws::Connect
|
|
12230
12716
|
|
12231
12717
|
# The search criteria to be used to return users.
|
12232
12718
|
#
|
12719
|
+
# <note markdown="1"> The `Username`, `Firstname`, and `Lastname` fields support
|
12720
|
+
# "contains" queries with a minimum of 2 characters and a maximum of
|
12721
|
+
# 25 characters. Any queries with character lengths outside of this
|
12722
|
+
# range result in empty results.
|
12723
|
+
#
|
12724
|
+
# </note>
|
12725
|
+
#
|
12233
12726
|
# @note When making an API call, you may pass UserSearchCriteria
|
12234
12727
|
# data as a hash:
|
12235
12728
|
#
|
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.76.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: 2022-
|
11
|
+
date: 2022-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|