aws-sdk-connect 1.264.0 → 1.266.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.
data/sig/params.rbs CHANGED
@@ -1317,6 +1317,36 @@ module Aws
1317
1317
  }?
1318
1318
  }
1319
1319
 
1320
+ type rules_search_criteria = {
1321
+ or_conditions: Array[
1322
+ {
1323
+ or_conditions: untyped?,
1324
+ and_conditions: untyped?,
1325
+ string_condition: {
1326
+ field_name: ::String?,
1327
+ value: ::String?,
1328
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
1329
+ }?
1330
+ }
1331
+ ]?,
1332
+ and_conditions: Array[
1333
+ {
1334
+ or_conditions: untyped?,
1335
+ and_conditions: untyped?,
1336
+ string_condition: {
1337
+ field_name: ::String?,
1338
+ value: ::String?,
1339
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
1340
+ }?
1341
+ }
1342
+ ]?,
1343
+ string_condition: {
1344
+ field_name: ::String?,
1345
+ value: ::String?,
1346
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
1347
+ }?
1348
+ }
1349
+
1320
1350
  type security_profile_search_criteria = {
1321
1351
  or_conditions: Array[
1322
1352
  {
data/sig/types.rbs CHANGED
@@ -6793,6 +6793,7 @@ module Aws::Connect
6793
6793
  attr_accessor rule_id: ::String
6794
6794
  attr_accessor rule_arn: ::String
6795
6795
  attr_accessor trigger_event_source: Types::RuleTriggerEventSource
6796
+ attr_accessor rule_capability_tiers: ::Array[("GenerativeAI")]
6796
6797
  attr_accessor function: ::String
6797
6798
  attr_accessor actions: ::Array[Types::RuleAction]
6798
6799
  attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
@@ -6817,12 +6818,40 @@ module Aws::Connect
6817
6818
  SENSITIVE: []
6818
6819
  end
6819
6820
 
6821
+ class RuleAttributeAndCondition
6822
+ attr_accessor tag_conditions: ::Array[Types::TagCondition]
6823
+ SENSITIVE: []
6824
+ end
6825
+
6826
+ class RuleAttributeFilter
6827
+ attr_accessor or_conditions: ::Array[Types::RuleAttributeAndCondition]
6828
+ attr_accessor and_condition: Types::RuleAttributeAndCondition
6829
+ attr_accessor tag_condition: Types::TagCondition
6830
+ SENSITIVE: []
6831
+ end
6832
+
6833
+ class RuleSearchSummary
6834
+ attr_accessor name: ::String
6835
+ attr_accessor rule_id: ::String
6836
+ attr_accessor rule_arn: ::String
6837
+ attr_accessor trigger_event_source: Types::RuleTriggerEventSource
6838
+ attr_accessor action_summaries: ::Array[Types::ActionSummary]
6839
+ attr_accessor rule_capability_tiers: ::Array[("GenerativeAI")]
6840
+ attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
6841
+ attr_accessor created_time: ::Time
6842
+ attr_accessor last_updated_time: ::Time
6843
+ attr_accessor last_updated_by: ::String
6844
+ attr_accessor tags: ::Hash[::String, ::String]
6845
+ SENSITIVE: []
6846
+ end
6847
+
6820
6848
  class RuleSummary
6821
6849
  attr_accessor name: ::String
6822
6850
  attr_accessor rule_id: ::String
6823
6851
  attr_accessor rule_arn: ::String
6824
6852
  attr_accessor event_source_name: ("OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnEmailAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate" | "OnSlaBreach" | "OnAlertUpdate" | "OnSchedulePublish" | "OnScheduleUpdate" | "OnScheduleTimeOffRequestActivity")
6825
6853
  attr_accessor publish_status: ("DRAFT" | "PUBLISHED")
6854
+ attr_accessor rule_capability_tiers: ::Array[("GenerativeAI")]
6826
6855
  attr_accessor action_summaries: ::Array[Types::ActionSummary]
6827
6856
  attr_accessor created_time: ::Time
6828
6857
  attr_accessor last_updated_time: ::Time
@@ -6840,6 +6869,18 @@ module Aws::Connect
6840
6869
  SENSITIVE: []
6841
6870
  end
6842
6871
 
6872
+ class RulesSearchCriteria
6873
+ attr_accessor or_conditions: ::Array[Types::RulesSearchCriteria]
6874
+ attr_accessor and_conditions: ::Array[Types::RulesSearchCriteria]
6875
+ attr_accessor string_condition: Types::StringCondition
6876
+ SENSITIVE: []
6877
+ end
6878
+
6879
+ class RulesSearchFilter
6880
+ attr_accessor attribute_filter: Types::RuleAttributeFilter
6881
+ SENSITIVE: []
6882
+ end
6883
+
6843
6884
  class S3Config
6844
6885
  attr_accessor bucket_name: ::String
6845
6886
  attr_accessor bucket_prefix: ::String
@@ -7178,6 +7219,22 @@ module Aws::Connect
7178
7219
  SENSITIVE: []
7179
7220
  end
7180
7221
 
7222
+ class SearchRulesRequest
7223
+ attr_accessor instance_id: ::String
7224
+ attr_accessor max_results: ::Integer
7225
+ attr_accessor next_token: ::String
7226
+ attr_accessor search_criteria: Types::RulesSearchCriteria
7227
+ attr_accessor search_filter: Types::RulesSearchFilter
7228
+ SENSITIVE: []
7229
+ end
7230
+
7231
+ class SearchRulesResponse
7232
+ attr_accessor rules: ::Array[Types::RuleSearchSummary]
7233
+ attr_accessor approximate_total_count: ::Integer
7234
+ attr_accessor next_token: ::String
7235
+ SENSITIVE: []
7236
+ end
7237
+
7181
7238
  class SearchSecurityProfilesRequest
7182
7239
  attr_accessor instance_id: ::String
7183
7240
  attr_accessor next_token: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.264.0
4
+ version: 1.266.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services