aws-sdk-connect 1.83.0 → 1.84.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 +95 -10
- data/lib/aws-sdk-connect/client_api.rb +32 -0
- data/lib/aws-sdk-connect/endpoints.rb +14 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +131 -13
- 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: b7ffad2a2e497607919e1aef3b44a738dbd7613c9efb716cc9e463d04ba10615
|
4
|
+
data.tar.gz: a993487552d3ea9588c21c2f0eca4aa8684d7b2027e9271bf29333489e5a7131
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26f22c8e419b9ef8308f2e3d90c6c17d7a4a14e5d152e7446901bead8b8352833d1b362254441b32f1429c82e2ba9fad761168b5867d44b247321ff80ed0e22c
|
7
|
+
data.tar.gz: 9d51bb40e1577636bf3cd398ae5ad27b4020864380173dccd7ca2c0aa77adf9c3d26ceea8ae9edfcdd25e63fc685ff78f71547cf0394df7423e69167dc623278
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.84.0
|
@@ -3636,12 +3636,16 @@ module Aws::Connect
|
|
3636
3636
|
# @option params [Array<String>] :groupings
|
3637
3637
|
# The grouping applied to the metrics returned. For example, when
|
3638
3638
|
# grouped by `QUEUE`, the metrics returned apply to each queue rather
|
3639
|
-
# than aggregated for all queues.
|
3640
|
-
# include a Channels filter. VOICE, CHAT, and TASK channels are
|
3641
|
-
# supported.
|
3639
|
+
# than aggregated for all queues.
|
3642
3640
|
#
|
3643
|
-
# If
|
3644
|
-
#
|
3641
|
+
# * If you group by `CHANNEL`, you should include a Channels filter.
|
3642
|
+
# VOICE, CHAT, and TASK channels are supported.
|
3643
|
+
#
|
3644
|
+
# * If you group by `ROUTING_PROFILE`, you must include either a queue
|
3645
|
+
# or routing profile filter.
|
3646
|
+
#
|
3647
|
+
# * If no `Grouping` is included in the request, a summary of metrics is
|
3648
|
+
# returned.
|
3645
3649
|
#
|
3646
3650
|
# @option params [required, Array<Types::CurrentMetric>] :current_metrics
|
3647
3651
|
# The metrics to retrieve. Specify the name and unit for each metric.
|
@@ -6070,6 +6074,67 @@ module Aws::Connect
|
|
6070
6074
|
req.send_request(options)
|
6071
6075
|
end
|
6072
6076
|
|
6077
|
+
# Initiates silent monitoring of a contact. The Contact Control Panel
|
6078
|
+
# (CCP) of the user specified by *userId* will be set to silent
|
6079
|
+
# monitoring mode on the contact.
|
6080
|
+
#
|
6081
|
+
# @option params [required, String] :instance_id
|
6082
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6083
|
+
# instanceId in the ARN of the instance.
|
6084
|
+
#
|
6085
|
+
# @option params [required, String] :contact_id
|
6086
|
+
# The identifier of the contact.
|
6087
|
+
#
|
6088
|
+
# @option params [required, String] :user_id
|
6089
|
+
# The identifier of the user account.
|
6090
|
+
#
|
6091
|
+
# @option params [Array<String>] :allowed_monitor_capabilities
|
6092
|
+
# Specify which monitoring actions the user is allowed to take. For
|
6093
|
+
# example, whether the user is allowed to escalate from silent
|
6094
|
+
# monitoring to barge.
|
6095
|
+
#
|
6096
|
+
# @option params [String] :client_token
|
6097
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
6098
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
6099
|
+
# SDK populates this field. For more information about idempotency, see
|
6100
|
+
# [Making retries safe with idempotent APIs][1].
|
6101
|
+
#
|
6102
|
+
# **A suitable default value is auto-generated.** You should normally
|
6103
|
+
# not need to pass this option.**
|
6104
|
+
#
|
6105
|
+
#
|
6106
|
+
#
|
6107
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
6108
|
+
#
|
6109
|
+
# @return [Types::MonitorContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6110
|
+
#
|
6111
|
+
# * {Types::MonitorContactResponse#contact_id #contact_id} => String
|
6112
|
+
# * {Types::MonitorContactResponse#contact_arn #contact_arn} => String
|
6113
|
+
#
|
6114
|
+
# @example Request syntax with placeholder values
|
6115
|
+
#
|
6116
|
+
# resp = client.monitor_contact({
|
6117
|
+
# instance_id: "InstanceId", # required
|
6118
|
+
# contact_id: "ContactId", # required
|
6119
|
+
# user_id: "AgentResourceId", # required
|
6120
|
+
# allowed_monitor_capabilities: ["SILENT_MONITOR"], # accepts SILENT_MONITOR, BARGE
|
6121
|
+
# client_token: "ClientToken",
|
6122
|
+
# })
|
6123
|
+
#
|
6124
|
+
# @example Response structure
|
6125
|
+
#
|
6126
|
+
# resp.contact_id #=> String
|
6127
|
+
# resp.contact_arn #=> String
|
6128
|
+
#
|
6129
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MonitorContact AWS API Documentation
|
6130
|
+
#
|
6131
|
+
# @overload monitor_contact(params = {})
|
6132
|
+
# @param [Hash] params ({})
|
6133
|
+
def monitor_contact(params = {}, options = {})
|
6134
|
+
req = build_request(:monitor_contact, params)
|
6135
|
+
req.send_request(options)
|
6136
|
+
end
|
6137
|
+
|
6073
6138
|
# Changes the current status of a user or agent in Amazon Connect. If
|
6074
6139
|
# the agent is currently handling a contact, this sets the agent's next
|
6075
6140
|
# status.
|
@@ -6344,6 +6409,13 @@ module Aws::Connect
|
|
6344
6409
|
# @option params [Types::QueueSearchCriteria] :search_criteria
|
6345
6410
|
# The search criteria to be used to return queues.
|
6346
6411
|
#
|
6412
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
6413
|
+
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
6414
|
+
# with character lengths outside of this range will throw invalid
|
6415
|
+
# results.
|
6416
|
+
#
|
6417
|
+
# </note>
|
6418
|
+
#
|
6347
6419
|
# @return [Types::SearchQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6348
6420
|
#
|
6349
6421
|
# * {Types::SearchQueuesResponse#queues #queues} => Array<Types::Queue>
|
@@ -6451,6 +6523,13 @@ module Aws::Connect
|
|
6451
6523
|
# @option params [Types::RoutingProfileSearchCriteria] :search_criteria
|
6452
6524
|
# The search criteria to be used to return routing profiles.
|
6453
6525
|
#
|
6526
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
6527
|
+
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
6528
|
+
# with character lengths outside of this range will throw invalid
|
6529
|
+
# results.
|
6530
|
+
#
|
6531
|
+
# </note>
|
6532
|
+
#
|
6454
6533
|
# @return [Types::SearchRoutingProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6455
6534
|
#
|
6456
6535
|
# * {Types::SearchRoutingProfilesResponse#routing_profiles #routing_profiles} => Array<Types::RoutingProfile>
|
@@ -6555,6 +6634,12 @@ module Aws::Connect
|
|
6555
6634
|
# @option params [Types::SecurityProfileSearchCriteria] :search_criteria
|
6556
6635
|
# The search criteria to be used to return security profiles.
|
6557
6636
|
#
|
6637
|
+
# <note markdown="1"> The `name` field support "contains" queries with a minimum of 2
|
6638
|
+
# characters and maximum of 25 characters. Any queries with character
|
6639
|
+
# lengths outside of this range will throw invalid results.
|
6640
|
+
#
|
6641
|
+
# </note>
|
6642
|
+
#
|
6558
6643
|
# <note markdown="1"> The currently supported value for `FieldName`\: `name`
|
6559
6644
|
#
|
6560
6645
|
# </note>
|
@@ -6663,10 +6748,10 @@ module Aws::Connect
|
|
6663
6748
|
# @option params [Types::UserSearchCriteria] :search_criteria
|
6664
6749
|
# The search criteria to be used to return users.
|
6665
6750
|
#
|
6666
|
-
# <note markdown="1"> The `
|
6667
|
-
#
|
6668
|
-
#
|
6669
|
-
#
|
6751
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
6752
|
+
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
6753
|
+
# with character lengths outside of this range will throw invalid
|
6754
|
+
# results.
|
6670
6755
|
#
|
6671
6756
|
# </note>
|
6672
6757
|
#
|
@@ -9153,7 +9238,7 @@ module Aws::Connect
|
|
9153
9238
|
params: params,
|
9154
9239
|
config: config)
|
9155
9240
|
context[:gem_name] = 'aws-sdk-connect'
|
9156
|
-
context[:gem_version] = '1.
|
9241
|
+
context[:gem_version] = '1.84.0'
|
9157
9242
|
Seahorse::Client::Request.new(handlers, context)
|
9158
9243
|
end
|
9159
9244
|
|
@@ -35,6 +35,7 @@ module Aws::Connect
|
|
35
35
|
AgentStatusTypes = Shapes::ListShape.new(name: 'AgentStatusTypes')
|
36
36
|
AgentUsername = Shapes::StringShape.new(name: 'AgentUsername')
|
37
37
|
AliasArn = Shapes::StringShape.new(name: 'AliasArn')
|
38
|
+
AllowedMonitorCapabilities = Shapes::ListShape.new(name: 'AllowedMonitorCapabilities')
|
38
39
|
AnswerMachineDetectionConfig = Shapes::StructureShape.new(name: 'AnswerMachineDetectionConfig')
|
39
40
|
ApproximateTotalCount = Shapes::IntegerShape.new(name: 'ApproximateTotalCount')
|
40
41
|
AssociateApprovedOriginRequest = Shapes::StructureShape.new(name: 'AssociateApprovedOriginRequest')
|
@@ -403,6 +404,9 @@ module Aws::Connect
|
|
403
404
|
MediaConcurrency = Shapes::StructureShape.new(name: 'MediaConcurrency')
|
404
405
|
Message = Shapes::StringShape.new(name: 'Message')
|
405
406
|
MinutesLimit60 = Shapes::IntegerShape.new(name: 'MinutesLimit60')
|
407
|
+
MonitorCapability = Shapes::StringShape.new(name: 'MonitorCapability')
|
408
|
+
MonitorContactRequest = Shapes::StructureShape.new(name: 'MonitorContactRequest')
|
409
|
+
MonitorContactResponse = Shapes::StructureShape.new(name: 'MonitorContactResponse')
|
406
410
|
Name = Shapes::StringShape.new(name: 'Name')
|
407
411
|
Name128 = Shapes::StringShape.new(name: 'Name128')
|
408
412
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
@@ -753,6 +757,8 @@ module Aws::Connect
|
|
753
757
|
|
754
758
|
AgentStatusTypes.member = Shapes::ShapeRef.new(shape: AgentStatusType)
|
755
759
|
|
760
|
+
AllowedMonitorCapabilities.member = Shapes::ShapeRef.new(shape: MonitorCapability)
|
761
|
+
|
756
762
|
AnswerMachineDetectionConfig.add_member(:enable_answer_machine_detection, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableAnswerMachineDetection"))
|
757
763
|
AnswerMachineDetectionConfig.add_member(:await_answer_machine_prompt, Shapes::ShapeRef.new(shape: Boolean, location_name: "AwaitAnswerMachinePrompt"))
|
758
764
|
AnswerMachineDetectionConfig.struct_class = Types::AnswerMachineDetectionConfig
|
@@ -2039,6 +2045,17 @@ module Aws::Connect
|
|
2039
2045
|
MediaConcurrency.add_member(:concurrency, Shapes::ShapeRef.new(shape: Concurrency, required: true, location_name: "Concurrency"))
|
2040
2046
|
MediaConcurrency.struct_class = Types::MediaConcurrency
|
2041
2047
|
|
2048
|
+
MonitorContactRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2049
|
+
MonitorContactRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
2050
|
+
MonitorContactRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: AgentResourceId, required: true, location_name: "UserId"))
|
2051
|
+
MonitorContactRequest.add_member(:allowed_monitor_capabilities, Shapes::ShapeRef.new(shape: AllowedMonitorCapabilities, location_name: "AllowedMonitorCapabilities"))
|
2052
|
+
MonitorContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
2053
|
+
MonitorContactRequest.struct_class = Types::MonitorContactRequest
|
2054
|
+
|
2055
|
+
MonitorContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
2056
|
+
MonitorContactResponse.add_member(:contact_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ContactArn"))
|
2057
|
+
MonitorContactResponse.struct_class = Types::MonitorContactResponse
|
2058
|
+
|
2042
2059
|
NumberReference.add_member(:name, Shapes::ShapeRef.new(shape: ReferenceKey, location_name: "Name"))
|
2043
2060
|
NumberReference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, location_name: "Value"))
|
2044
2061
|
NumberReference.struct_class = Types::NumberReference
|
@@ -4611,6 +4628,21 @@ module Aws::Connect
|
|
4611
4628
|
)
|
4612
4629
|
end)
|
4613
4630
|
|
4631
|
+
api.add_operation(:monitor_contact, Seahorse::Model::Operation.new.tap do |o|
|
4632
|
+
o.name = "MonitorContact"
|
4633
|
+
o.http_method = "POST"
|
4634
|
+
o.http_request_uri = "/contact/monitor"
|
4635
|
+
o.input = Shapes::ShapeRef.new(shape: MonitorContactRequest)
|
4636
|
+
o.output = Shapes::ShapeRef.new(shape: MonitorContactResponse)
|
4637
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
4638
|
+
o.errors << Shapes::ShapeRef.new(shape: IdempotencyException)
|
4639
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4640
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
4641
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
4642
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
4643
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4644
|
+
end)
|
4645
|
+
|
4614
4646
|
api.add_operation(:put_user_status, Seahorse::Model::Operation.new.tap do |o|
|
4615
4647
|
o.name = "PutUserStatus"
|
4616
4648
|
o.http_method = "PUT"
|
@@ -1495,6 +1495,20 @@ module Aws::Connect
|
|
1495
1495
|
end
|
1496
1496
|
end
|
1497
1497
|
|
1498
|
+
class MonitorContact
|
1499
|
+
def self.build(context)
|
1500
|
+
unless context.config.regional_endpoint
|
1501
|
+
endpoint = context.config.endpoint.to_s
|
1502
|
+
end
|
1503
|
+
Aws::Connect::EndpointParameters.new(
|
1504
|
+
region: context.config.region,
|
1505
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1506
|
+
use_fips: context.config.use_fips_endpoint,
|
1507
|
+
endpoint: endpoint,
|
1508
|
+
)
|
1509
|
+
end
|
1510
|
+
end
|
1511
|
+
|
1498
1512
|
class PutUserStatus
|
1499
1513
|
def self.build(context)
|
1500
1514
|
unless context.config.regional_endpoint
|
@@ -268,6 +268,8 @@ module Aws::Connect
|
|
268
268
|
Aws::Connect::Endpoints::ListUserHierarchyGroups.build(context)
|
269
269
|
when :list_users
|
270
270
|
Aws::Connect::Endpoints::ListUsers.build(context)
|
271
|
+
when :monitor_contact
|
272
|
+
Aws::Connect::Endpoints::MonitorContact.build(context)
|
271
273
|
when :put_user_status
|
272
274
|
Aws::Connect::Endpoints::PutUserStatus.build(context)
|
273
275
|
when :release_phone_number
|
@@ -1196,6 +1196,7 @@ module Aws::Connect
|
|
1196
1196
|
end
|
1197
1197
|
|
1198
1198
|
# The contact with the specified ID is not active or does not exist.
|
1199
|
+
# Applies to Voice calls only, not to Chat, Task, or Voice Callback.
|
1199
1200
|
#
|
1200
1201
|
# @!attribute [rw] message
|
1201
1202
|
# The message.
|
@@ -4368,12 +4369,16 @@ module Aws::Connect
|
|
4368
4369
|
# @!attribute [rw] groupings
|
4369
4370
|
# The grouping applied to the metrics returned. For example, when
|
4370
4371
|
# grouped by `QUEUE`, the metrics returned apply to each queue rather
|
4371
|
-
# than aggregated for all queues.
|
4372
|
-
# should include a Channels filter. VOICE, CHAT, and TASK channels are
|
4373
|
-
# supported.
|
4372
|
+
# than aggregated for all queues.
|
4374
4373
|
#
|
4375
|
-
# If
|
4376
|
-
#
|
4374
|
+
# * If you group by `CHANNEL`, you should include a Channels filter.
|
4375
|
+
# VOICE, CHAT, and TASK channels are supported.
|
4376
|
+
#
|
4377
|
+
# * If you group by `ROUTING_PROFILE`, you must include either a queue
|
4378
|
+
# or routing profile filter.
|
4379
|
+
#
|
4380
|
+
# * If no `Grouping` is included in the request, a summary of metrics
|
4381
|
+
# is returned.
|
4377
4382
|
# @return [Array<String>]
|
4378
4383
|
#
|
4379
4384
|
# @!attribute [rw] current_metrics
|
@@ -8006,6 +8011,79 @@ module Aws::Connect
|
|
8006
8011
|
include Aws::Structure
|
8007
8012
|
end
|
8008
8013
|
|
8014
|
+
# @note When making an API call, you may pass MonitorContactRequest
|
8015
|
+
# data as a hash:
|
8016
|
+
#
|
8017
|
+
# {
|
8018
|
+
# instance_id: "InstanceId", # required
|
8019
|
+
# contact_id: "ContactId", # required
|
8020
|
+
# user_id: "AgentResourceId", # required
|
8021
|
+
# allowed_monitor_capabilities: ["SILENT_MONITOR"], # accepts SILENT_MONITOR, BARGE
|
8022
|
+
# client_token: "ClientToken",
|
8023
|
+
# }
|
8024
|
+
#
|
8025
|
+
# @!attribute [rw] instance_id
|
8026
|
+
# The identifier of the Amazon Connect instance. You can find the
|
8027
|
+
# instanceId in the ARN of the instance.
|
8028
|
+
# @return [String]
|
8029
|
+
#
|
8030
|
+
# @!attribute [rw] contact_id
|
8031
|
+
# The identifier of the contact.
|
8032
|
+
# @return [String]
|
8033
|
+
#
|
8034
|
+
# @!attribute [rw] user_id
|
8035
|
+
# The identifier of the user account.
|
8036
|
+
# @return [String]
|
8037
|
+
#
|
8038
|
+
# @!attribute [rw] allowed_monitor_capabilities
|
8039
|
+
# Specify which monitoring actions the user is allowed to take. For
|
8040
|
+
# example, whether the user is allowed to escalate from silent
|
8041
|
+
# monitoring to barge.
|
8042
|
+
# @return [Array<String>]
|
8043
|
+
#
|
8044
|
+
# @!attribute [rw] client_token
|
8045
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
8046
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
8047
|
+
# SDK populates this field. For more information about idempotency,
|
8048
|
+
# see [Making retries safe with idempotent APIs][1].
|
8049
|
+
#
|
8050
|
+
# **A suitable default value is auto-generated.** You should normally
|
8051
|
+
# not need to pass this option.
|
8052
|
+
#
|
8053
|
+
#
|
8054
|
+
#
|
8055
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
8056
|
+
# @return [String]
|
8057
|
+
#
|
8058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MonitorContactRequest AWS API Documentation
|
8059
|
+
#
|
8060
|
+
class MonitorContactRequest < Struct.new(
|
8061
|
+
:instance_id,
|
8062
|
+
:contact_id,
|
8063
|
+
:user_id,
|
8064
|
+
:allowed_monitor_capabilities,
|
8065
|
+
:client_token)
|
8066
|
+
SENSITIVE = []
|
8067
|
+
include Aws::Structure
|
8068
|
+
end
|
8069
|
+
|
8070
|
+
# @!attribute [rw] contact_id
|
8071
|
+
# The identifier of the contact.
|
8072
|
+
# @return [String]
|
8073
|
+
#
|
8074
|
+
# @!attribute [rw] contact_arn
|
8075
|
+
# The ARN of the contact.
|
8076
|
+
# @return [String]
|
8077
|
+
#
|
8078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MonitorContactResponse AWS API Documentation
|
8079
|
+
#
|
8080
|
+
class MonitorContactResponse < Struct.new(
|
8081
|
+
:contact_id,
|
8082
|
+
:contact_arn)
|
8083
|
+
SENSITIVE = []
|
8084
|
+
include Aws::Structure
|
8085
|
+
end
|
8086
|
+
|
8009
8087
|
# Information about a reference when the `referenceType` is `NUMBER`.
|
8010
8088
|
# Otherwise, null.
|
8011
8089
|
#
|
@@ -8434,6 +8512,13 @@ module Aws::Connect
|
|
8434
8512
|
|
8435
8513
|
# The search criteria to be used to return queues.
|
8436
8514
|
#
|
8515
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
8516
|
+
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
8517
|
+
# with character lengths outside of this range will throw invalid
|
8518
|
+
# results.
|
8519
|
+
#
|
8520
|
+
# </note>
|
8521
|
+
#
|
8437
8522
|
# @note When making an API call, you may pass QueueSearchCriteria
|
8438
8523
|
# data as a hash:
|
8439
8524
|
#
|
@@ -9268,6 +9353,13 @@ module Aws::Connect
|
|
9268
9353
|
|
9269
9354
|
# The search criteria to be used to return routing profiles.
|
9270
9355
|
#
|
9356
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
9357
|
+
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
9358
|
+
# with character lengths outside of this range will throw invalid
|
9359
|
+
# results.
|
9360
|
+
#
|
9361
|
+
# </note>
|
9362
|
+
#
|
9271
9363
|
# @note When making an API call, you may pass RoutingProfileSearchCriteria
|
9272
9364
|
# data as a hash:
|
9273
9365
|
#
|
@@ -9589,6 +9681,13 @@ module Aws::Connect
|
|
9589
9681
|
#
|
9590
9682
|
# @!attribute [rw] search_criteria
|
9591
9683
|
# The search criteria to be used to return queues.
|
9684
|
+
#
|
9685
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries
|
9686
|
+
# with a minimum of 2 characters and a maximum of 25 characters. Any
|
9687
|
+
# queries with character lengths outside of this range will throw
|
9688
|
+
# invalid results.
|
9689
|
+
#
|
9690
|
+
# </note>
|
9592
9691
|
# @return [Types::QueueSearchCriteria]
|
9593
9692
|
#
|
9594
9693
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchQueuesRequest AWS API Documentation
|
@@ -9695,6 +9794,13 @@ module Aws::Connect
|
|
9695
9794
|
#
|
9696
9795
|
# @!attribute [rw] search_criteria
|
9697
9796
|
# The search criteria to be used to return routing profiles.
|
9797
|
+
#
|
9798
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries
|
9799
|
+
# with a minimum of 2 characters and a maximum of 25 characters. Any
|
9800
|
+
# queries with character lengths outside of this range will throw
|
9801
|
+
# invalid results.
|
9802
|
+
#
|
9803
|
+
# </note>
|
9698
9804
|
# @return [Types::RoutingProfileSearchCriteria]
|
9699
9805
|
#
|
9700
9806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchRoutingProfilesRequest AWS API Documentation
|
@@ -9799,6 +9905,12 @@ module Aws::Connect
|
|
9799
9905
|
# @!attribute [rw] search_criteria
|
9800
9906
|
# The search criteria to be used to return security profiles.
|
9801
9907
|
#
|
9908
|
+
# <note markdown="1"> The `name` field support "contains" queries with a minimum of 2
|
9909
|
+
# characters and maximum of 25 characters. Any queries with character
|
9910
|
+
# lengths outside of this range will throw invalid results.
|
9911
|
+
#
|
9912
|
+
# </note>
|
9913
|
+
#
|
9802
9914
|
# <note markdown="1"> The currently supported value for `FieldName`\: `name`
|
9803
9915
|
#
|
9804
9916
|
# </note>
|
@@ -9918,10 +10030,10 @@ module Aws::Connect
|
|
9918
10030
|
# @!attribute [rw] search_criteria
|
9919
10031
|
# The search criteria to be used to return users.
|
9920
10032
|
#
|
9921
|
-
# <note markdown="1"> The `
|
9922
|
-
#
|
9923
|
-
#
|
9924
|
-
#
|
10033
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries
|
10034
|
+
# with a minimum of 2 characters and a maximum of 25 characters. Any
|
10035
|
+
# queries with character lengths outside of this range will throw
|
10036
|
+
# invalid results.
|
9925
10037
|
#
|
9926
10038
|
# </note>
|
9927
10039
|
# @return [Types::UserSearchCriteria]
|
@@ -10105,6 +10217,12 @@ module Aws::Connect
|
|
10105
10217
|
|
10106
10218
|
# The search criteria to be used to return security profiles.
|
10107
10219
|
#
|
10220
|
+
# <note markdown="1"> The `name` field support "contains" queries with a minimum of 2
|
10221
|
+
# characters and maximum of 25 characters. Any queries with character
|
10222
|
+
# lengths outside of this range will throw invalid results.
|
10223
|
+
#
|
10224
|
+
# </note>
|
10225
|
+
#
|
10108
10226
|
# @note When making an API call, you may pass SecurityProfileSearchCriteria
|
10109
10227
|
# data as a hash:
|
10110
10228
|
#
|
@@ -13489,10 +13607,10 @@ module Aws::Connect
|
|
13489
13607
|
|
13490
13608
|
# The search criteria to be used to return users.
|
13491
13609
|
#
|
13492
|
-
# <note markdown="1"> The `
|
13493
|
-
#
|
13494
|
-
#
|
13495
|
-
#
|
13610
|
+
# <note markdown="1"> The `name` and `description` fields support "contains" queries with
|
13611
|
+
# a minimum of 2 characters and a maximum of 25 characters. Any queries
|
13612
|
+
# with character lengths outside of this range will throw invalid
|
13613
|
+
# results.
|
13496
13614
|
#
|
13497
13615
|
# </note>
|
13498
13616
|
#
|
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.84.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-
|
11
|
+
date: 2022-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|