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.
@@ -188,6 +188,15 @@ module Aws::CleanRooms
188
188
  # returned.
189
189
  # @return [Array<Types::AggregationConstraint>]
190
190
  #
191
+ # @!attribute [rw] additional_analyses
192
+ # An indicator as to whether additional analyses (such as Clean Rooms
193
+ # ML) can be applied to the output of the direct query.
194
+ #
195
+ # The `additionalAnalyses` parameter is currently supported for the
196
+ # list analysis rule (`AnalysisRuleList`) and the custom analysis rule
197
+ # (`AnalysisRuleCustom`).
198
+ # @return [String]
199
+ #
191
200
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRuleAggregation AWS API Documentation
192
201
  #
193
202
  class AnalysisRuleAggregation < Struct.new(
@@ -197,7 +206,8 @@ module Aws::CleanRooms
197
206
  :allowed_join_operators,
198
207
  :dimension_columns,
199
208
  :scalar_functions,
200
- :output_constraints)
209
+ :output_constraints,
210
+ :additional_analyses)
201
211
  SENSITIVE = []
202
212
  include Aws::Structure
203
213
  end
@@ -217,6 +227,16 @@ module Aws::CleanRooms
217
227
  # is `ANY_QUERY`.
218
228
  # @return [Array<String>]
219
229
  #
230
+ # @!attribute [rw] additional_analyses
231
+ # An indicator as to whether additional analyses (such as Clean Rooms
232
+ # ML) can be applied to the output of the direct query.
233
+ # @return [String]
234
+ #
235
+ # @!attribute [rw] disallowed_output_columns
236
+ # A list of columns that aren't allowed to be shown in the query
237
+ # output.
238
+ # @return [Array<String>]
239
+ #
220
240
  # @!attribute [rw] differential_privacy
221
241
  # The differential privacy configuration.
222
242
  # @return [Types::DifferentialPrivacyConfiguration]
@@ -226,6 +246,8 @@ module Aws::CleanRooms
226
246
  class AnalysisRuleCustom < Struct.new(
227
247
  :allowed_analyses,
228
248
  :allowed_analysis_providers,
249
+ :additional_analyses,
250
+ :disallowed_output_columns,
229
251
  :differential_privacy)
230
252
  SENSITIVE = []
231
253
  include Aws::Structure
@@ -273,12 +295,18 @@ module Aws::CleanRooms
273
295
  # Columns that can be listed in the output.
274
296
  # @return [Array<String>]
275
297
  #
298
+ # @!attribute [rw] additional_analyses
299
+ # An indicator as to whether additional analyses (such as Clean Rooms
300
+ # ML) can be applied to the output of the direct query.
301
+ # @return [String]
302
+ #
276
303
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRuleList AWS API Documentation
277
304
  #
278
305
  class AnalysisRuleList < Struct.new(
279
306
  :join_columns,
280
307
  :allowed_join_operators,
281
- :list_columns)
308
+ :list_columns,
309
+ :additional_analyses)
282
310
  SENSITIVE = []
283
311
  include Aws::Structure
284
312
  end
@@ -1032,7 +1060,7 @@ module Aws::CleanRooms
1032
1060
  #
1033
1061
  # @!attribute [rw] creator_account_id
1034
1062
  # The identifier used to reference members of the collaboration. Only
1035
- # supports Amazon Web Services account ID.
1063
+ # supports AWS account ID.
1036
1064
  # @return [String]
1037
1065
  #
1038
1066
  # @!attribute [rw] create_time
@@ -1100,7 +1128,7 @@ module Aws::CleanRooms
1100
1128
  #
1101
1129
  # @!attribute [rw] creator_account_id
1102
1130
  # The identifier used to reference members of the collaboration. Only
1103
- # supports Amazon Web Services account ID.
1131
+ # supports AWS account ID.
1104
1132
  # @return [String]
1105
1133
  #
1106
1134
  # @!attribute [rw] description
@@ -1547,6 +1575,27 @@ module Aws::CleanRooms
1547
1575
  include Aws::Structure
1548
1576
  end
1549
1577
 
1578
+ # The configuration details.
1579
+ #
1580
+ # @note ConfigurationDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigurationDetails corresponding to the set member.
1581
+ #
1582
+ # @!attribute [rw] direct_analysis_configuration_details
1583
+ # The direct analysis configuration details.
1584
+ # @return [Types::DirectAnalysisConfigurationDetails]
1585
+ #
1586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfigurationDetails AWS API Documentation
1587
+ #
1588
+ class ConfigurationDetails < Struct.new(
1589
+ :direct_analysis_configuration_details,
1590
+ :unknown)
1591
+ SENSITIVE = []
1592
+ include Aws::Structure
1593
+ include Aws::Structure::Union
1594
+
1595
+ class DirectAnalysisConfigurationDetails < ConfigurationDetails; end
1596
+ class Unknown < ConfigurationDetails; end
1597
+ end
1598
+
1550
1599
  # Details about the configured audience model association.
1551
1600
  #
1552
1601
  # @!attribute [rw] id
@@ -1914,6 +1963,10 @@ module Aws::CleanRooms
1914
1963
  # A description of the configured table association.
1915
1964
  # @return [String]
1916
1965
  #
1966
+ # @!attribute [rw] analysis_rule_types
1967
+ # The analysis rule types for the configured table association.
1968
+ # @return [Array<String>]
1969
+ #
1917
1970
  # @!attribute [rw] create_time
1918
1971
  # The time the configured table association was created.
1919
1972
  # @return [Time]
@@ -1934,12 +1987,196 @@ module Aws::CleanRooms
1934
1987
  :role_arn,
1935
1988
  :name,
1936
1989
  :description,
1990
+ :analysis_rule_types,
1937
1991
  :create_time,
1938
1992
  :update_time)
1939
1993
  SENSITIVE = []
1940
1994
  include Aws::Structure
1941
1995
  end
1942
1996
 
1997
+ # An analysis rule for a configured table association. This analysis
1998
+ # rule specifies how data from the table can be used within its
1999
+ # associated collaboration. In the console, the
2000
+ # `ConfiguredTableAssociationAnalysisRule` is referred to as the
2001
+ # *collaboration analysis rule*.
2002
+ #
2003
+ # @!attribute [rw] membership_identifier
2004
+ # The membership identifier for the configured table association
2005
+ # analysis rule.
2006
+ # @return [String]
2007
+ #
2008
+ # @!attribute [rw] configured_table_association_id
2009
+ # The unique identifier for the configured table association.
2010
+ # @return [String]
2011
+ #
2012
+ # @!attribute [rw] configured_table_association_arn
2013
+ # The Amazon Resource Name (ARN) of the configured table association.
2014
+ # @return [String]
2015
+ #
2016
+ # @!attribute [rw] policy
2017
+ # The policy of the configured table association analysis rule.
2018
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicy]
2019
+ #
2020
+ # @!attribute [rw] type
2021
+ # The type of the configured table association analysis rule.
2022
+ # @return [String]
2023
+ #
2024
+ # @!attribute [rw] create_time
2025
+ # The creation time of the configured table association analysis rule.
2026
+ # @return [Time]
2027
+ #
2028
+ # @!attribute [rw] update_time
2029
+ # The update time of the configured table association analysis rule.
2030
+ # @return [Time]
2031
+ #
2032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRule AWS API Documentation
2033
+ #
2034
+ class ConfiguredTableAssociationAnalysisRule < Struct.new(
2035
+ :membership_identifier,
2036
+ :configured_table_association_id,
2037
+ :configured_table_association_arn,
2038
+ :policy,
2039
+ :type,
2040
+ :create_time,
2041
+ :update_time)
2042
+ SENSITIVE = []
2043
+ include Aws::Structure
2044
+ end
2045
+
2046
+ # The configured table association analysis rule applied to a configured
2047
+ # table with the aggregation analysis rule.
2048
+ #
2049
+ # @!attribute [rw] allowed_result_receivers
2050
+ # The list of collaboration members who are allowed to receive results
2051
+ # of queries run with this configured table.
2052
+ # @return [Array<String>]
2053
+ #
2054
+ # @!attribute [rw] allowed_additional_analyses
2055
+ # The list of resources or wildcards (ARNs) that are allowed to
2056
+ # perform additional analysis on query output.
2057
+ #
2058
+ # The `allowedAdditionalAnalyses` parameter is currently supported for
2059
+ # the list analysis rule (`AnalysisRuleList`) and the custom analysis
2060
+ # rule (`AnalysisRuleCustom`).
2061
+ # @return [Array<String>]
2062
+ #
2063
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRuleAggregation AWS API Documentation
2064
+ #
2065
+ class ConfiguredTableAssociationAnalysisRuleAggregation < Struct.new(
2066
+ :allowed_result_receivers,
2067
+ :allowed_additional_analyses)
2068
+ SENSITIVE = []
2069
+ include Aws::Structure
2070
+ end
2071
+
2072
+ # The configured table association analysis rule applied to a configured
2073
+ # table with the custom analysis rule.
2074
+ #
2075
+ # @!attribute [rw] allowed_result_receivers
2076
+ # The list of collaboration members who are allowed to receive results
2077
+ # of queries run with this configured table.
2078
+ # @return [Array<String>]
2079
+ #
2080
+ # @!attribute [rw] allowed_additional_analyses
2081
+ # The list of resources or wildcards (ARNs) that are allowed to
2082
+ # perform additional analysis on query output.
2083
+ # @return [Array<String>]
2084
+ #
2085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRuleCustom AWS API Documentation
2086
+ #
2087
+ class ConfiguredTableAssociationAnalysisRuleCustom < Struct.new(
2088
+ :allowed_result_receivers,
2089
+ :allowed_additional_analyses)
2090
+ SENSITIVE = []
2091
+ include Aws::Structure
2092
+ end
2093
+
2094
+ # The configured table association analysis rule applied to a configured
2095
+ # table with the list analysis rule.
2096
+ #
2097
+ # @!attribute [rw] allowed_result_receivers
2098
+ # The list of collaboration members who are allowed to receive results
2099
+ # of queries run with this configured table.
2100
+ # @return [Array<String>]
2101
+ #
2102
+ # @!attribute [rw] allowed_additional_analyses
2103
+ # The list of resources or wildcards (ARNs) that are allowed to
2104
+ # perform additional analysis on query output.
2105
+ # @return [Array<String>]
2106
+ #
2107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRuleList AWS API Documentation
2108
+ #
2109
+ class ConfiguredTableAssociationAnalysisRuleList < Struct.new(
2110
+ :allowed_result_receivers,
2111
+ :allowed_additional_analyses)
2112
+ SENSITIVE = []
2113
+ include Aws::Structure
2114
+ end
2115
+
2116
+ # Controls on the query specifications that can be run on an associated
2117
+ # configured table.
2118
+ #
2119
+ # @note ConfiguredTableAssociationAnalysisRulePolicy is a union - when making an API calls you must set exactly one of the members.
2120
+ #
2121
+ # @note ConfiguredTableAssociationAnalysisRulePolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAssociationAnalysisRulePolicy corresponding to the set member.
2122
+ #
2123
+ # @!attribute [rw] v1
2124
+ # The policy for the configured table association analysis rule.
2125
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicyV1]
2126
+ #
2127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRulePolicy AWS API Documentation
2128
+ #
2129
+ class ConfiguredTableAssociationAnalysisRulePolicy < Struct.new(
2130
+ :v1,
2131
+ :unknown)
2132
+ SENSITIVE = []
2133
+ include Aws::Structure
2134
+ include Aws::Structure::Union
2135
+
2136
+ class V1 < ConfiguredTableAssociationAnalysisRulePolicy; end
2137
+ class Unknown < ConfiguredTableAssociationAnalysisRulePolicy; end
2138
+ end
2139
+
2140
+ # Controls on the query specifications that can be run on an associated
2141
+ # configured table.
2142
+ #
2143
+ # @note ConfiguredTableAssociationAnalysisRulePolicyV1 is a union - when making an API calls you must set exactly one of the members.
2144
+ #
2145
+ # @note ConfiguredTableAssociationAnalysisRulePolicyV1 is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAssociationAnalysisRulePolicyV1 corresponding to the set member.
2146
+ #
2147
+ # @!attribute [rw] list
2148
+ # Analysis rule type that enables only list queries on a configured
2149
+ # table.
2150
+ # @return [Types::ConfiguredTableAssociationAnalysisRuleList]
2151
+ #
2152
+ # @!attribute [rw] aggregation
2153
+ # Analysis rule type that enables only aggregation queries on a
2154
+ # configured table.
2155
+ # @return [Types::ConfiguredTableAssociationAnalysisRuleAggregation]
2156
+ #
2157
+ # @!attribute [rw] custom
2158
+ # Analysis rule type that enables the table owner to approve custom
2159
+ # SQL queries on their configured tables. It supports differential
2160
+ # privacy.
2161
+ # @return [Types::ConfiguredTableAssociationAnalysisRuleCustom]
2162
+ #
2163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRulePolicyV1 AWS API Documentation
2164
+ #
2165
+ class ConfiguredTableAssociationAnalysisRulePolicyV1 < Struct.new(
2166
+ :list,
2167
+ :aggregation,
2168
+ :custom,
2169
+ :unknown)
2170
+ SENSITIVE = []
2171
+ include Aws::Structure
2172
+ include Aws::Structure::Union
2173
+
2174
+ class List < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2175
+ class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2176
+ class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2177
+ class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2178
+ end
2179
+
1943
2180
  # The configured table association summary for the objects listed by the
1944
2181
  # request.
1945
2182
  #
@@ -2191,7 +2428,7 @@ module Aws::CleanRooms
2191
2428
  end
2192
2429
 
2193
2430
  # @!attribute [rw] collaboration
2194
- # The entire created collaboration object.
2431
+ # The collaboration.
2195
2432
  # @return [Types::Collaboration]
2196
2433
  #
2197
2434
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationOutput AWS API Documentation
@@ -2278,7 +2515,7 @@ module Aws::CleanRooms
2278
2515
  # @return [String]
2279
2516
  #
2280
2517
  # @!attribute [rw] analysis_rule_policy
2281
- # The entire created configured table analysis rule object.
2518
+ # The analysis rule policy that was created for the configured table.
2282
2519
  # @return [Types::ConfiguredTableAnalysisRulePolicy]
2283
2520
  #
2284
2521
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAnalysisRuleInput AWS API Documentation
@@ -2292,7 +2529,7 @@ module Aws::CleanRooms
2292
2529
  end
2293
2530
 
2294
2531
  # @!attribute [rw] analysis_rule
2295
- # The entire created analysis rule.
2532
+ # The analysis rule that was created for the configured table.
2296
2533
  # @return [Types::ConfiguredTableAnalysisRule]
2297
2534
  #
2298
2535
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAnalysisRuleOutput AWS API Documentation
@@ -2303,6 +2540,50 @@ module Aws::CleanRooms
2303
2540
  include Aws::Structure
2304
2541
  end
2305
2542
 
2543
+ # @!attribute [rw] membership_identifier
2544
+ # A unique identifier for the membership that the configured table
2545
+ # association belongs to. Currently accepts the membership ID.
2546
+ # @return [String]
2547
+ #
2548
+ # @!attribute [rw] configured_table_association_identifier
2549
+ # The unique ID for the configured table association. Currently
2550
+ # accepts the configured table association ID.
2551
+ # @return [String]
2552
+ #
2553
+ # @!attribute [rw] analysis_rule_type
2554
+ # The type of analysis rule.
2555
+ # @return [String]
2556
+ #
2557
+ # @!attribute [rw] analysis_rule_policy
2558
+ # The analysis rule policy that was created for the configured table
2559
+ # association.
2560
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicy]
2561
+ #
2562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
2563
+ #
2564
+ class CreateConfiguredTableAssociationAnalysisRuleInput < Struct.new(
2565
+ :membership_identifier,
2566
+ :configured_table_association_identifier,
2567
+ :analysis_rule_type,
2568
+ :analysis_rule_policy)
2569
+ SENSITIVE = []
2570
+ include Aws::Structure
2571
+ end
2572
+
2573
+ # @!attribute [rw] analysis_rule
2574
+ # The analysis rule for the configured table association. In the
2575
+ # console, the `ConfiguredTableAssociationAnalysisRule` is referred to
2576
+ # as the *collaboration analysis rule*.
2577
+ # @return [Types::ConfiguredTableAssociationAnalysisRule]
2578
+ #
2579
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
2580
+ #
2581
+ class CreateConfiguredTableAssociationAnalysisRuleOutput < Struct.new(
2582
+ :analysis_rule)
2583
+ SENSITIVE = []
2584
+ include Aws::Structure
2585
+ end
2586
+
2306
2587
  # @!attribute [rw] name
2307
2588
  # The name of the configured table association. This name is used to
2308
2589
  # query the underlying configured table.
@@ -2349,7 +2630,7 @@ module Aws::CleanRooms
2349
2630
  end
2350
2631
 
2351
2632
  # @!attribute [rw] configured_table_association
2352
- # The entire configured table association object.
2633
+ # The configured table association.
2353
2634
  # @return [Types::ConfiguredTableAssociation]
2354
2635
  #
2355
2636
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationOutput AWS API Documentation
@@ -2757,6 +3038,34 @@ module Aws::CleanRooms
2757
3038
  #
2758
3039
  class DeleteConfiguredTableAnalysisRuleOutput < Aws::EmptyStructure; end
2759
3040
 
3041
+ # @!attribute [rw] membership_identifier
3042
+ # A unique identifier for the membership that the configured table
3043
+ # association belongs to. Currently accepts the membership ID.
3044
+ # @return [String]
3045
+ #
3046
+ # @!attribute [rw] configured_table_association_identifier
3047
+ # The identifier for the configured table association that's related to
3048
+ # the analysis rule that you want to delete.
3049
+ # @return [String]
3050
+ #
3051
+ # @!attribute [rw] analysis_rule_type
3052
+ # The type of the analysis rule that you want to delete.
3053
+ # @return [String]
3054
+ #
3055
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
3056
+ #
3057
+ class DeleteConfiguredTableAssociationAnalysisRuleInput < Struct.new(
3058
+ :membership_identifier,
3059
+ :configured_table_association_identifier,
3060
+ :analysis_rule_type)
3061
+ SENSITIVE = []
3062
+ include Aws::Structure
3063
+ end
3064
+
3065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
3066
+ #
3067
+ class DeleteConfiguredTableAssociationAnalysisRuleOutput < Aws::EmptyStructure; end
3068
+
2760
3069
  # @!attribute [rw] configured_table_association_identifier
2761
3070
  # The unique ID for the configured table association to be deleted.
2762
3071
  # Currently accepts the configured table ID.
@@ -3162,6 +3471,21 @@ module Aws::CleanRooms
3162
3471
  include Aws::Structure
3163
3472
  end
3164
3473
 
3474
+ # The direct analysis configuration details.
3475
+ #
3476
+ # @!attribute [rw] receiver_account_ids
3477
+ # The account IDs for the member who received the results of a
3478
+ # protected query.
3479
+ # @return [Array<String>]
3480
+ #
3481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DirectAnalysisConfigurationDetails AWS API Documentation
3482
+ #
3483
+ class DirectAnalysisConfigurationDetails < Struct.new(
3484
+ :receiver_account_ids)
3485
+ SENSITIVE = []
3486
+ include Aws::Structure
3487
+ end
3488
+
3165
3489
  # @!attribute [rw] membership_identifier
3166
3490
  # The identifier for a membership resource.
3167
3491
  # @return [String]
@@ -3402,6 +3726,44 @@ module Aws::CleanRooms
3402
3726
  include Aws::Structure
3403
3727
  end
3404
3728
 
3729
+ # @!attribute [rw] membership_identifier
3730
+ # A unique identifier for the membership that the configured table
3731
+ # association belongs to. Currently accepts the membership ID.
3732
+ # @return [String]
3733
+ #
3734
+ # @!attribute [rw] configured_table_association_identifier
3735
+ # The identifier for the configured table association that's related to
3736
+ # the analysis rule.
3737
+ # @return [String]
3738
+ #
3739
+ # @!attribute [rw] analysis_rule_type
3740
+ # The type of analysis rule that you want to retrieve.
3741
+ # @return [String]
3742
+ #
3743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
3744
+ #
3745
+ class GetConfiguredTableAssociationAnalysisRuleInput < Struct.new(
3746
+ :membership_identifier,
3747
+ :configured_table_association_identifier,
3748
+ :analysis_rule_type)
3749
+ SENSITIVE = []
3750
+ include Aws::Structure
3751
+ end
3752
+
3753
+ # @!attribute [rw] analysis_rule
3754
+ # The analysis rule for the configured table association. In the
3755
+ # console, the `ConfiguredTableAssociationAnalysisRule` is referred to
3756
+ # as the *collaboration analysis rule*.
3757
+ # @return [Types::ConfiguredTableAssociationAnalysisRule]
3758
+ #
3759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
3760
+ #
3761
+ class GetConfiguredTableAssociationAnalysisRuleOutput < Struct.new(
3762
+ :analysis_rule)
3763
+ SENSITIVE = []
3764
+ include Aws::Structure
3765
+ end
3766
+
3405
3767
  # @!attribute [rw] configured_table_association_identifier
3406
3768
  # The unique ID for the configured table association to retrieve.
3407
3769
  # Currently accepts the configured table ID.
@@ -4161,14 +4523,12 @@ module Aws::CleanRooms
4161
4523
  # @return [String]
4162
4524
  #
4163
4525
  # @!attribute [rw] next_token
4164
- # The pagination token that's used to fetch the next set of results.
4526
+ # The token value retrieved from a previous call to access the next
4527
+ # page of results.
4165
4528
  # @return [String]
4166
4529
  #
4167
4530
  # @!attribute [rw] max_results
4168
- # The maximum number of results that are returned for an API request
4169
- # call. The service chooses a default number if you don't set one.
4170
- # The service might return a `nextToken` even if the `maxResults`
4171
- # value has not been met.
4531
+ # The maximum size of the results that is returned per call.
4172
4532
  # @return [Integer]
4173
4533
  #
4174
4534
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListAnalysisTemplatesInput AWS API Documentation
@@ -4182,7 +4542,8 @@ module Aws::CleanRooms
4182
4542
  end
4183
4543
 
4184
4544
  # @!attribute [rw] next_token
4185
- # The pagination token that's used to fetch the next set of results.
4545
+ # The token value retrieved from a previous call to access the next
4546
+ # page of results.
4186
4547
  # @return [String]
4187
4548
  #
4188
4549
  # @!attribute [rw] analysis_template_summaries
@@ -4204,14 +4565,12 @@ module Aws::CleanRooms
4204
4565
  # @return [String]
4205
4566
  #
4206
4567
  # @!attribute [rw] next_token
4207
- # The pagination token that's used to fetch the next set of results.
4568
+ # The token value retrieved from a previous call to access the next
4569
+ # page of results.
4208
4570
  # @return [String]
4209
4571
  #
4210
4572
  # @!attribute [rw] max_results
4211
- # The maximum number of results that are returned for an API request
4212
- # call. The service chooses a default number if you don't set one.
4213
- # The service might return a `nextToken` even if the `maxResults`
4214
- # value has not been met.
4573
+ # The maximum size of the results that is returned per call.
4215
4574
  # @return [Integer]
4216
4575
  #
4217
4576
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationAnalysisTemplatesInput AWS API Documentation
@@ -4225,7 +4584,8 @@ module Aws::CleanRooms
4225
4584
  end
4226
4585
 
4227
4586
  # @!attribute [rw] next_token
4228
- # The pagination token that's used to fetch the next set of results.
4587
+ # The token value retrieved from a previous call to access the next
4588
+ # page of results.
4229
4589
  # @return [String]
4230
4590
  #
4231
4591
  # @!attribute [rw] collaboration_analysis_template_summaries
@@ -4247,14 +4607,12 @@ module Aws::CleanRooms
4247
4607
  # @return [String]
4248
4608
  #
4249
4609
  # @!attribute [rw] next_token
4250
- # The pagination token that's used to fetch the next set of results.
4610
+ # The token value retrieved from a previous call to access the next
4611
+ # page of results.
4251
4612
  # @return [String]
4252
4613
  #
4253
4614
  # @!attribute [rw] max_results
4254
- # The maximum number of results that are returned for an API request
4255
- # call. The service chooses a default number if you don't set one.
4256
- # The service might return a `nextToken` even if the `maxResults`
4257
- # value has not been met.
4615
+ # The maximum size of the results that is returned per call.
4258
4616
  # @return [Integer]
4259
4617
  #
4260
4618
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsInput AWS API Documentation
@@ -4273,7 +4631,8 @@ module Aws::CleanRooms
4273
4631
  # @return [Array<Types::CollaborationConfiguredAudienceModelAssociationSummary>]
4274
4632
  #
4275
4633
  # @!attribute [rw] next_token
4276
- # The pagination token that's used to fetch the next set of results.
4634
+ # The token value retrieved from a previous call to access the next
4635
+ # page of results.
4277
4636
  # @return [String]
4278
4637
  #
4279
4638
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsOutput AWS API Documentation
@@ -4333,14 +4692,14 @@ module Aws::CleanRooms
4333
4692
  # @return [String]
4334
4693
  #
4335
4694
  # @!attribute [rw] next_token
4336
- # The pagination token that's used to fetch the next set of results.
4695
+ # The token value retrieved from a previous call to access the next
4696
+ # page of results.
4337
4697
  # @return [String]
4338
4698
  #
4339
4699
  # @!attribute [rw] max_results
4340
- # The maximum number of results that are returned for an API request
4341
- # call. The service chooses a default number if you don't set one.
4342
- # The service might return a `nextToken` even if the `maxResults`
4343
- # value has not been met.
4700
+ # The maximum size of the results that is returned per call. Service
4701
+ # chooses a default if it has not been set. Service may return a
4702
+ # nextToken even if the maximum results has not been met.
4344
4703
  # @return [Integer]
4345
4704
  #
4346
4705
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetTemplatesInput AWS API Documentation
@@ -4354,7 +4713,8 @@ module Aws::CleanRooms
4354
4713
  end
4355
4714
 
4356
4715
  # @!attribute [rw] next_token
4357
- # The pagination token that's used to fetch the next set of results.
4716
+ # The token value retrieved from a previous call to access the next
4717
+ # page of results.
4358
4718
  # @return [String]
4359
4719
  #
4360
4720
  # @!attribute [rw] collaboration_privacy_budget_template_summaries
@@ -4381,14 +4741,14 @@ module Aws::CleanRooms
4381
4741
  # @return [String]
4382
4742
  #
4383
4743
  # @!attribute [rw] max_results
4384
- # The maximum number of results that are returned for an API request
4385
- # call. The service chooses a default number if you don't set one.
4386
- # The service might return a `nextToken` even if the `maxResults`
4387
- # value has not been met.
4744
+ # The maximum size of the results that is returned per call. Service
4745
+ # chooses a default if it has not been set. Service may return a
4746
+ # nextToken even if the maximum results has not been met.
4388
4747
  # @return [Integer]
4389
4748
  #
4390
4749
  # @!attribute [rw] next_token
4391
- # The pagination token that's used to fetch the next set of results.
4750
+ # The token value retrieved from a previous call to access the next
4751
+ # page of results.
4392
4752
  # @return [String]
4393
4753
  #
4394
4754
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsInput AWS API Documentation
@@ -4407,7 +4767,8 @@ module Aws::CleanRooms
4407
4767
  # @return [Array<Types::CollaborationPrivacyBudgetSummary>]
4408
4768
  #
4409
4769
  # @!attribute [rw] next_token
4410
- # The pagination token that's used to fetch the next set of results.
4770
+ # The token value retrieved from a previous call to access the next
4771
+ # page of results.
4411
4772
  # @return [String]
4412
4773
  #
4413
4774
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsOutput AWS API Documentation
@@ -4420,14 +4781,14 @@ module Aws::CleanRooms
4420
4781
  end
4421
4782
 
4422
4783
  # @!attribute [rw] next_token
4423
- # The pagination token that's used to fetch the next set of results.
4784
+ # The token value retrieved from a previous call to access the next
4785
+ # page of results.
4424
4786
  # @return [String]
4425
4787
  #
4426
4788
  # @!attribute [rw] max_results
4427
- # The maximum number of results that are returned for an API request
4428
- # call. The service chooses a default number if you don't set one.
4429
- # The service might return a `nextToken` even if the `maxResults`
4430
- # value has not been met.
4789
+ # The maximum size of the results that is returned per call. Service
4790
+ # chooses a default if it has not been set. Service may return a
4791
+ # nextToken even if the maximum results has not been met.
4431
4792
  # @return [Integer]
4432
4793
  #
4433
4794
  # @!attribute [rw] member_status
@@ -4445,7 +4806,8 @@ module Aws::CleanRooms
4445
4806
  end
4446
4807
 
4447
4808
  # @!attribute [rw] next_token
4448
- # The pagination token that's used to fetch the next set of results.
4809
+ # The token value retrieved from a previous call to access the next
4810
+ # page of results.
4449
4811
  # @return [String]
4450
4812
  #
4451
4813
  # @!attribute [rw] collaboration_list
@@ -4467,14 +4829,14 @@ module Aws::CleanRooms
4467
4829
  # @return [String]
4468
4830
  #
4469
4831
  # @!attribute [rw] next_token
4470
- # The pagination token that's used to fetch the next set of results.
4832
+ # The token value retrieved from a previous call to access the next
4833
+ # page of results.
4471
4834
  # @return [String]
4472
4835
  #
4473
4836
  # @!attribute [rw] max_results
4474
- # The maximum number of results that are returned for an API request
4475
- # call. The service chooses a default number if you don't set one.
4476
- # The service might return a `nextToken` even if the `maxResults`
4477
- # value has not been met.
4837
+ # The maximum size of the results that is returned per call. Service
4838
+ # chooses a default if it has not been set. Service may return a
4839
+ # nextToken even if the maximum results has not been met.
4478
4840
  # @return [Integer]
4479
4841
  #
4480
4842
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredAudienceModelAssociationsInput AWS API Documentation
@@ -4511,14 +4873,12 @@ module Aws::CleanRooms
4511
4873
  # @return [String]
4512
4874
  #
4513
4875
  # @!attribute [rw] next_token
4514
- # The pagination token that's used to fetch the next set of results.
4876
+ # The token value retrieved from a previous call to access the next
4877
+ # page of results.
4515
4878
  # @return [String]
4516
4879
  #
4517
4880
  # @!attribute [rw] max_results
4518
- # The maximum number of results that are returned for an API request
4519
- # call. The service chooses a default number if you don't set one.
4520
- # The service might return a `nextToken` even if the `maxResults`
4521
- # value has not been met.
4881
+ # The maximum size of the results that is returned per call.
4522
4882
  # @return [Integer]
4523
4883
  #
4524
4884
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsInput AWS API Documentation
@@ -4536,7 +4896,8 @@ module Aws::CleanRooms
4536
4896
  # @return [Array<Types::ConfiguredTableAssociationSummary>]
4537
4897
  #
4538
4898
  # @!attribute [rw] next_token
4539
- # The pagination token that's used to fetch the next set of results.
4899
+ # The token value retrieved from a previous call to access the next
4900
+ # page of results.
4540
4901
  # @return [String]
4541
4902
  #
4542
4903
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsOutput AWS API Documentation
@@ -4549,14 +4910,12 @@ module Aws::CleanRooms
4549
4910
  end
4550
4911
 
4551
4912
  # @!attribute [rw] next_token
4552
- # The pagination token that's used to fetch the next set of results.
4913
+ # The token value retrieved from a previous call to access the next
4914
+ # page of results.
4553
4915
  # @return [String]
4554
4916
  #
4555
4917
  # @!attribute [rw] max_results
4556
- # The maximum number of results that are returned for an API request
4557
- # call. The service chooses a default number if you don't set one.
4558
- # The service might return a `nextToken` even if the `maxResults`
4559
- # value has not been met.
4918
+ # The maximum size of the results that is returned per call.
4560
4919
  # @return [Integer]
4561
4920
  #
4562
4921
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesInput AWS API Documentation
@@ -4573,7 +4932,8 @@ module Aws::CleanRooms
4573
4932
  # @return [Array<Types::ConfiguredTableSummary>]
4574
4933
  #
4575
4934
  # @!attribute [rw] next_token
4576
- # The pagination token that's used to fetch the next set of results.
4935
+ # The token value retrieved from a previous call to access the next
4936
+ # page of results.
4577
4937
  # @return [String]
4578
4938
  #
4579
4939
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesOutput AWS API Documentation
@@ -4675,14 +5035,12 @@ module Aws::CleanRooms
4675
5035
  # @return [String]
4676
5036
  #
4677
5037
  # @!attribute [rw] next_token
4678
- # The pagination token that's used to fetch the next set of results.
5038
+ # The token value retrieved from a previous call to access the next
5039
+ # page of results.
4679
5040
  # @return [String]
4680
5041
  #
4681
5042
  # @!attribute [rw] max_results
4682
- # The maximum number of results that are returned for an API request
4683
- # call. The service chooses a default number if you don't set one.
4684
- # The service might return a `nextToken` even if the `maxResults`
4685
- # value has not been met.
5043
+ # The maximum size of the results that is returned per call.
4686
5044
  # @return [Integer]
4687
5045
  #
4688
5046
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembersInput AWS API Documentation
@@ -4696,7 +5054,8 @@ module Aws::CleanRooms
4696
5054
  end
4697
5055
 
4698
5056
  # @!attribute [rw] next_token
4699
- # The pagination token that's used to fetch the next set of results.
5057
+ # The token value retrieved from a previous call to access the next
5058
+ # page of results.
4700
5059
  # @return [String]
4701
5060
  #
4702
5061
  # @!attribute [rw] member_summaries
@@ -4713,14 +5072,12 @@ module Aws::CleanRooms
4713
5072
  end
4714
5073
 
4715
5074
  # @!attribute [rw] next_token
4716
- # The pagination token that's used to fetch the next set of results.
5075
+ # The token value retrieved from a previous call to access the next
5076
+ # page of results.
4717
5077
  # @return [String]
4718
5078
  #
4719
5079
  # @!attribute [rw] max_results
4720
- # The maximum number of results that are returned for an API request
4721
- # call. The service chooses a default number if you don't set one.
4722
- # The service might return a `nextToken` even if the `maxResults`
4723
- # value has not been met.
5080
+ # The maximum size of the results that is returned per call.
4724
5081
  # @return [Integer]
4725
5082
  #
4726
5083
  # @!attribute [rw] status
@@ -4738,7 +5095,8 @@ module Aws::CleanRooms
4738
5095
  end
4739
5096
 
4740
5097
  # @!attribute [rw] next_token
4741
- # The pagination token that's used to fetch the next set of results.
5098
+ # The token value retrieved from a previous call to access the next
5099
+ # page of results.
4742
5100
  # @return [String]
4743
5101
  #
4744
5102
  # @!attribute [rw] membership_summaries
@@ -4761,14 +5119,14 @@ module Aws::CleanRooms
4761
5119
  # @return [String]
4762
5120
  #
4763
5121
  # @!attribute [rw] next_token
4764
- # The pagination token that's used to fetch the next set of results.
5122
+ # The token value retrieved from a previous call to access the next
5123
+ # page of results.
4765
5124
  # @return [String]
4766
5125
  #
4767
5126
  # @!attribute [rw] max_results
4768
- # The maximum number of results that are returned for an API request
4769
- # call. The service chooses a default number if you don't set one.
4770
- # The service might return a `nextToken` even if the `maxResults`
4771
- # value has not been met.
5127
+ # The maximum size of the results that is returned per call. Service
5128
+ # chooses a default if it has not been set. Service may return a
5129
+ # nextToken even if the maximum results has not been met.
4772
5130
  # @return [Integer]
4773
5131
  #
4774
5132
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetTemplatesInput AWS API Documentation
@@ -4782,7 +5140,8 @@ module Aws::CleanRooms
4782
5140
  end
4783
5141
 
4784
5142
  # @!attribute [rw] next_token
4785
- # The pagination token that's used to fetch the next set of results.
5143
+ # The token value retrieved from a previous call to access the next
5144
+ # page of results.
4786
5145
  # @return [String]
4787
5146
  #
4788
5147
  # @!attribute [rw] privacy_budget_template_summaries
@@ -4811,14 +5170,14 @@ module Aws::CleanRooms
4811
5170
  # @return [String]
4812
5171
  #
4813
5172
  # @!attribute [rw] next_token
4814
- # The pagination token that's used to fetch the next set of results.
5173
+ # The token value retrieved from a previous call to access the next
5174
+ # page of results.
4815
5175
  # @return [String]
4816
5176
  #
4817
5177
  # @!attribute [rw] max_results
4818
- # The maximum number of results that are returned for an API request
4819
- # call. The service chooses a default number if you don't set one.
4820
- # The service might return a `nextToken` even if the `maxResults`
4821
- # value has not been met.
5178
+ # The maximum size of the results that is returned per call. Service
5179
+ # chooses a default if it has not been set. Service may return a
5180
+ # nextToken even if the maximum results has not been met.
4822
5181
  # @return [Integer]
4823
5182
  #
4824
5183
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsInput AWS API Documentation
@@ -4839,7 +5198,8 @@ module Aws::CleanRooms
4839
5198
  # @return [Array<Types::PrivacyBudgetSummary>]
4840
5199
  #
4841
5200
  # @!attribute [rw] next_token
4842
- # The pagination token that's used to fetch the next set of results.
5201
+ # The token value retrieved from a previous call to access the next
5202
+ # page of results.
4843
5203
  # @return [String]
4844
5204
  #
4845
5205
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsOutput AWS API Documentation
@@ -4860,14 +5220,14 @@ module Aws::CleanRooms
4860
5220
  # @return [String]
4861
5221
  #
4862
5222
  # @!attribute [rw] next_token
4863
- # The pagination token that's used to fetch the next set of results.
5223
+ # The token value retrieved from a previous call to access the next
5224
+ # page of results.
4864
5225
  # @return [String]
4865
5226
  #
4866
5227
  # @!attribute [rw] max_results
4867
- # The maximum number of results that are returned for an API request
4868
- # call. The service chooses a default number if you don't set one.
4869
- # The service might return a `nextToken` even if the `maxResults`
4870
- # value has not been met.
5228
+ # The maximum size of the results that is returned per call. Service
5229
+ # chooses a default if it has not been set. Service can return a
5230
+ # nextToken even if the maximum results has not been met.
4871
5231
  # @return [Integer]
4872
5232
  #
4873
5233
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueriesInput AWS API Documentation
@@ -4882,7 +5242,8 @@ module Aws::CleanRooms
4882
5242
  end
4883
5243
 
4884
5244
  # @!attribute [rw] next_token
4885
- # The pagination token that's used to fetch the next set of results.
5245
+ # The token value retrieved from a previous call to access the next
5246
+ # page of results.
4886
5247
  # @return [String]
4887
5248
  #
4888
5249
  # @!attribute [rw] protected_queries
@@ -4904,18 +5265,17 @@ module Aws::CleanRooms
4904
5265
  # @return [String]
4905
5266
  #
4906
5267
  # @!attribute [rw] schema_type
4907
- # If present, filter schemas by schema type.
5268
+ # If present, filter schemas by schema type. The only valid schema
5269
+ # type is currently `TABLE`.
4908
5270
  # @return [String]
4909
5271
  #
4910
5272
  # @!attribute [rw] next_token
4911
- # The pagination token that's used to fetch the next set of results.
5273
+ # The token value retrieved from a previous call to access the next
5274
+ # page of results.
4912
5275
  # @return [String]
4913
5276
  #
4914
5277
  # @!attribute [rw] max_results
4915
- # The maximum number of results that are returned for an API request
4916
- # call. The service chooses a default number if you don't set one.
4917
- # The service might return a `nextToken` even if the `maxResults`
4918
- # value has not been met.
5278
+ # The maximum size of the results that is returned per call.
4919
5279
  # @return [Integer]
4920
5280
  #
4921
5281
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasInput AWS API Documentation
@@ -4934,7 +5294,8 @@ module Aws::CleanRooms
4934
5294
  # @return [Array<Types::SchemaSummary>]
4935
5295
  #
4936
5296
  # @!attribute [rw] next_token
4937
- # The pagination token that's used to fetch the next set of results.
5297
+ # The token value retrieved from a previous call to access the next
5298
+ # page of results.
4938
5299
  # @return [String]
4939
5300
  #
4940
5301
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasOutput AWS API Documentation
@@ -5810,6 +6171,20 @@ module Aws::CleanRooms
5810
6171
  include Aws::Structure
5811
6172
  end
5812
6173
 
6174
+ # Contains configuration details for the protected query member output.
6175
+ #
6176
+ # @!attribute [rw] account_id
6177
+ # The unique identifier for the account.
6178
+ # @return [String]
6179
+ #
6180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryMemberOutputConfiguration AWS API Documentation
6181
+ #
6182
+ class ProtectedQueryMemberOutputConfiguration < Struct.new(
6183
+ :account_id)
6184
+ SENSITIVE = []
6185
+ include Aws::Structure
6186
+ end
6187
+
5813
6188
  # Contains details about the protected query output.
5814
6189
  #
5815
6190
  # @note ProtectedQueryOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryOutput corresponding to the set member.
@@ -5846,20 +6221,27 @@ module Aws::CleanRooms
5846
6221
  # @note ProtectedQueryOutputConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryOutputConfiguration corresponding to the set member.
5847
6222
  #
5848
6223
  # @!attribute [rw] s3
5849
- # Required configuration for a protected query with an `S3` output
6224
+ # Required configuration for a protected query with an `s3` output
5850
6225
  # type.
5851
6226
  # @return [Types::ProtectedQueryS3OutputConfiguration]
5852
6227
  #
6228
+ # @!attribute [rw] member
6229
+ # Required configuration for a protected query with a `member` output
6230
+ # type.
6231
+ # @return [Types::ProtectedQueryMemberOutputConfiguration]
6232
+ #
5853
6233
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryOutputConfiguration AWS API Documentation
5854
6234
  #
5855
6235
  class ProtectedQueryOutputConfiguration < Struct.new(
5856
6236
  :s3,
6237
+ :member,
5857
6238
  :unknown)
5858
6239
  SENSITIVE = []
5859
6240
  include Aws::Structure
5860
6241
  include Aws::Structure::Union
5861
6242
 
5862
6243
  class S3 < ProtectedQueryOutputConfiguration; end
6244
+ class Member < ProtectedQueryOutputConfiguration; end
5863
6245
  class Unknown < ProtectedQueryOutputConfiguration; end
5864
6246
  end
5865
6247
 
@@ -5973,7 +6355,7 @@ module Aws::CleanRooms
5973
6355
  # Contains statistics about the execution of the protected query.
5974
6356
  #
5975
6357
  # @!attribute [rw] total_duration_in_millis
5976
- # The duration of the Protected Query, from creation until query
6358
+ # The duration of the protected query, from creation until query
5977
6359
  # completion.
5978
6360
  # @return [Integer]
5979
6361
  #
@@ -6010,6 +6392,10 @@ module Aws::CleanRooms
6010
6392
  # `TIMED\_OUT`.
6011
6393
  # @return [String]
6012
6394
  #
6395
+ # @!attribute [rw] receiver_configurations
6396
+ # The receiver configuration.
6397
+ # @return [Array<Types::ReceiverConfiguration>]
6398
+ #
6013
6399
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuerySummary AWS API Documentation
6014
6400
  #
6015
6401
  class ProtectedQuerySummary < Struct.new(
@@ -6017,7 +6403,8 @@ module Aws::CleanRooms
6017
6403
  :membership_id,
6018
6404
  :membership_arn,
6019
6405
  :create_time,
6020
- :status)
6406
+ :status,
6407
+ :receiver_configurations)
6021
6408
  SENSITIVE = []
6022
6409
  include Aws::Structure
6023
6410
  end
@@ -6086,6 +6473,28 @@ module Aws::CleanRooms
6086
6473
  include Aws::Structure
6087
6474
  end
6088
6475
 
6476
+ # The receiver configuration for a protected query.
6477
+ #
6478
+ # @!attribute [rw] analysis_type
6479
+ # The type of analysis for the protected query. The results of the
6480
+ # query can be analyzed directly (`DIRECT_ANALYSIS`) or used as input
6481
+ # into additional analyses (`ADDITIONAL_ANALYSIS`), such as a query
6482
+ # that is a seed for a lookalike ML model.
6483
+ # @return [String]
6484
+ #
6485
+ # @!attribute [rw] configuration_details
6486
+ # The configuration details of the receiver configuration.
6487
+ # @return [Types::ConfigurationDetails]
6488
+ #
6489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ReceiverConfiguration AWS API Documentation
6490
+ #
6491
+ class ReceiverConfiguration < Struct.new(
6492
+ :analysis_type,
6493
+ :configuration_details)
6494
+ SENSITIVE = []
6495
+ include Aws::Structure
6496
+ end
6497
+
6089
6498
  # Request references a resource which does not exist.
6090
6499
  #
6091
6500
  # @!attribute [rw] message
@@ -6112,7 +6521,7 @@ module Aws::CleanRooms
6112
6521
  # A schema is a relation within a collaboration.
6113
6522
  #
6114
6523
  # @!attribute [rw] columns
6115
- # The columns for the relation that this schema represents.
6524
+ # The columns for the relation this schema represents.
6116
6525
  # @return [Array<Types::Column>]
6117
6526
  #
6118
6527
  # @!attribute [rw] partition_keys
@@ -6120,13 +6529,13 @@ module Aws::CleanRooms
6120
6529
  # @return [Array<Types::Column>]
6121
6530
  #
6122
6531
  # @!attribute [rw] analysis_rule_types
6123
- # The analysis rule types that are associated with the schema.
6124
- # Currently, only one entry is present.
6532
+ # The analysis rule types associated with the schema. Currently, only
6533
+ # one entry is present.
6125
6534
  # @return [Array<String>]
6126
6535
  #
6127
6536
  # @!attribute [rw] analysis_method
6128
6537
  # The analysis method for the schema. The only valid value is
6129
- # currently `DIRECT_QUERY`.
6538
+ # currently DIRECT\_QUERY.
6130
6539
  # @return [String]
6131
6540
  #
6132
6541
  # @!attribute [rw] creator_account_id
@@ -6144,8 +6553,7 @@ module Aws::CleanRooms
6144
6553
  # @return [String]
6145
6554
  #
6146
6555
  # @!attribute [rw] collaboration_arn
6147
- # The unique Amazon Resource Name (ARN) for the collaboration that the
6148
- # schema belongs to.
6556
+ # The unique ARN for the collaboration that the schema belongs to.
6149
6557
  # @return [String]
6150
6558
  #
6151
6559
  # @!attribute [rw] description
@@ -6153,15 +6561,15 @@ module Aws::CleanRooms
6153
6561
  # @return [String]
6154
6562
  #
6155
6563
  # @!attribute [rw] create_time
6156
- # The time at which the schema was created.
6564
+ # The time the schema was created.
6157
6565
  # @return [Time]
6158
6566
  #
6159
6567
  # @!attribute [rw] update_time
6160
- # The most recent time at which the schema was updated.
6568
+ # The time the schema was last updated.
6161
6569
  # @return [Time]
6162
6570
  #
6163
6571
  # @!attribute [rw] type
6164
- # The type of schema.
6572
+ # The type of schema. The only valid value is currently `TABLE`.
6165
6573
  # @return [String]
6166
6574
  #
6167
6575
  # @!attribute [rw] schema_status_details
@@ -6223,7 +6631,7 @@ module Aws::CleanRooms
6223
6631
  # queries on this schema.
6224
6632
  #
6225
6633
  # @!attribute [rw] status
6226
- # The status of the schema.
6634
+ # The status of the schema, indicating if it is ready to query.
6227
6635
  # @return [String]
6228
6636
  #
6229
6637
  # @!attribute [rw] reasons
@@ -6240,13 +6648,21 @@ module Aws::CleanRooms
6240
6648
  # type.
6241
6649
  # @return [Array<String>]
6242
6650
  #
6651
+ # @!attribute [rw] analysis_type
6652
+ # The type of analysis that can be performed on the schema.
6653
+ #
6654
+ # A schema can have an `analysisType` of `DIRECT_ANALYSIS`,
6655
+ # `ADDITIONAL_ANALYSIS_FOR_AUDIENCE_GENERATION`, or both.
6656
+ # @return [String]
6657
+ #
6243
6658
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SchemaStatusDetail AWS API Documentation
6244
6659
  #
6245
6660
  class SchemaStatusDetail < Struct.new(
6246
6661
  :status,
6247
6662
  :reasons,
6248
6663
  :analysis_rule_type,
6249
- :configurations)
6664
+ :configurations,
6665
+ :analysis_type)
6250
6666
  SENSITIVE = []
6251
6667
  include Aws::Structure
6252
6668
  end
@@ -6277,7 +6693,8 @@ module Aws::CleanRooms
6277
6693
  # @return [String]
6278
6694
  #
6279
6695
  # @!attribute [rw] type
6280
- # The type of schema object.
6696
+ # The type of schema object. The only valid schema type is currently
6697
+ # `TABLE`.
6281
6698
  # @return [String]
6282
6699
  #
6283
6700
  # @!attribute [rw] creator_account_id
@@ -6641,6 +7058,49 @@ module Aws::CleanRooms
6641
7058
  include Aws::Structure
6642
7059
  end
6643
7060
 
7061
+ # @!attribute [rw] membership_identifier
7062
+ # A unique identifier for the membership that the configured table
7063
+ # association belongs to. Currently accepts the membership ID.
7064
+ # @return [String]
7065
+ #
7066
+ # @!attribute [rw] configured_table_association_identifier
7067
+ # The identifier for the configured table association to update.
7068
+ # @return [String]
7069
+ #
7070
+ # @!attribute [rw] analysis_rule_type
7071
+ # The analysis rule type that you want to update.
7072
+ # @return [String]
7073
+ #
7074
+ # @!attribute [rw] analysis_rule_policy
7075
+ # The updated analysis rule policy for the configured table
7076
+ # association.
7077
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicy]
7078
+ #
7079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
7080
+ #
7081
+ class UpdateConfiguredTableAssociationAnalysisRuleInput < Struct.new(
7082
+ :membership_identifier,
7083
+ :configured_table_association_identifier,
7084
+ :analysis_rule_type,
7085
+ :analysis_rule_policy)
7086
+ SENSITIVE = []
7087
+ include Aws::Structure
7088
+ end
7089
+
7090
+ # @!attribute [rw] analysis_rule
7091
+ # The updated analysis rule for the configured table association. In
7092
+ # the console, the `ConfiguredTableAssociationAnalysisRule` is
7093
+ # referred to as the *collaboration analysis rule*.
7094
+ # @return [Types::ConfiguredTableAssociationAnalysisRule]
7095
+ #
7096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
7097
+ #
7098
+ class UpdateConfiguredTableAssociationAnalysisRuleOutput < Struct.new(
7099
+ :analysis_rule)
7100
+ SENSITIVE = []
7101
+ include Aws::Structure
7102
+ end
7103
+
6644
7104
  # @!attribute [rw] configured_table_association_identifier
6645
7105
  # The unique identifier for the configured table association to
6646
7106
  # update. Currently accepts the configured table association ID.