aws-sdk-connect 1.215.0 → 1.216.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 +189 -28
- data/lib/aws-sdk-connect/client_api.rb +27 -1
- data/lib/aws-sdk-connect/types.rb +109 -6
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +39 -7
- data/sig/types.rbs +20 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7ed8ace334e08f00b6707940a6769168630f90c2cef75196078549ea97c5860
|
4
|
+
data.tar.gz: 252fd84f609f82043d5da26ae897bfa2048c4484ac2f0d673b75171dc80bc84e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '090afef8ddb9d683196eefab1fe427344cea0604f8aee543950d7d14d82286876991dfcf5358abf9bfbd565afa6392fe4b1fb2584b5ed4fced5feb2277c4eb14'
|
7
|
+
data.tar.gz: 101245afc14ce431358f7434bbe78675173e3570dd7012bdddf1ac25ac5a16cf96eb9cf7655c1e3c346090d1e556243eaba8fe96472588e8285bb2f24388eec1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.216.0
|
@@ -1938,6 +1938,12 @@ module Aws::Connect
|
|
1938
1938
|
# },
|
1939
1939
|
# },
|
1940
1940
|
# value_integer: 1,
|
1941
|
+
# value_list: [
|
1942
|
+
# {
|
1943
|
+
# # recursive SegmentAttributeValue
|
1944
|
+
# },
|
1945
|
+
# ],
|
1946
|
+
# value_arn: "SegmentAttributeValueString",
|
1941
1947
|
# },
|
1942
1948
|
# },
|
1943
1949
|
# previous_contact_id: "ContactId",
|
@@ -2872,14 +2878,34 @@ module Aws::Connect
|
|
2872
2878
|
end
|
2873
2879
|
|
2874
2880
|
# Creates a new predefined attribute for the specified Amazon Connect
|
2875
|
-
# instance. *
|
2876
|
-
# instance that can be used to route contacts to an agent or pools of
|
2877
|
-
# agents within a queue. For more information, see [Create predefined
|
2878
|
-
# attributes for routing contacts to agents][1].
|
2881
|
+
# instance. A *predefined attribute* is made up of a name and a value.
|
2879
2882
|
#
|
2883
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
2884
|
+
# quotas][1].
|
2880
2885
|
#
|
2886
|
+
# **Use cases**
|
2881
2887
|
#
|
2882
|
-
#
|
2888
|
+
# Following are common uses cases for this API:
|
2889
|
+
#
|
2890
|
+
# * Create an attribute for routing proficiency (for example, agent
|
2891
|
+
# certification) that has predefined values (for example, a list of
|
2892
|
+
# possible certifications). For more information, see [Create
|
2893
|
+
# predefined attributes for routing contacts to agents][2].
|
2894
|
+
#
|
2895
|
+
# * Create an attribute for business unit name that has a list of
|
2896
|
+
# predefined business unit names used in your organization. This is a
|
2897
|
+
# use case where information for a contact varies between transfers or
|
2898
|
+
# conferences. For more information, see [Use contact segment
|
2899
|
+
# attributes][3].
|
2900
|
+
#
|
2901
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
2902
|
+
#
|
2903
|
+
#
|
2904
|
+
#
|
2905
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
2906
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
2907
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
2908
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
2883
2909
|
#
|
2884
2910
|
# @option params [required, String] :instance_id
|
2885
2911
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -2888,9 +2914,19 @@ module Aws::Connect
|
|
2888
2914
|
# @option params [required, String] :name
|
2889
2915
|
# The name of the predefined attribute.
|
2890
2916
|
#
|
2891
|
-
# @option params [
|
2917
|
+
# @option params [Types::PredefinedAttributeValues] :values
|
2892
2918
|
# The values of the predefined attribute.
|
2893
2919
|
#
|
2920
|
+
# @option params [Array<String>] :purposes
|
2921
|
+
# Values that enable you to categorize your predefined attributes. You
|
2922
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
2923
|
+
# website.
|
2924
|
+
#
|
2925
|
+
# @option params [Types::InputPredefinedAttributeConfiguration] :attribute_configuration
|
2926
|
+
# Custom metadata that is associated to predefined attributes to control
|
2927
|
+
# behavior in upstream services, such as controlling how a predefined
|
2928
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
2929
|
+
#
|
2894
2930
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2895
2931
|
#
|
2896
2932
|
# @example Request syntax with placeholder values
|
@@ -2898,9 +2934,13 @@ module Aws::Connect
|
|
2898
2934
|
# resp = client.create_predefined_attribute({
|
2899
2935
|
# instance_id: "InstanceId", # required
|
2900
2936
|
# name: "PredefinedAttributeName", # required
|
2901
|
-
# values: {
|
2937
|
+
# values: {
|
2902
2938
|
# string_list: ["PredefinedAttributeStringValue"],
|
2903
2939
|
# },
|
2940
|
+
# purposes: ["PredefinedAttributePurposeName"],
|
2941
|
+
# attribute_configuration: {
|
2942
|
+
# enable_value_validation_on_association: false,
|
2943
|
+
# },
|
2904
2944
|
# })
|
2905
2945
|
#
|
2906
2946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePredefinedAttribute AWS API Documentation
|
@@ -5543,6 +5583,9 @@ module Aws::Connect
|
|
5543
5583
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_map #=> Hash
|
5544
5584
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"] #=> Types::SegmentAttributeValue
|
5545
5585
|
# resp.contact.segment_attributes["SegmentAttributeName"].value_integer #=> Integer
|
5586
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_list #=> Array
|
5587
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_list[0] #=> Types::SegmentAttributeValue
|
5588
|
+
# resp.contact.segment_attributes["SegmentAttributeName"].value_arn #=> String
|
5546
5589
|
# resp.contact.recordings #=> Array
|
5547
5590
|
# resp.contact.recordings[0].storage_type #=> String, one of "S3", "KINESIS_VIDEO_STREAM", "KINESIS_STREAM", "KINESIS_FIREHOSE"
|
5548
5591
|
# resp.contact.recordings[0].location #=> String
|
@@ -6246,14 +6289,29 @@ module Aws::Connect
|
|
6246
6289
|
end
|
6247
6290
|
|
6248
6291
|
# Describes a predefined attribute for the specified Amazon Connect
|
6249
|
-
# instance. *
|
6250
|
-
#
|
6251
|
-
#
|
6252
|
-
#
|
6292
|
+
# instance. A *predefined attribute* is made up of a name and a value.
|
6293
|
+
# You can use predefined attributes for:
|
6294
|
+
#
|
6295
|
+
# * Routing proficiency (for example, agent certification) that has
|
6296
|
+
# predefined values (for example, a list of possible certifications).
|
6297
|
+
# For more information, see [Create predefined attributes for routing
|
6298
|
+
# contacts to agents][1].
|
6299
|
+
#
|
6300
|
+
# * Contact information that varies between transfers or conferences,
|
6301
|
+
# such as the name of the business unit handling the contact. For more
|
6302
|
+
# information, see [Use contact segment attributes][2].
|
6303
|
+
#
|
6304
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
6305
|
+
# quotas][3].
|
6306
|
+
#
|
6307
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
6253
6308
|
#
|
6254
6309
|
#
|
6255
6310
|
#
|
6256
6311
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
6312
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
6313
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
6314
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
6257
6315
|
#
|
6258
6316
|
# @option params [required, String] :instance_id
|
6259
6317
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -6278,6 +6336,10 @@ module Aws::Connect
|
|
6278
6336
|
# resp.predefined_attribute.name #=> String
|
6279
6337
|
# resp.predefined_attribute.values.string_list #=> Array
|
6280
6338
|
# resp.predefined_attribute.values.string_list[0] #=> String
|
6339
|
+
# resp.predefined_attribute.purposes #=> Array
|
6340
|
+
# resp.predefined_attribute.purposes[0] #=> String
|
6341
|
+
# resp.predefined_attribute.attribute_configuration.enable_value_validation_on_association #=> Boolean
|
6342
|
+
# resp.predefined_attribute.attribute_configuration.is_read_only #=> Boolean
|
6281
6343
|
# resp.predefined_attribute.last_modified_time #=> Time
|
6282
6344
|
# resp.predefined_attribute.last_modified_region #=> String
|
6283
6345
|
#
|
@@ -12489,14 +12551,29 @@ module Aws::Connect
|
|
12489
12551
|
end
|
12490
12552
|
|
12491
12553
|
# Lists predefined attributes for the specified Amazon Connect instance.
|
12492
|
-
# *
|
12493
|
-
#
|
12494
|
-
#
|
12495
|
-
#
|
12554
|
+
# A *predefined attribute* is made up of a name and a value. You can use
|
12555
|
+
# predefined attributes for:
|
12556
|
+
#
|
12557
|
+
# * Routing proficiency (for example, agent certification) that has
|
12558
|
+
# predefined values (for example, a list of possible certifications).
|
12559
|
+
# For more information, see [Create predefined attributes for routing
|
12560
|
+
# contacts to agents][1].
|
12561
|
+
#
|
12562
|
+
# * Contact information that varies between transfers or conferences,
|
12563
|
+
# such as the name of the business unit handling the contact. For more
|
12564
|
+
# information, see [Use contact segment attributes][2].
|
12565
|
+
#
|
12566
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
12567
|
+
# quotas][3].
|
12568
|
+
#
|
12569
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
12496
12570
|
#
|
12497
12571
|
#
|
12498
12572
|
#
|
12499
12573
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
12574
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
12575
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
12576
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
12500
12577
|
#
|
12501
12578
|
# @option params [required, String] :instance_id
|
12502
12579
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -15070,15 +15147,30 @@ module Aws::Connect
|
|
15070
15147
|
req.send_request(options)
|
15071
15148
|
end
|
15072
15149
|
|
15073
|
-
# Searches predefined attributes that meet certain criteria.
|
15074
|
-
#
|
15075
|
-
#
|
15076
|
-
#
|
15077
|
-
#
|
15150
|
+
# Searches predefined attributes that meet certain criteria. A
|
15151
|
+
# *predefined attribute* is made up of a name and a value. You can use
|
15152
|
+
# predefined attributes for:
|
15153
|
+
#
|
15154
|
+
# * Routing proficiency (for example, agent certification) that has
|
15155
|
+
# predefined values (for example, a list of possible certifications).
|
15156
|
+
# For more information, see [Create predefined attributes for routing
|
15157
|
+
# contacts to agents][1].
|
15158
|
+
#
|
15159
|
+
# * Contact information that varies between transfers or conferences,
|
15160
|
+
# such as the name of the business unit handling the contact. For more
|
15161
|
+
# information, see [Use contact segment attributes][2].
|
15162
|
+
#
|
15163
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
15164
|
+
# quotas][3].
|
15165
|
+
#
|
15166
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
15078
15167
|
#
|
15079
15168
|
#
|
15080
15169
|
#
|
15081
15170
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
15171
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
15172
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
15173
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
15082
15174
|
#
|
15083
15175
|
# @option params [required, String] :instance_id
|
15084
15176
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -15134,6 +15226,10 @@ module Aws::Connect
|
|
15134
15226
|
# resp.predefined_attributes[0].name #=> String
|
15135
15227
|
# resp.predefined_attributes[0].values.string_list #=> Array
|
15136
15228
|
# resp.predefined_attributes[0].values.string_list[0] #=> String
|
15229
|
+
# resp.predefined_attributes[0].purposes #=> Array
|
15230
|
+
# resp.predefined_attributes[0].purposes[0] #=> String
|
15231
|
+
# resp.predefined_attributes[0].attribute_configuration.enable_value_validation_on_association #=> Boolean
|
15232
|
+
# resp.predefined_attributes[0].attribute_configuration.is_read_only #=> Boolean
|
15137
15233
|
# resp.predefined_attributes[0].last_modified_time #=> Time
|
15138
15234
|
# resp.predefined_attributes[0].last_modified_region #=> String
|
15139
15235
|
# resp.next_token #=> String
|
@@ -16702,6 +16798,12 @@ module Aws::Connect
|
|
16702
16798
|
# },
|
16703
16799
|
# },
|
16704
16800
|
# value_integer: 1,
|
16801
|
+
# value_list: [
|
16802
|
+
# {
|
16803
|
+
# # recursive SegmentAttributeValue
|
16804
|
+
# },
|
16805
|
+
# ],
|
16806
|
+
# value_arn: "SegmentAttributeValueString",
|
16705
16807
|
# },
|
16706
16808
|
# },
|
16707
16809
|
# customer_id: "CustomerIdNonEmpty",
|
@@ -17098,6 +17200,12 @@ module Aws::Connect
|
|
17098
17200
|
# },
|
17099
17201
|
# },
|
17100
17202
|
# value_integer: 1,
|
17203
|
+
# value_list: [
|
17204
|
+
# {
|
17205
|
+
# # recursive SegmentAttributeValue
|
17206
|
+
# },
|
17207
|
+
# ],
|
17208
|
+
# value_arn: "SegmentAttributeValueString",
|
17101
17209
|
# },
|
17102
17210
|
# },
|
17103
17211
|
# client_token: "ClientToken",
|
@@ -17258,6 +17366,12 @@ module Aws::Connect
|
|
17258
17366
|
# },
|
17259
17367
|
# },
|
17260
17368
|
# value_integer: 1,
|
17369
|
+
# value_list: [
|
17370
|
+
# {
|
17371
|
+
# # recursive SegmentAttributeValue
|
17372
|
+
# },
|
17373
|
+
# ],
|
17374
|
+
# value_arn: "SegmentAttributeValueString",
|
17261
17375
|
# },
|
17262
17376
|
# },
|
17263
17377
|
# attributes: {
|
@@ -17819,6 +17933,12 @@ module Aws::Connect
|
|
17819
17933
|
# },
|
17820
17934
|
# },
|
17821
17935
|
# value_integer: 1,
|
17936
|
+
# value_list: [
|
17937
|
+
# {
|
17938
|
+
# # recursive SegmentAttributeValue
|
17939
|
+
# },
|
17940
|
+
# ],
|
17941
|
+
# value_arn: "SegmentAttributeValueString",
|
17822
17942
|
# },
|
17823
17943
|
# },
|
17824
17944
|
# })
|
@@ -18649,8 +18769,9 @@ module Aws::Connect
|
|
18649
18769
|
# This field can be used to show channel subtype, such as
|
18650
18770
|
# `connect:Guide`.
|
18651
18771
|
#
|
18652
|
-
#
|
18653
|
-
# updated by using the
|
18772
|
+
# Contact Expiry, and user-defined attributes (String - String) that are
|
18773
|
+
# defined in predefined attributes, can be updated by using the
|
18774
|
+
# UpdateContact API.
|
18654
18775
|
#
|
18655
18776
|
# @option params [Types::QueueInfoInput] :queue_info
|
18656
18777
|
# Information about the queue associated with a contact. This parameter
|
@@ -18723,6 +18844,12 @@ module Aws::Connect
|
|
18723
18844
|
# },
|
18724
18845
|
# },
|
18725
18846
|
# value_integer: 1,
|
18847
|
+
# value_list: [
|
18848
|
+
# {
|
18849
|
+
# # recursive SegmentAttributeValue
|
18850
|
+
# },
|
18851
|
+
# ],
|
18852
|
+
# value_arn: "SegmentAttributeValueString",
|
18726
18853
|
# },
|
18727
18854
|
# },
|
18728
18855
|
# queue_info: {
|
@@ -20006,14 +20133,34 @@ module Aws::Connect
|
|
20006
20133
|
end
|
20007
20134
|
|
20008
20135
|
# Updates a predefined attribute for the specified Amazon Connect
|
20009
|
-
# instance. *
|
20010
|
-
#
|
20011
|
-
#
|
20012
|
-
#
|
20136
|
+
# instance. A *predefined attribute* is made up of a name and a value.
|
20137
|
+
#
|
20138
|
+
# For the predefined attributes per instance quota, see [Amazon Connect
|
20139
|
+
# quotas][1].
|
20013
20140
|
#
|
20141
|
+
# **Use cases**
|
20142
|
+
#
|
20143
|
+
# Following are common uses cases for this API:
|
20014
20144
|
#
|
20145
|
+
# * Update routing proficiency (for example, agent certification) that
|
20146
|
+
# has predefined values (for example, a list of possible
|
20147
|
+
# certifications). For more information, see [Create predefined
|
20148
|
+
# attributes for routing contacts to agents][2].
|
20015
20149
|
#
|
20016
|
-
#
|
20150
|
+
# * Update an attribute for business unit name that has a list of
|
20151
|
+
# predefined business unit names used in your organization. This is a
|
20152
|
+
# use case where information for a contact varies between transfers or
|
20153
|
+
# conferences. For more information, see [Use contact segment
|
20154
|
+
# attributes][3].
|
20155
|
+
#
|
20156
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][4].
|
20157
|
+
#
|
20158
|
+
#
|
20159
|
+
#
|
20160
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
20161
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html
|
20162
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html
|
20163
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
20017
20164
|
#
|
20018
20165
|
# @option params [required, String] :instance_id
|
20019
20166
|
# The identifier of the Amazon Connect instance. You can find the
|
@@ -20025,6 +20172,16 @@ module Aws::Connect
|
|
20025
20172
|
# @option params [Types::PredefinedAttributeValues] :values
|
20026
20173
|
# The values of the predefined attribute.
|
20027
20174
|
#
|
20175
|
+
# @option params [Array<String>] :purposes
|
20176
|
+
# Values that enable you to categorize your predefined attributes. You
|
20177
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
20178
|
+
# website.
|
20179
|
+
#
|
20180
|
+
# @option params [Types::InputPredefinedAttributeConfiguration] :attribute_configuration
|
20181
|
+
# Custom metadata that is associated to predefined attributes to control
|
20182
|
+
# behavior in upstream services, such as controlling how a predefined
|
20183
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
20184
|
+
#
|
20028
20185
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
20029
20186
|
#
|
20030
20187
|
# @example Request syntax with placeholder values
|
@@ -20035,6 +20192,10 @@ module Aws::Connect
|
|
20035
20192
|
# values: {
|
20036
20193
|
# string_list: ["PredefinedAttributeStringValue"],
|
20037
20194
|
# },
|
20195
|
+
# purposes: ["PredefinedAttributePurposeName"],
|
20196
|
+
# attribute_configuration: {
|
20197
|
+
# enable_value_validation_on_association: false,
|
20198
|
+
# },
|
20038
20199
|
# })
|
20039
20200
|
#
|
20040
20201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdatePredefinedAttribute AWS API Documentation
|
@@ -21562,7 +21723,7 @@ module Aws::Connect
|
|
21562
21723
|
tracer: tracer
|
21563
21724
|
)
|
21564
21725
|
context[:gem_name] = 'aws-sdk-connect'
|
21565
|
-
context[:gem_version] = '1.
|
21726
|
+
context[:gem_version] = '1.216.0'
|
21566
21727
|
Seahorse::Client::Request.new(handlers, context)
|
21567
21728
|
end
|
21568
21729
|
|
@@ -509,6 +509,7 @@ module Aws::Connect
|
|
509
509
|
EmailRecipientsList = Shapes::ListShape.new(name: 'EmailRecipientsList')
|
510
510
|
EmailReference = Shapes::StructureShape.new(name: 'EmailReference')
|
511
511
|
EmptyFieldValue = Shapes::StructureShape.new(name: 'EmptyFieldValue')
|
512
|
+
EnableValueValidationOnAssociation = Shapes::BooleanShape.new(name: 'EnableValueValidationOnAssociation')
|
512
513
|
EncryptionConfig = Shapes::StructureShape.new(name: 'EncryptionConfig')
|
513
514
|
EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
|
514
515
|
EndAssociatedTasksActionDefinition = Shapes::StructureShape.new(name: 'EndAssociatedTasksActionDefinition')
|
@@ -708,6 +709,7 @@ module Aws::Connect
|
|
708
709
|
Index = Shapes::IntegerShape.new(name: 'Index')
|
709
710
|
InitiateAs = Shapes::StringShape.new(name: 'InitiateAs')
|
710
711
|
InitiationMethodList = Shapes::ListShape.new(name: 'InitiationMethodList')
|
712
|
+
InputPredefinedAttributeConfiguration = Shapes::StructureShape.new(name: 'InputPredefinedAttributeConfiguration')
|
711
713
|
Instance = Shapes::StructureShape.new(name: 'Instance')
|
712
714
|
InstanceArn = Shapes::StringShape.new(name: 'InstanceArn')
|
713
715
|
InstanceAttributeType = Shapes::StringShape.new(name: 'InstanceAttributeType')
|
@@ -740,6 +742,7 @@ module Aws::Connect
|
|
740
742
|
InvisibleTaskTemplateFields = Shapes::ListShape.new(name: 'InvisibleTaskTemplateFields')
|
741
743
|
IpCidr = Shapes::StringShape.new(name: 'IpCidr')
|
742
744
|
IpCidrList = Shapes::ListShape.new(name: 'IpCidrList')
|
745
|
+
IsReadOnly = Shapes::BooleanShape.new(name: 'IsReadOnly')
|
743
746
|
IvrRecordingTrack = Shapes::StringShape.new(name: 'IvrRecordingTrack')
|
744
747
|
JoinToken = Shapes::StringShape.new(name: 'JoinToken')
|
745
748
|
KeyId = Shapes::StringShape.new(name: 'KeyId')
|
@@ -981,7 +984,10 @@ module Aws::Connect
|
|
981
984
|
PotentialDisconnectIssue = Shapes::StringShape.new(name: 'PotentialDisconnectIssue')
|
982
985
|
PreSignedAttachmentUrl = Shapes::StringShape.new(name: 'PreSignedAttachmentUrl')
|
983
986
|
PredefinedAttribute = Shapes::StructureShape.new(name: 'PredefinedAttribute')
|
987
|
+
PredefinedAttributeConfiguration = Shapes::StructureShape.new(name: 'PredefinedAttributeConfiguration')
|
984
988
|
PredefinedAttributeName = Shapes::StringShape.new(name: 'PredefinedAttributeName')
|
989
|
+
PredefinedAttributePurposeName = Shapes::StringShape.new(name: 'PredefinedAttributePurposeName')
|
990
|
+
PredefinedAttributePurposeNameList = Shapes::ListShape.new(name: 'PredefinedAttributePurposeNameList')
|
985
991
|
PredefinedAttributeSearchConditionList = Shapes::ListShape.new(name: 'PredefinedAttributeSearchConditionList')
|
986
992
|
PredefinedAttributeSearchCriteria = Shapes::StructureShape.new(name: 'PredefinedAttributeSearchCriteria')
|
987
993
|
PredefinedAttributeSearchSummaryList = Shapes::ListShape.new(name: 'PredefinedAttributeSearchSummaryList')
|
@@ -1253,6 +1259,7 @@ module Aws::Connect
|
|
1253
1259
|
SegmentAttributeName = Shapes::StringShape.new(name: 'SegmentAttributeName')
|
1254
1260
|
SegmentAttributeValue = Shapes::StructureShape.new(name: 'SegmentAttributeValue')
|
1255
1261
|
SegmentAttributeValueInteger = Shapes::IntegerShape.new(name: 'SegmentAttributeValueInteger')
|
1262
|
+
SegmentAttributeValueList = Shapes::ListShape.new(name: 'SegmentAttributeValueList')
|
1256
1263
|
SegmentAttributeValueMap = Shapes::MapShape.new(name: 'SegmentAttributeValueMap')
|
1257
1264
|
SegmentAttributeValueString = Shapes::StringShape.new(name: 'SegmentAttributeValueString')
|
1258
1265
|
SegmentAttributes = Shapes::MapShape.new(name: 'SegmentAttributes')
|
@@ -2486,7 +2493,9 @@ module Aws::Connect
|
|
2486
2493
|
|
2487
2494
|
CreatePredefinedAttributeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
2488
2495
|
CreatePredefinedAttributeRequest.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, required: true, location_name: "Name"))
|
2489
|
-
CreatePredefinedAttributeRequest.add_member(:values, Shapes::ShapeRef.new(shape: PredefinedAttributeValues,
|
2496
|
+
CreatePredefinedAttributeRequest.add_member(:values, Shapes::ShapeRef.new(shape: PredefinedAttributeValues, location_name: "Values"))
|
2497
|
+
CreatePredefinedAttributeRequest.add_member(:purposes, Shapes::ShapeRef.new(shape: PredefinedAttributePurposeNameList, location_name: "Purposes"))
|
2498
|
+
CreatePredefinedAttributeRequest.add_member(:attribute_configuration, Shapes::ShapeRef.new(shape: InputPredefinedAttributeConfiguration, location_name: "AttributeConfiguration"))
|
2490
2499
|
CreatePredefinedAttributeRequest.struct_class = Types::CreatePredefinedAttributeRequest
|
2491
2500
|
|
2492
2501
|
CreatePromptRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
@@ -3910,6 +3919,9 @@ module Aws::Connect
|
|
3910
3919
|
|
3911
3920
|
InitiationMethodList.member = Shapes::ShapeRef.new(shape: ContactInitiationMethod)
|
3912
3921
|
|
3922
|
+
InputPredefinedAttributeConfiguration.add_member(:enable_value_validation_on_association, Shapes::ShapeRef.new(shape: EnableValueValidationOnAssociation, location_name: "EnableValueValidationOnAssociation"))
|
3923
|
+
InputPredefinedAttributeConfiguration.struct_class = Types::InputPredefinedAttributeConfiguration
|
3924
|
+
|
3913
3925
|
Instance.add_member(:id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "Id"))
|
3914
3926
|
Instance.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
3915
3927
|
Instance.add_member(:identity_management_type, Shapes::ShapeRef.new(shape: DirectoryType, location_name: "IdentityManagementType"))
|
@@ -4746,10 +4758,18 @@ module Aws::Connect
|
|
4746
4758
|
|
4747
4759
|
PredefinedAttribute.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, location_name: "Name"))
|
4748
4760
|
PredefinedAttribute.add_member(:values, Shapes::ShapeRef.new(shape: PredefinedAttributeValues, location_name: "Values"))
|
4761
|
+
PredefinedAttribute.add_member(:purposes, Shapes::ShapeRef.new(shape: PredefinedAttributePurposeNameList, location_name: "Purposes"))
|
4762
|
+
PredefinedAttribute.add_member(:attribute_configuration, Shapes::ShapeRef.new(shape: PredefinedAttributeConfiguration, location_name: "AttributeConfiguration"))
|
4749
4763
|
PredefinedAttribute.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
4750
4764
|
PredefinedAttribute.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
|
4751
4765
|
PredefinedAttribute.struct_class = Types::PredefinedAttribute
|
4752
4766
|
|
4767
|
+
PredefinedAttributeConfiguration.add_member(:enable_value_validation_on_association, Shapes::ShapeRef.new(shape: EnableValueValidationOnAssociation, location_name: "EnableValueValidationOnAssociation"))
|
4768
|
+
PredefinedAttributeConfiguration.add_member(:is_read_only, Shapes::ShapeRef.new(shape: IsReadOnly, location_name: "IsReadOnly"))
|
4769
|
+
PredefinedAttributeConfiguration.struct_class = Types::PredefinedAttributeConfiguration
|
4770
|
+
|
4771
|
+
PredefinedAttributePurposeNameList.member = Shapes::ShapeRef.new(shape: PredefinedAttributePurposeName)
|
4772
|
+
|
4753
4773
|
PredefinedAttributeSearchConditionList.member = Shapes::ShapeRef.new(shape: PredefinedAttributeSearchCriteria)
|
4754
4774
|
|
4755
4775
|
PredefinedAttributeSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: PredefinedAttributeSearchConditionList, location_name: "OrConditions"))
|
@@ -5604,8 +5624,12 @@ module Aws::Connect
|
|
5604
5624
|
SegmentAttributeValue.add_member(:value_string, Shapes::ShapeRef.new(shape: SegmentAttributeValueString, location_name: "ValueString"))
|
5605
5625
|
SegmentAttributeValue.add_member(:value_map, Shapes::ShapeRef.new(shape: SegmentAttributeValueMap, location_name: "ValueMap"))
|
5606
5626
|
SegmentAttributeValue.add_member(:value_integer, Shapes::ShapeRef.new(shape: SegmentAttributeValueInteger, location_name: "ValueInteger"))
|
5627
|
+
SegmentAttributeValue.add_member(:value_list, Shapes::ShapeRef.new(shape: SegmentAttributeValueList, location_name: "ValueList"))
|
5628
|
+
SegmentAttributeValue.add_member(:value_arn, Shapes::ShapeRef.new(shape: SegmentAttributeValueString, location_name: "ValueArn"))
|
5607
5629
|
SegmentAttributeValue.struct_class = Types::SegmentAttributeValue
|
5608
5630
|
|
5631
|
+
SegmentAttributeValueList.member = Shapes::ShapeRef.new(shape: SegmentAttributeValue)
|
5632
|
+
|
5609
5633
|
SegmentAttributeValueMap.key = Shapes::ShapeRef.new(shape: SegmentAttributeName)
|
5610
5634
|
SegmentAttributeValueMap.value = Shapes::ShapeRef.new(shape: SegmentAttributeValue)
|
5611
5635
|
|
@@ -6300,6 +6324,8 @@ module Aws::Connect
|
|
6300
6324
|
UpdatePredefinedAttributeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
6301
6325
|
UpdatePredefinedAttributeRequest.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, required: true, location: "uri", location_name: "Name"))
|
6302
6326
|
UpdatePredefinedAttributeRequest.add_member(:values, Shapes::ShapeRef.new(shape: PredefinedAttributeValues, location_name: "Values"))
|
6327
|
+
UpdatePredefinedAttributeRequest.add_member(:purposes, Shapes::ShapeRef.new(shape: PredefinedAttributePurposeNameList, location_name: "Purposes"))
|
6328
|
+
UpdatePredefinedAttributeRequest.add_member(:attribute_configuration, Shapes::ShapeRef.new(shape: InputPredefinedAttributeConfiguration, location_name: "AttributeConfiguration"))
|
6303
6329
|
UpdatePredefinedAttributeRequest.struct_class = Types::UpdatePredefinedAttributeRequest
|
6304
6330
|
|
6305
6331
|
UpdatePromptRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
@@ -3570,7 +3570,7 @@ module Aws::Connect
|
|
3570
3570
|
:disconnect_timestamp,
|
3571
3571
|
:scheduled_timestamp,
|
3572
3572
|
:segment_attributes)
|
3573
|
-
SENSITIVE = []
|
3573
|
+
SENSITIVE = [:segment_attributes]
|
3574
3574
|
include Aws::Structure
|
3575
3575
|
end
|
3576
3576
|
|
@@ -4802,12 +4802,27 @@ module Aws::Connect
|
|
4802
4802
|
# The values of the predefined attribute.
|
4803
4803
|
# @return [Types::PredefinedAttributeValues]
|
4804
4804
|
#
|
4805
|
+
# @!attribute [rw] purposes
|
4806
|
+
# Values that enable you to categorize your predefined attributes. You
|
4807
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
4808
|
+
# website.
|
4809
|
+
# @return [Array<String>]
|
4810
|
+
#
|
4811
|
+
# @!attribute [rw] attribute_configuration
|
4812
|
+
# Custom metadata that is associated to predefined attributes to
|
4813
|
+
# control behavior in upstream services, such as controlling how a
|
4814
|
+
# predefined attribute should be displayed in the Amazon Connect admin
|
4815
|
+
# website.
|
4816
|
+
# @return [Types::InputPredefinedAttributeConfiguration]
|
4817
|
+
#
|
4805
4818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreatePredefinedAttributeRequest AWS API Documentation
|
4806
4819
|
#
|
4807
4820
|
class CreatePredefinedAttributeRequest < Struct.new(
|
4808
4821
|
:instance_id,
|
4809
4822
|
:name,
|
4810
|
-
:values
|
4823
|
+
:values,
|
4824
|
+
:purposes,
|
4825
|
+
:attribute_configuration)
|
4811
4826
|
SENSITIVE = []
|
4812
4827
|
include Aws::Structure
|
4813
4828
|
end
|
@@ -14087,6 +14102,25 @@ module Aws::Connect
|
|
14087
14102
|
include Aws::Structure
|
14088
14103
|
end
|
14089
14104
|
|
14105
|
+
# Custom metadata that is associated to predefined attributes to control
|
14106
|
+
# behavior in upstream services, such as controlling how a predefined
|
14107
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
14108
|
+
#
|
14109
|
+
# @!attribute [rw] enable_value_validation_on_association
|
14110
|
+
# When this parameter is set to true, Amazon Connect enforces strict
|
14111
|
+
# validation on the specific values, if the values are predefined in
|
14112
|
+
# attributes. The contact will store only valid and predefined values
|
14113
|
+
# for the predefined attribute key.
|
14114
|
+
# @return [Boolean]
|
14115
|
+
#
|
14116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InputPredefinedAttributeConfiguration AWS API Documentation
|
14117
|
+
#
|
14118
|
+
class InputPredefinedAttributeConfiguration < Struct.new(
|
14119
|
+
:enable_value_validation_on_association)
|
14120
|
+
SENSITIVE = []
|
14121
|
+
include Aws::Structure
|
14122
|
+
end
|
14123
|
+
|
14090
14124
|
# The Amazon Connect instance.
|
14091
14125
|
#
|
14092
14126
|
# @!attribute [rw] id
|
@@ -18412,6 +18446,19 @@ module Aws::Connect
|
|
18412
18446
|
# The values of the predefined attribute.
|
18413
18447
|
# @return [Types::PredefinedAttributeValues]
|
18414
18448
|
#
|
18449
|
+
# @!attribute [rw] purposes
|
18450
|
+
# Values that enable you to categorize your predefined attributes. You
|
18451
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
18452
|
+
# website.
|
18453
|
+
# @return [Array<String>]
|
18454
|
+
#
|
18455
|
+
# @!attribute [rw] attribute_configuration
|
18456
|
+
# Custom metadata that is associated to predefined attributes to
|
18457
|
+
# control behavior in upstream services, such as controlling how a
|
18458
|
+
# predefined attribute should be displayed in the Amazon Connect admin
|
18459
|
+
# website.
|
18460
|
+
# @return [Types::PredefinedAttributeConfiguration]
|
18461
|
+
#
|
18415
18462
|
# @!attribute [rw] last_modified_time
|
18416
18463
|
# Last modified time.
|
18417
18464
|
# @return [Time]
|
@@ -18425,12 +18472,39 @@ module Aws::Connect
|
|
18425
18472
|
class PredefinedAttribute < Struct.new(
|
18426
18473
|
:name,
|
18427
18474
|
:values,
|
18475
|
+
:purposes,
|
18476
|
+
:attribute_configuration,
|
18428
18477
|
:last_modified_time,
|
18429
18478
|
:last_modified_region)
|
18430
18479
|
SENSITIVE = []
|
18431
18480
|
include Aws::Structure
|
18432
18481
|
end
|
18433
18482
|
|
18483
|
+
# Custom metadata that is associated to predefined attributes to control
|
18484
|
+
# behavior in upstream services, such as controlling how a predefined
|
18485
|
+
# attribute should be displayed in the Amazon Connect admin website.
|
18486
|
+
#
|
18487
|
+
# @!attribute [rw] enable_value_validation_on_association
|
18488
|
+
# When this parameter is set to true, Amazon Connect enforces strict
|
18489
|
+
# validation on the specific values, if the values are predefined in
|
18490
|
+
# attributes. The contact will store only valid and predefined values
|
18491
|
+
# for teh predefined attribute key.
|
18492
|
+
# @return [Boolean]
|
18493
|
+
#
|
18494
|
+
# @!attribute [rw] is_read_only
|
18495
|
+
# A boolean flag used to indicate whether a predefined attribute
|
18496
|
+
# should be displayed in the Amazon Connect admin website.
|
18497
|
+
# @return [Boolean]
|
18498
|
+
#
|
18499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PredefinedAttributeConfiguration AWS API Documentation
|
18500
|
+
#
|
18501
|
+
class PredefinedAttributeConfiguration < Struct.new(
|
18502
|
+
:enable_value_validation_on_association,
|
18503
|
+
:is_read_only)
|
18504
|
+
SENSITIVE = []
|
18505
|
+
include Aws::Structure
|
18506
|
+
end
|
18507
|
+
|
18434
18508
|
# The search criteria to be used to return predefined attributes.
|
18435
18509
|
#
|
18436
18510
|
# @!attribute [rw] or_conditions
|
@@ -22453,12 +22527,25 @@ module Aws::Connect
|
|
22453
22527
|
# The value of a segment attribute.
|
22454
22528
|
# @return [Integer]
|
22455
22529
|
#
|
22530
|
+
# @!attribute [rw] value_list
|
22531
|
+
# The value of a segment attribute. This is only supported for
|
22532
|
+
# system-defined attributes, not for user-defined attributes.
|
22533
|
+
# @return [Array<Types::SegmentAttributeValue>]
|
22534
|
+
#
|
22535
|
+
# @!attribute [rw] value_arn
|
22536
|
+
# The value of a segment attribute that has to be a valid ARN. This is
|
22537
|
+
# only supported for system-defined attributes, not for user-defined
|
22538
|
+
# attributes.
|
22539
|
+
# @return [String]
|
22540
|
+
#
|
22456
22541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SegmentAttributeValue AWS API Documentation
|
22457
22542
|
#
|
22458
22543
|
class SegmentAttributeValue < Struct.new(
|
22459
22544
|
:value_string,
|
22460
22545
|
:value_map,
|
22461
|
-
:value_integer
|
22546
|
+
:value_integer,
|
22547
|
+
:value_list,
|
22548
|
+
:value_arn)
|
22462
22549
|
SENSITIVE = []
|
22463
22550
|
include Aws::Structure
|
22464
22551
|
end
|
@@ -25624,8 +25711,9 @@ module Aws::Connect
|
|
25624
25711
|
# This field can be used to show channel subtype, such as
|
25625
25712
|
# `connect:Guide`.
|
25626
25713
|
#
|
25627
|
-
#
|
25628
|
-
# updated by using the
|
25714
|
+
# Contact Expiry, and user-defined attributes (String - String) that
|
25715
|
+
# are defined in predefined attributes, can be updated by using the
|
25716
|
+
# UpdateContact API.
|
25629
25717
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
25630
25718
|
#
|
25631
25719
|
# @!attribute [rw] queue_info
|
@@ -26328,12 +26416,27 @@ module Aws::Connect
|
|
26328
26416
|
# The values of the predefined attribute.
|
26329
26417
|
# @return [Types::PredefinedAttributeValues]
|
26330
26418
|
#
|
26419
|
+
# @!attribute [rw] purposes
|
26420
|
+
# Values that enable you to categorize your predefined attributes. You
|
26421
|
+
# can use them in custom UI elements across the Amazon Connect admin
|
26422
|
+
# website.
|
26423
|
+
# @return [Array<String>]
|
26424
|
+
#
|
26425
|
+
# @!attribute [rw] attribute_configuration
|
26426
|
+
# Custom metadata that is associated to predefined attributes to
|
26427
|
+
# control behavior in upstream services, such as controlling how a
|
26428
|
+
# predefined attribute should be displayed in the Amazon Connect admin
|
26429
|
+
# website.
|
26430
|
+
# @return [Types::InputPredefinedAttributeConfiguration]
|
26431
|
+
#
|
26331
26432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdatePredefinedAttributeRequest AWS API Documentation
|
26332
26433
|
#
|
26333
26434
|
class UpdatePredefinedAttributeRequest < Struct.new(
|
26334
26435
|
:instance_id,
|
26335
26436
|
:name,
|
26336
|
-
:values
|
26437
|
+
:values,
|
26438
|
+
:purposes,
|
26439
|
+
:attribute_configuration)
|
26337
26440
|
SENSITIVE = []
|
26338
26441
|
include Aws::Structure
|
26339
26442
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -433,7 +433,11 @@ module Aws
|
|
433
433
|
?segment_attributes: Hash[::String, {
|
434
434
|
value_string: ::String?,
|
435
435
|
value_map: Hash[::String, untyped]?,
|
436
|
-
value_integer: ::Integer
|
436
|
+
value_integer: ::Integer?,
|
437
|
+
value_list: Array[
|
438
|
+
untyped,
|
439
|
+
]?,
|
440
|
+
value_arn: ::String?
|
437
441
|
}],
|
438
442
|
?previous_contact_id: ::String
|
439
443
|
) -> _CreateContactResponseSuccess
|
@@ -714,8 +718,12 @@ module Aws
|
|
714
718
|
def create_predefined_attribute: (
|
715
719
|
instance_id: ::String,
|
716
720
|
name: ::String,
|
717
|
-
values: {
|
721
|
+
?values: {
|
718
722
|
string_list: Array[::String]?
|
723
|
+
},
|
724
|
+
?purposes: Array[::String],
|
725
|
+
?attribute_configuration: {
|
726
|
+
enable_value_validation_on_association: bool?
|
719
727
|
}
|
720
728
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
721
729
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -3896,7 +3904,11 @@ module Aws
|
|
3896
3904
|
?segment_attributes: Hash[::String, {
|
3897
3905
|
value_string: ::String?,
|
3898
3906
|
value_map: Hash[::String, untyped]?,
|
3899
|
-
value_integer: ::Integer
|
3907
|
+
value_integer: ::Integer?,
|
3908
|
+
value_list: Array[
|
3909
|
+
untyped,
|
3910
|
+
]?,
|
3911
|
+
value_arn: ::String?
|
3900
3912
|
}],
|
3901
3913
|
?customer_id: ::String
|
3902
3914
|
) -> _StartChatContactResponseSuccess
|
@@ -4002,7 +4014,11 @@ module Aws
|
|
4002
4014
|
?segment_attributes: Hash[::String, {
|
4003
4015
|
value_string: ::String?,
|
4004
4016
|
value_map: Hash[::String, untyped]?,
|
4005
|
-
value_integer: ::Integer
|
4017
|
+
value_integer: ::Integer?,
|
4018
|
+
value_list: Array[
|
4019
|
+
untyped,
|
4020
|
+
]?,
|
4021
|
+
value_arn: ::String?
|
4006
4022
|
}],
|
4007
4023
|
?client_token: ::String
|
4008
4024
|
) -> _StartEmailContactResponseSuccess
|
@@ -4026,7 +4042,11 @@ module Aws
|
|
4026
4042
|
segment_attributes: Hash[::String, {
|
4027
4043
|
value_string: ::String?,
|
4028
4044
|
value_map: Hash[::String, untyped]?,
|
4029
|
-
value_integer: ::Integer
|
4045
|
+
value_integer: ::Integer?,
|
4046
|
+
value_list: Array[
|
4047
|
+
untyped,
|
4048
|
+
]?,
|
4049
|
+
value_arn: ::String?
|
4030
4050
|
}],
|
4031
4051
|
?attributes: Hash[::String, ::String],
|
4032
4052
|
contact_flow_id: ::String,
|
@@ -4158,7 +4178,11 @@ module Aws
|
|
4158
4178
|
?segment_attributes: Hash[::String, {
|
4159
4179
|
value_string: ::String?,
|
4160
4180
|
value_map: Hash[::String, untyped]?,
|
4161
|
-
value_integer: ::Integer
|
4181
|
+
value_integer: ::Integer?,
|
4182
|
+
value_list: Array[
|
4183
|
+
untyped,
|
4184
|
+
]?,
|
4185
|
+
value_arn: ::String?
|
4162
4186
|
}]
|
4163
4187
|
) -> _StartTaskContactResponseSuccess
|
4164
4188
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
|
@@ -4366,7 +4390,11 @@ module Aws
|
|
4366
4390
|
?segment_attributes: Hash[::String, {
|
4367
4391
|
value_string: ::String?,
|
4368
4392
|
value_map: Hash[::String, untyped]?,
|
4369
|
-
value_integer: ::Integer
|
4393
|
+
value_integer: ::Integer?,
|
4394
|
+
value_list: Array[
|
4395
|
+
untyped,
|
4396
|
+
]?,
|
4397
|
+
value_arn: ::String?
|
4370
4398
|
}],
|
4371
4399
|
?queue_info: {
|
4372
4400
|
id: ::String?
|
@@ -4803,6 +4831,10 @@ module Aws
|
|
4803
4831
|
name: ::String,
|
4804
4832
|
?values: {
|
4805
4833
|
string_list: Array[::String]?
|
4834
|
+
},
|
4835
|
+
?purposes: Array[::String],
|
4836
|
+
?attribute_configuration: {
|
4837
|
+
enable_value_validation_on_association: bool?
|
4806
4838
|
}
|
4807
4839
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4808
4840
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
data/sig/types.rbs
CHANGED
@@ -834,7 +834,7 @@ module Aws::Connect
|
|
834
834
|
attr_accessor disconnect_timestamp: ::Time
|
835
835
|
attr_accessor scheduled_timestamp: ::Time
|
836
836
|
attr_accessor segment_attributes: ::Hash[::String, Types::ContactSearchSummarySegmentAttributeValue]
|
837
|
-
SENSITIVE: []
|
837
|
+
SENSITIVE: [:segment_attributes]
|
838
838
|
end
|
839
839
|
|
840
840
|
class ContactSearchSummaryAgentInfo
|
@@ -1103,6 +1103,8 @@ module Aws::Connect
|
|
1103
1103
|
attr_accessor instance_id: ::String
|
1104
1104
|
attr_accessor name: ::String
|
1105
1105
|
attr_accessor values: Types::PredefinedAttributeValues
|
1106
|
+
attr_accessor purposes: ::Array[::String]
|
1107
|
+
attr_accessor attribute_configuration: Types::InputPredefinedAttributeConfiguration
|
1106
1108
|
SENSITIVE: []
|
1107
1109
|
end
|
1108
1110
|
|
@@ -2957,6 +2959,11 @@ module Aws::Connect
|
|
2957
2959
|
SENSITIVE: [:subject, :body]
|
2958
2960
|
end
|
2959
2961
|
|
2962
|
+
class InputPredefinedAttributeConfiguration
|
2963
|
+
attr_accessor enable_value_validation_on_association: bool
|
2964
|
+
SENSITIVE: []
|
2965
|
+
end
|
2966
|
+
|
2960
2967
|
class Instance
|
2961
2968
|
attr_accessor id: ::String
|
2962
2969
|
attr_accessor arn: ::String
|
@@ -4076,11 +4083,19 @@ module Aws::Connect
|
|
4076
4083
|
class PredefinedAttribute
|
4077
4084
|
attr_accessor name: ::String
|
4078
4085
|
attr_accessor values: Types::PredefinedAttributeValues
|
4086
|
+
attr_accessor purposes: ::Array[::String]
|
4087
|
+
attr_accessor attribute_configuration: Types::PredefinedAttributeConfiguration
|
4079
4088
|
attr_accessor last_modified_time: ::Time
|
4080
4089
|
attr_accessor last_modified_region: ::String
|
4081
4090
|
SENSITIVE: []
|
4082
4091
|
end
|
4083
4092
|
|
4093
|
+
class PredefinedAttributeConfiguration
|
4094
|
+
attr_accessor enable_value_validation_on_association: bool
|
4095
|
+
attr_accessor is_read_only: bool
|
4096
|
+
SENSITIVE: []
|
4097
|
+
end
|
4098
|
+
|
4084
4099
|
class PredefinedAttributeSearchCriteria
|
4085
4100
|
attr_accessor or_conditions: ::Array[Types::PredefinedAttributeSearchCriteria]
|
4086
4101
|
attr_accessor and_conditions: ::Array[Types::PredefinedAttributeSearchCriteria]
|
@@ -5095,6 +5110,8 @@ module Aws::Connect
|
|
5095
5110
|
attr_accessor value_string: ::String
|
5096
5111
|
attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
|
5097
5112
|
attr_accessor value_integer: ::Integer
|
5113
|
+
attr_accessor value_list: ::Array[Types::SegmentAttributeValue]
|
5114
|
+
attr_accessor value_arn: ::String
|
5098
5115
|
SENSITIVE: []
|
5099
5116
|
end
|
5100
5117
|
|
@@ -5974,6 +5991,8 @@ module Aws::Connect
|
|
5974
5991
|
attr_accessor instance_id: ::String
|
5975
5992
|
attr_accessor name: ::String
|
5976
5993
|
attr_accessor values: Types::PredefinedAttributeValues
|
5994
|
+
attr_accessor purposes: ::Array[::String]
|
5995
|
+
attr_accessor attribute_configuration: Types::InputPredefinedAttributeConfiguration
|
5977
5996
|
SENSITIVE: []
|
5978
5997
|
end
|
5979
5998
|
|