aws-sdk-cleanrooms 1.26.0 → 1.27.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.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cleanrooms/customizations'
53
53
  # @!group service
54
54
  module Aws::CleanRooms
55
55
 
56
- GEM_VERSION = '1.26.0'
56
+ GEM_VERSION = '1.27.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -224,7 +224,8 @@ module Aws
224
224
  list: {
225
225
  join_columns: Array[::String],
226
226
  allowed_join_operators: Array[("OR" | "AND")]?,
227
- list_columns: Array[::String]
227
+ list_columns: Array[::String],
228
+ additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
228
229
  }?,
229
230
  aggregation: {
230
231
  aggregate_columns: Array[
@@ -244,11 +245,14 @@ module Aws
244
245
  minimum: ::Integer,
245
246
  type: ("COUNT_DISTINCT")
246
247
  },
247
- ]
248
+ ],
249
+ additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
248
250
  }?,
249
251
  custom: {
250
252
  allowed_analyses: Array[::String],
251
253
  allowed_analysis_providers: Array[::String]?,
254
+ additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?,
255
+ disallowed_output_columns: Array[::String]?,
252
256
  differential_privacy: {
253
257
  columns: Array[
254
258
  {
@@ -277,6 +281,34 @@ module Aws
277
281
  ) -> _CreateConfiguredTableAssociationResponseSuccess
278
282
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableAssociationResponseSuccess
279
283
 
284
+ interface _CreateConfiguredTableAssociationAnalysisRuleResponseSuccess
285
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredTableAssociationAnalysisRuleOutput]
286
+ def analysis_rule: () -> Types::ConfiguredTableAssociationAnalysisRule
287
+ end
288
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_configured_table_association_analysis_rule-instance_method
289
+ def create_configured_table_association_analysis_rule: (
290
+ membership_identifier: ::String,
291
+ configured_table_association_identifier: ::String,
292
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM"),
293
+ analysis_rule_policy: {
294
+ v1: {
295
+ list: {
296
+ allowed_result_receivers: Array[::String]?,
297
+ allowed_additional_analyses: Array[::String]?
298
+ }?,
299
+ aggregation: {
300
+ allowed_result_receivers: Array[::String]?,
301
+ allowed_additional_analyses: Array[::String]?
302
+ }?,
303
+ custom: {
304
+ allowed_result_receivers: Array[::String]?,
305
+ allowed_additional_analyses: Array[::String]?
306
+ }?
307
+ }?
308
+ }
309
+ ) -> _CreateConfiguredTableAssociationAnalysisRuleResponseSuccess
310
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableAssociationAnalysisRuleResponseSuccess
311
+
280
312
  interface _CreateIdMappingTableResponseSuccess
281
313
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateIdMappingTableOutput]
282
314
  def id_mapping_table: () -> Types::IdMappingTable
@@ -419,6 +451,17 @@ module Aws
419
451
  ) -> _DeleteConfiguredTableAssociationResponseSuccess
420
452
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableAssociationResponseSuccess
421
453
 
454
+ interface _DeleteConfiguredTableAssociationAnalysisRuleResponseSuccess
455
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfiguredTableAssociationAnalysisRuleOutput]
456
+ end
457
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_configured_table_association_analysis_rule-instance_method
458
+ def delete_configured_table_association_analysis_rule: (
459
+ membership_identifier: ::String,
460
+ configured_table_association_identifier: ::String,
461
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
462
+ ) -> _DeleteConfiguredTableAssociationAnalysisRuleResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableAssociationAnalysisRuleResponseSuccess
464
+
422
465
  interface _DeleteIdMappingTableResponseSuccess
423
466
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdMappingTableOutput]
424
467
  end
@@ -576,6 +619,18 @@ module Aws
576
619
  ) -> _GetConfiguredTableAssociationResponseSuccess
577
620
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableAssociationResponseSuccess
578
621
 
622
+ interface _GetConfiguredTableAssociationAnalysisRuleResponseSuccess
623
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredTableAssociationAnalysisRuleOutput]
624
+ def analysis_rule: () -> Types::ConfiguredTableAssociationAnalysisRule
625
+ end
626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_configured_table_association_analysis_rule-instance_method
627
+ def get_configured_table_association_analysis_rule: (
628
+ membership_identifier: ::String,
629
+ configured_table_association_identifier: ::String,
630
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
631
+ ) -> _GetConfiguredTableAssociationAnalysisRuleResponseSuccess
632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableAssociationAnalysisRuleResponseSuccess
633
+
579
634
  interface _GetIdMappingTableResponseSuccess
580
635
  include ::Seahorse::Client::_ResponseSuccess[Types::GetIdMappingTableOutput]
581
636
  def id_mapping_table: () -> Types::IdMappingTable
@@ -946,6 +1001,9 @@ module Aws
946
1001
  result_format: ("CSV" | "PARQUET"),
947
1002
  bucket: ::String,
948
1003
  key_prefix: ::String?
1004
+ }?,
1005
+ member: {
1006
+ account_id: ::String
949
1007
  }?
950
1008
  }
951
1009
  }
@@ -1034,7 +1092,8 @@ module Aws
1034
1092
  list: {
1035
1093
  join_columns: Array[::String],
1036
1094
  allowed_join_operators: Array[("OR" | "AND")]?,
1037
- list_columns: Array[::String]
1095
+ list_columns: Array[::String],
1096
+ additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
1038
1097
  }?,
1039
1098
  aggregation: {
1040
1099
  aggregate_columns: Array[
@@ -1054,11 +1113,14 @@ module Aws
1054
1113
  minimum: ::Integer,
1055
1114
  type: ("COUNT_DISTINCT")
1056
1115
  },
1057
- ]
1116
+ ],
1117
+ additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
1058
1118
  }?,
1059
1119
  custom: {
1060
1120
  allowed_analyses: Array[::String],
1061
1121
  allowed_analysis_providers: Array[::String]?,
1122
+ additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?,
1123
+ disallowed_output_columns: Array[::String]?,
1062
1124
  differential_privacy: {
1063
1125
  columns: Array[
1064
1126
  {
@@ -1085,6 +1147,34 @@ module Aws
1085
1147
  ) -> _UpdateConfiguredTableAssociationResponseSuccess
1086
1148
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableAssociationResponseSuccess
1087
1149
 
1150
+ interface _UpdateConfiguredTableAssociationAnalysisRuleResponseSuccess
1151
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredTableAssociationAnalysisRuleOutput]
1152
+ def analysis_rule: () -> Types::ConfiguredTableAssociationAnalysisRule
1153
+ end
1154
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_configured_table_association_analysis_rule-instance_method
1155
+ def update_configured_table_association_analysis_rule: (
1156
+ membership_identifier: ::String,
1157
+ configured_table_association_identifier: ::String,
1158
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM"),
1159
+ analysis_rule_policy: {
1160
+ v1: {
1161
+ list: {
1162
+ allowed_result_receivers: Array[::String]?,
1163
+ allowed_additional_analyses: Array[::String]?
1164
+ }?,
1165
+ aggregation: {
1166
+ allowed_result_receivers: Array[::String]?,
1167
+ allowed_additional_analyses: Array[::String]?
1168
+ }?,
1169
+ custom: {
1170
+ allowed_result_receivers: Array[::String]?,
1171
+ allowed_additional_analyses: Array[::String]?
1172
+ }?
1173
+ }?
1174
+ }
1175
+ ) -> _UpdateConfiguredTableAssociationAnalysisRuleResponseSuccess
1176
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableAssociationAnalysisRuleResponseSuccess
1177
+
1088
1178
  interface _UpdateIdMappingTableResponseSuccess
1089
1179
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdMappingTableOutput]
1090
1180
  def id_mapping_table: () -> Types::IdMappingTable
data/sig/types.rbs CHANGED
@@ -52,12 +52,15 @@ module Aws::CleanRooms
52
52
  attr_accessor dimension_columns: ::Array[::String]
53
53
  attr_accessor scalar_functions: ::Array[("ABS" | "CAST" | "CEILING" | "COALESCE" | "CONVERT" | "CURRENT_DATE" | "DATEADD" | "EXTRACT" | "FLOOR" | "GETDATE" | "LN" | "LOG" | "LOWER" | "ROUND" | "RTRIM" | "SQRT" | "SUBSTRING" | "TO_CHAR" | "TO_DATE" | "TO_NUMBER" | "TO_TIMESTAMP" | "TRIM" | "TRUNC" | "UPPER")]
54
54
  attr_accessor output_constraints: ::Array[Types::AggregationConstraint]
55
+ attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
55
56
  SENSITIVE: []
56
57
  end
57
58
 
58
59
  class AnalysisRuleCustom
59
60
  attr_accessor allowed_analyses: ::Array[::String]
60
61
  attr_accessor allowed_analysis_providers: ::Array[::String]
62
+ attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
63
+ attr_accessor disallowed_output_columns: ::Array[::String]
61
64
  attr_accessor differential_privacy: Types::DifferentialPrivacyConfiguration
62
65
  SENSITIVE: []
63
66
  end
@@ -73,6 +76,7 @@ module Aws::CleanRooms
73
76
  attr_accessor join_columns: ::Array[::String]
74
77
  attr_accessor allowed_join_operators: ::Array[("OR" | "AND")]
75
78
  attr_accessor list_columns: ::Array[::String]
79
+ attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
76
80
  SENSITIVE: []
77
81
  end
78
82
 
@@ -392,6 +396,17 @@ module Aws::CleanRooms
392
396
  SENSITIVE: []
393
397
  end
394
398
 
399
+ class ConfigurationDetails
400
+ attr_accessor direct_analysis_configuration_details: Types::DirectAnalysisConfigurationDetails
401
+ attr_accessor unknown: untyped
402
+ SENSITIVE: []
403
+
404
+ class DirectAnalysisConfigurationDetails < ConfigurationDetails
405
+ end
406
+ class Unknown < ConfigurationDetails
407
+ end
408
+ end
409
+
395
410
  class ConfiguredAudienceModelAssociation
396
411
  attr_accessor id: ::String
397
412
  attr_accessor arn: ::String
@@ -485,11 +500,69 @@ module Aws::CleanRooms
485
500
  attr_accessor role_arn: ::String
486
501
  attr_accessor name: ::String
487
502
  attr_accessor description: ::String
503
+ attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
504
+ attr_accessor create_time: ::Time
505
+ attr_accessor update_time: ::Time
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class ConfiguredTableAssociationAnalysisRule
510
+ attr_accessor membership_identifier: ::String
511
+ attr_accessor configured_table_association_id: ::String
512
+ attr_accessor configured_table_association_arn: ::String
513
+ attr_accessor policy: Types::ConfiguredTableAssociationAnalysisRulePolicy
514
+ attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
488
515
  attr_accessor create_time: ::Time
489
516
  attr_accessor update_time: ::Time
490
517
  SENSITIVE: []
491
518
  end
492
519
 
520
+ class ConfiguredTableAssociationAnalysisRuleAggregation
521
+ attr_accessor allowed_result_receivers: ::Array[::String]
522
+ attr_accessor allowed_additional_analyses: ::Array[::String]
523
+ SENSITIVE: []
524
+ end
525
+
526
+ class ConfiguredTableAssociationAnalysisRuleCustom
527
+ attr_accessor allowed_result_receivers: ::Array[::String]
528
+ attr_accessor allowed_additional_analyses: ::Array[::String]
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class ConfiguredTableAssociationAnalysisRuleList
533
+ attr_accessor allowed_result_receivers: ::Array[::String]
534
+ attr_accessor allowed_additional_analyses: ::Array[::String]
535
+ SENSITIVE: []
536
+ end
537
+
538
+ class ConfiguredTableAssociationAnalysisRulePolicy
539
+ attr_accessor v1: Types::ConfiguredTableAssociationAnalysisRulePolicyV1
540
+ attr_accessor unknown: untyped
541
+ SENSITIVE: []
542
+
543
+ class V1 < ConfiguredTableAssociationAnalysisRulePolicy
544
+ end
545
+ class Unknown < ConfiguredTableAssociationAnalysisRulePolicy
546
+ end
547
+ end
548
+
549
+ class ConfiguredTableAssociationAnalysisRulePolicyV1
550
+ attr_accessor list: Types::ConfiguredTableAssociationAnalysisRuleList
551
+ attr_accessor aggregation: Types::ConfiguredTableAssociationAnalysisRuleAggregation
552
+ attr_accessor custom: Types::ConfiguredTableAssociationAnalysisRuleCustom
553
+ attr_accessor unknown: untyped
554
+ SENSITIVE: []
555
+
556
+ class List < ConfiguredTableAssociationAnalysisRulePolicyV1
557
+ end
558
+ class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1
559
+ end
560
+ class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1
561
+ end
562
+ class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1
563
+ end
564
+ end
565
+
493
566
  class ConfiguredTableAssociationSummary
494
567
  attr_accessor configured_table_id: ::String
495
568
  attr_accessor membership_id: ::String
@@ -582,6 +655,19 @@ module Aws::CleanRooms
582
655
  SENSITIVE: []
583
656
  end
584
657
 
658
+ class CreateConfiguredTableAssociationAnalysisRuleInput
659
+ attr_accessor membership_identifier: ::String
660
+ attr_accessor configured_table_association_identifier: ::String
661
+ attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
662
+ attr_accessor analysis_rule_policy: Types::ConfiguredTableAssociationAnalysisRulePolicy
663
+ SENSITIVE: []
664
+ end
665
+
666
+ class CreateConfiguredTableAssociationAnalysisRuleOutput
667
+ attr_accessor analysis_rule: Types::ConfiguredTableAssociationAnalysisRule
668
+ SENSITIVE: []
669
+ end
670
+
585
671
  class CreateConfiguredTableAssociationInput
586
672
  attr_accessor name: ::String
587
673
  attr_accessor description: ::String
@@ -713,6 +799,16 @@ module Aws::CleanRooms
713
799
  class DeleteConfiguredTableAnalysisRuleOutput < Aws::EmptyStructure
714
800
  end
715
801
 
802
+ class DeleteConfiguredTableAssociationAnalysisRuleInput
803
+ attr_accessor membership_identifier: ::String
804
+ attr_accessor configured_table_association_identifier: ::String
805
+ attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
806
+ SENSITIVE: []
807
+ end
808
+
809
+ class DeleteConfiguredTableAssociationAnalysisRuleOutput < Aws::EmptyStructure
810
+ end
811
+
716
812
  class DeleteConfiguredTableAssociationInput
717
813
  attr_accessor configured_table_association_identifier: ::String
718
814
  attr_accessor membership_identifier: ::String
@@ -846,6 +942,11 @@ module Aws::CleanRooms
846
942
  SENSITIVE: []
847
943
  end
848
944
 
945
+ class DirectAnalysisConfigurationDetails
946
+ attr_accessor receiver_account_ids: ::Array[::String]
947
+ SENSITIVE: []
948
+ end
949
+
849
950
  class GetAnalysisTemplateInput
850
951
  attr_accessor membership_identifier: ::String
851
952
  attr_accessor analysis_template_identifier: ::String
@@ -933,6 +1034,18 @@ module Aws::CleanRooms
933
1034
  SENSITIVE: []
934
1035
  end
935
1036
 
1037
+ class GetConfiguredTableAssociationAnalysisRuleInput
1038
+ attr_accessor membership_identifier: ::String
1039
+ attr_accessor configured_table_association_identifier: ::String
1040
+ attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
1041
+ SENSITIVE: []
1042
+ end
1043
+
1044
+ class GetConfiguredTableAssociationAnalysisRuleOutput
1045
+ attr_accessor analysis_rule: Types::ConfiguredTableAssociationAnalysisRule
1046
+ SENSITIVE: []
1047
+ end
1048
+
936
1049
  class GetConfiguredTableAssociationInput
937
1050
  attr_accessor configured_table_association_identifier: ::String
938
1051
  attr_accessor membership_identifier: ::String
@@ -1637,6 +1750,11 @@ module Aws::CleanRooms
1637
1750
  SENSITIVE: []
1638
1751
  end
1639
1752
 
1753
+ class ProtectedQueryMemberOutputConfiguration
1754
+ attr_accessor account_id: ::String
1755
+ SENSITIVE: []
1756
+ end
1757
+
1640
1758
  class ProtectedQueryOutput
1641
1759
  attr_accessor s3: Types::ProtectedQueryS3Output
1642
1760
  attr_accessor member_list: ::Array[Types::ProtectedQuerySingleMemberOutput]
@@ -1653,11 +1771,14 @@ module Aws::CleanRooms
1653
1771
 
1654
1772
  class ProtectedQueryOutputConfiguration
1655
1773
  attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
1774
+ attr_accessor member: Types::ProtectedQueryMemberOutputConfiguration
1656
1775
  attr_accessor unknown: untyped
1657
1776
  SENSITIVE: []
1658
1777
 
1659
1778
  class S3 < ProtectedQueryOutputConfiguration
1660
1779
  end
1780
+ class Member < ProtectedQueryOutputConfiguration
1781
+ end
1661
1782
  class Unknown < ProtectedQueryOutputConfiguration
1662
1783
  end
1663
1784
  end
@@ -1707,6 +1828,7 @@ module Aws::CleanRooms
1707
1828
  attr_accessor membership_arn: ::String
1708
1829
  attr_accessor create_time: ::Time
1709
1830
  attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
1831
+ attr_accessor receiver_configurations: ::Array[Types::ReceiverConfiguration]
1710
1832
  SENSITIVE: []
1711
1833
  end
1712
1834
 
@@ -1731,6 +1853,12 @@ module Aws::CleanRooms
1731
1853
  SENSITIVE: []
1732
1854
  end
1733
1855
 
1856
+ class ReceiverConfiguration
1857
+ attr_accessor analysis_type: ("DIRECT_ANALYSIS" | "ADDITIONAL_ANALYSIS")
1858
+ attr_accessor configuration_details: Types::ConfigurationDetails
1859
+ SENSITIVE: []
1860
+ end
1861
+
1734
1862
  class ResourceNotFoundException
1735
1863
  attr_accessor message: ::String
1736
1864
  attr_accessor resource_id: ::String
@@ -1766,12 +1894,13 @@ module Aws::CleanRooms
1766
1894
  attr_accessor status: ("READY" | "NOT_READY")
1767
1895
  attr_accessor reasons: ::Array[Types::SchemaStatusReason]
1768
1896
  attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
1769
- attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY" | "CUSTOM_ANALYSIS_NOT_ALLOWED" | "NO_MEMBER_ACCOUNT_ALLOWED_TO_PROVIDE_ANALYSIS" | "DIFFERENTIAL_PRIVACY_BUDGET_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED")]
1897
+ attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY")]
1898
+ attr_accessor analysis_type: ("DIRECT_ANALYSIS" | "ADDITIONAL_ANALYSIS")
1770
1899
  SENSITIVE: []
1771
1900
  end
1772
1901
 
1773
1902
  class SchemaStatusReason
1774
- attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED")
1903
+ attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED" | "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED" | "ADDITIONAL_ANALYSES_NOT_CONFIGURED" | "RESULT_RECEIVERS_NOT_CONFIGURED" | "ADDITIONAL_ANALYSES_NOT_ALLOWED" | "RESULT_RECEIVERS_NOT_ALLOWED" | "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE")
1775
1904
  attr_accessor message: ::String
1776
1905
  SENSITIVE: []
1777
1906
  end
@@ -1903,6 +2032,19 @@ module Aws::CleanRooms
1903
2032
  SENSITIVE: []
1904
2033
  end
1905
2034
 
2035
+ class UpdateConfiguredTableAssociationAnalysisRuleInput
2036
+ attr_accessor membership_identifier: ::String
2037
+ attr_accessor configured_table_association_identifier: ::String
2038
+ attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
2039
+ attr_accessor analysis_rule_policy: Types::ConfiguredTableAssociationAnalysisRulePolicy
2040
+ SENSITIVE: []
2041
+ end
2042
+
2043
+ class UpdateConfiguredTableAssociationAnalysisRuleOutput
2044
+ attr_accessor analysis_rule: Types::ConfiguredTableAssociationAnalysisRule
2045
+ SENSITIVE: []
2046
+ end
2047
+
1906
2048
  class UpdateConfiguredTableAssociationInput
1907
2049
  attr_accessor configured_table_association_identifier: ::String
1908
2050
  attr_accessor membership_identifier: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.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: 2024-07-23 00:00:00.000000000 Z
11
+ date: 2024-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core