aws-sdk-connect 1.214.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +227 -47
- data/lib/aws-sdk-connect/client_api.rb +37 -1
- data/lib/aws-sdk-connect/types.rb +164 -19
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +45 -11
- data/sig/types.rbs +30 -3
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -102,6 +102,12 @@ module Aws::Connect
|
|
102
102
|
SENSITIVE: []
|
103
103
|
end
|
104
104
|
|
105
|
+
class AgentStatusIdentifier
|
106
|
+
attr_accessor arn: ::String
|
107
|
+
attr_accessor id: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
105
111
|
class AgentStatusReference
|
106
112
|
attr_accessor status_start_timestamp: ::Time
|
107
113
|
attr_accessor status_arn: ::String
|
@@ -828,7 +834,7 @@ module Aws::Connect
|
|
828
834
|
attr_accessor disconnect_timestamp: ::Time
|
829
835
|
attr_accessor scheduled_timestamp: ::Time
|
830
836
|
attr_accessor segment_attributes: ::Hash[::String, Types::ContactSearchSummarySegmentAttributeValue]
|
831
|
-
SENSITIVE: []
|
837
|
+
SENSITIVE: [:segment_attributes]
|
832
838
|
end
|
833
839
|
|
834
840
|
class ContactSearchSummaryAgentInfo
|
@@ -1097,6 +1103,8 @@ module Aws::Connect
|
|
1097
1103
|
attr_accessor instance_id: ::String
|
1098
1104
|
attr_accessor name: ::String
|
1099
1105
|
attr_accessor values: Types::PredefinedAttributeValues
|
1106
|
+
attr_accessor purposes: ::Array[::String]
|
1107
|
+
attr_accessor attribute_configuration: Types::InputPredefinedAttributeConfiguration
|
1100
1108
|
SENSITIVE: []
|
1101
1109
|
end
|
1102
1110
|
|
@@ -1978,6 +1986,7 @@ module Aws::Connect
|
|
1978
1986
|
attr_accessor channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
|
1979
1987
|
attr_accessor routing_profile: Types::RoutingProfileReference
|
1980
1988
|
attr_accessor routing_step_expression: ::String
|
1989
|
+
attr_accessor agent_status: Types::AgentStatusIdentifier
|
1981
1990
|
SENSITIVE: []
|
1982
1991
|
end
|
1983
1992
|
|
@@ -2501,6 +2510,7 @@ module Aws::Connect
|
|
2501
2510
|
attr_accessor channels: ::Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]
|
2502
2511
|
attr_accessor routing_profiles: ::Array[::String]
|
2503
2512
|
attr_accessor routing_step_expressions: ::Array[::String]
|
2513
|
+
attr_accessor agent_statuses: ::Array[::String]
|
2504
2514
|
SENSITIVE: []
|
2505
2515
|
end
|
2506
2516
|
|
@@ -2562,7 +2572,7 @@ module Aws::Connect
|
|
2562
2572
|
class GetCurrentMetricDataRequest
|
2563
2573
|
attr_accessor instance_id: ::String
|
2564
2574
|
attr_accessor filters: Types::Filters
|
2565
|
-
attr_accessor groupings: ::Array[("QUEUE" | "CHANNEL" | "ROUTING_PROFILE" | "ROUTING_STEP_EXPRESSION")]
|
2575
|
+
attr_accessor groupings: ::Array[("QUEUE" | "CHANNEL" | "ROUTING_PROFILE" | "ROUTING_STEP_EXPRESSION" | "AGENT_STATUS")]
|
2566
2576
|
attr_accessor current_metrics: ::Array[Types::CurrentMetric]
|
2567
2577
|
attr_accessor next_token: ::String
|
2568
2578
|
attr_accessor max_results: ::Integer
|
@@ -2639,7 +2649,7 @@ module Aws::Connect
|
|
2639
2649
|
attr_accessor start_time: ::Time
|
2640
2650
|
attr_accessor end_time: ::Time
|
2641
2651
|
attr_accessor filters: Types::Filters
|
2642
|
-
attr_accessor groupings: ::Array[("QUEUE" | "CHANNEL" | "ROUTING_PROFILE" | "ROUTING_STEP_EXPRESSION")]
|
2652
|
+
attr_accessor groupings: ::Array[("QUEUE" | "CHANNEL" | "ROUTING_PROFILE" | "ROUTING_STEP_EXPRESSION" | "AGENT_STATUS")]
|
2643
2653
|
attr_accessor historical_metrics: ::Array[Types::HistoricalMetric]
|
2644
2654
|
attr_accessor next_token: ::String
|
2645
2655
|
attr_accessor max_results: ::Integer
|
@@ -2949,6 +2959,11 @@ module Aws::Connect
|
|
2949
2959
|
SENSITIVE: [:subject, :body]
|
2950
2960
|
end
|
2951
2961
|
|
2962
|
+
class InputPredefinedAttributeConfiguration
|
2963
|
+
attr_accessor enable_value_validation_on_association: bool
|
2964
|
+
SENSITIVE: []
|
2965
|
+
end
|
2966
|
+
|
2952
2967
|
class Instance
|
2953
2968
|
attr_accessor id: ::String
|
2954
2969
|
attr_accessor arn: ::String
|
@@ -4068,11 +4083,19 @@ module Aws::Connect
|
|
4068
4083
|
class PredefinedAttribute
|
4069
4084
|
attr_accessor name: ::String
|
4070
4085
|
attr_accessor values: Types::PredefinedAttributeValues
|
4086
|
+
attr_accessor purposes: ::Array[::String]
|
4087
|
+
attr_accessor attribute_configuration: Types::PredefinedAttributeConfiguration
|
4071
4088
|
attr_accessor last_modified_time: ::Time
|
4072
4089
|
attr_accessor last_modified_region: ::String
|
4073
4090
|
SENSITIVE: []
|
4074
4091
|
end
|
4075
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
|
+
|
4076
4099
|
class PredefinedAttributeSearchCriteria
|
4077
4100
|
attr_accessor or_conditions: ::Array[Types::PredefinedAttributeSearchCriteria]
|
4078
4101
|
attr_accessor and_conditions: ::Array[Types::PredefinedAttributeSearchCriteria]
|
@@ -5087,6 +5110,8 @@ module Aws::Connect
|
|
5087
5110
|
attr_accessor value_string: ::String
|
5088
5111
|
attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
|
5089
5112
|
attr_accessor value_integer: ::Integer
|
5113
|
+
attr_accessor value_list: ::Array[Types::SegmentAttributeValue]
|
5114
|
+
attr_accessor value_arn: ::String
|
5090
5115
|
SENSITIVE: []
|
5091
5116
|
end
|
5092
5117
|
|
@@ -5966,6 +5991,8 @@ module Aws::Connect
|
|
5966
5991
|
attr_accessor instance_id: ::String
|
5967
5992
|
attr_accessor name: ::String
|
5968
5993
|
attr_accessor values: Types::PredefinedAttributeValues
|
5994
|
+
attr_accessor purposes: ::Array[::String]
|
5995
|
+
attr_accessor attribute_configuration: Types::InputPredefinedAttributeConfiguration
|
5969
5996
|
SENSITIVE: []
|
5970
5997
|
end
|
5971
5998
|
|