aws-sdk-cleanrooms 1.15.0 → 1.16.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/client.rbs ADDED
@@ -0,0 +1,982 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module CleanRooms
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _BatchGetCollaborationAnalysisTemplateResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetCollaborationAnalysisTemplateOutput]
77
+ def collaboration_analysis_templates: () -> ::Array[Types::CollaborationAnalysisTemplate]
78
+ def errors: () -> ::Array[Types::BatchGetCollaborationAnalysisTemplateError]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#batch_get_collaboration_analysis_template-instance_method
81
+ def batch_get_collaboration_analysis_template: (
82
+ collaboration_identifier: ::String,
83
+ analysis_template_arns: Array[::String]
84
+ ) -> _BatchGetCollaborationAnalysisTemplateResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetCollaborationAnalysisTemplateResponseSuccess
86
+
87
+ interface _BatchGetSchemaResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetSchemaOutput]
89
+ def schemas: () -> ::Array[Types::Schema]
90
+ def errors: () -> ::Array[Types::BatchGetSchemaError]
91
+ end
92
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#batch_get_schema-instance_method
93
+ def batch_get_schema: (
94
+ collaboration_identifier: ::String,
95
+ names: Array[::String]
96
+ ) -> _BatchGetSchemaResponseSuccess
97
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetSchemaResponseSuccess
98
+
99
+ interface _CreateAnalysisTemplateResponseSuccess
100
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAnalysisTemplateOutput]
101
+ def analysis_template: () -> Types::AnalysisTemplate
102
+ end
103
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_analysis_template-instance_method
104
+ def create_analysis_template: (
105
+ ?description: ::String,
106
+ membership_identifier: ::String,
107
+ name: ::String,
108
+ format: ("SQL"),
109
+ source: {
110
+ text: ::String?
111
+ },
112
+ ?tags: Hash[::String, ::String],
113
+ ?analysis_parameters: Array[
114
+ {
115
+ name: ::String,
116
+ type: ("SMALLINT" | "INTEGER" | "BIGINT" | "DECIMAL" | "REAL" | "DOUBLE_PRECISION" | "BOOLEAN" | "CHAR" | "VARCHAR" | "DATE" | "TIMESTAMP" | "TIMESTAMPTZ" | "TIME" | "TIMETZ" | "VARBYTE"),
117
+ default_value: ::String?
118
+ },
119
+ ]
120
+ ) -> _CreateAnalysisTemplateResponseSuccess
121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnalysisTemplateResponseSuccess
122
+
123
+ interface _CreateCollaborationResponseSuccess
124
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCollaborationOutput]
125
+ def collaboration: () -> Types::Collaboration
126
+ end
127
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_collaboration-instance_method
128
+ def create_collaboration: (
129
+ members: Array[
130
+ {
131
+ account_id: ::String,
132
+ member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")],
133
+ display_name: ::String,
134
+ payment_configuration: {
135
+ query_compute: {
136
+ is_responsible: bool
137
+ }
138
+ }?
139
+ },
140
+ ],
141
+ name: ::String,
142
+ description: ::String,
143
+ creator_member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")],
144
+ creator_display_name: ::String,
145
+ ?data_encryption_metadata: {
146
+ allow_cleartext: bool,
147
+ allow_duplicates: bool,
148
+ allow_joins_on_columns_with_different_names: bool,
149
+ preserve_nulls: bool
150
+ },
151
+ query_log_status: ("ENABLED" | "DISABLED"),
152
+ ?tags: Hash[::String, ::String],
153
+ ?creator_payment_configuration: {
154
+ query_compute: {
155
+ is_responsible: bool
156
+ }
157
+ }
158
+ ) -> _CreateCollaborationResponseSuccess
159
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
160
+
161
+ interface _CreateConfiguredAudienceModelAssociationResponseSuccess
162
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredAudienceModelAssociationOutput]
163
+ def configured_audience_model_association: () -> Types::ConfiguredAudienceModelAssociation
164
+ end
165
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_configured_audience_model_association-instance_method
166
+ def create_configured_audience_model_association: (
167
+ membership_identifier: ::String,
168
+ configured_audience_model_arn: ::String,
169
+ configured_audience_model_association_name: ::String,
170
+ manage_resource_policies: bool,
171
+ ?tags: Hash[::String, ::String],
172
+ ?description: ::String
173
+ ) -> _CreateConfiguredAudienceModelAssociationResponseSuccess
174
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredAudienceModelAssociationResponseSuccess
175
+
176
+ interface _CreateConfiguredTableResponseSuccess
177
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredTableOutput]
178
+ def configured_table: () -> Types::ConfiguredTable
179
+ end
180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_configured_table-instance_method
181
+ def create_configured_table: (
182
+ name: ::String,
183
+ ?description: ::String,
184
+ table_reference: {
185
+ glue: {
186
+ table_name: ::String,
187
+ database_name: ::String
188
+ }?
189
+ },
190
+ allowed_columns: Array[::String],
191
+ analysis_method: ("DIRECT_QUERY"),
192
+ ?tags: Hash[::String, ::String]
193
+ ) -> _CreateConfiguredTableResponseSuccess
194
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableResponseSuccess
195
+
196
+ interface _CreateConfiguredTableAnalysisRuleResponseSuccess
197
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredTableAnalysisRuleOutput]
198
+ def analysis_rule: () -> Types::ConfiguredTableAnalysisRule
199
+ end
200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_configured_table_analysis_rule-instance_method
201
+ def create_configured_table_analysis_rule: (
202
+ configured_table_identifier: ::String,
203
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM"),
204
+ analysis_rule_policy: {
205
+ v1: {
206
+ list: {
207
+ join_columns: Array[::String],
208
+ allowed_join_operators: Array[("OR" | "AND")]?,
209
+ list_columns: Array[::String]
210
+ }?,
211
+ aggregation: {
212
+ aggregate_columns: Array[
213
+ {
214
+ column_names: Array[::String],
215
+ function: ("SUM" | "SUM_DISTINCT" | "COUNT" | "COUNT_DISTINCT" | "AVG")
216
+ },
217
+ ],
218
+ join_columns: Array[::String],
219
+ join_required: ("QUERY_RUNNER")?,
220
+ allowed_join_operators: Array[("OR" | "AND")]?,
221
+ dimension_columns: Array[::String],
222
+ scalar_functions: Array[("TRUNC" | "ABS" | "CEILING" | "FLOOR" | "LN" | "LOG" | "ROUND" | "SQRT" | "CAST" | "LOWER" | "RTRIM" | "UPPER" | "COALESCE")],
223
+ output_constraints: Array[
224
+ {
225
+ column_name: ::String,
226
+ minimum: ::Integer,
227
+ type: ("COUNT_DISTINCT")
228
+ },
229
+ ]
230
+ }?,
231
+ custom: {
232
+ allowed_analyses: Array[::String],
233
+ allowed_analysis_providers: Array[::String]?,
234
+ differential_privacy: {
235
+ columns: Array[
236
+ {
237
+ name: ::String
238
+ },
239
+ ]
240
+ }?
241
+ }?
242
+ }?
243
+ }
244
+ ) -> _CreateConfiguredTableAnalysisRuleResponseSuccess
245
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableAnalysisRuleResponseSuccess
246
+
247
+ interface _CreateConfiguredTableAssociationResponseSuccess
248
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredTableAssociationOutput]
249
+ def configured_table_association: () -> Types::ConfiguredTableAssociation
250
+ end
251
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_configured_table_association-instance_method
252
+ def create_configured_table_association: (
253
+ name: ::String,
254
+ ?description: ::String,
255
+ membership_identifier: ::String,
256
+ configured_table_identifier: ::String,
257
+ role_arn: ::String,
258
+ ?tags: Hash[::String, ::String]
259
+ ) -> _CreateConfiguredTableAssociationResponseSuccess
260
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableAssociationResponseSuccess
261
+
262
+ interface _CreateMembershipResponseSuccess
263
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMembershipOutput]
264
+ def membership: () -> Types::Membership
265
+ end
266
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_membership-instance_method
267
+ def create_membership: (
268
+ collaboration_identifier: ::String,
269
+ query_log_status: ("ENABLED" | "DISABLED"),
270
+ ?tags: Hash[::String, ::String],
271
+ ?default_result_configuration: {
272
+ output_configuration: {
273
+ s3: {
274
+ result_format: ("CSV" | "PARQUET"),
275
+ bucket: ::String,
276
+ key_prefix: ::String?
277
+ }?
278
+ },
279
+ role_arn: ::String?
280
+ },
281
+ ?payment_configuration: {
282
+ query_compute: {
283
+ is_responsible: bool
284
+ }
285
+ }
286
+ ) -> _CreateMembershipResponseSuccess
287
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMembershipResponseSuccess
288
+
289
+ interface _CreatePrivacyBudgetTemplateResponseSuccess
290
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePrivacyBudgetTemplateOutput]
291
+ def privacy_budget_template: () -> Types::PrivacyBudgetTemplate
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_privacy_budget_template-instance_method
294
+ def create_privacy_budget_template: (
295
+ membership_identifier: ::String,
296
+ auto_refresh: ("CALENDAR_MONTH" | "NONE"),
297
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
298
+ parameters: {
299
+ differential_privacy: {
300
+ epsilon: ::Integer,
301
+ users_noise_per_query: ::Integer
302
+ }?
303
+ },
304
+ ?tags: Hash[::String, ::String]
305
+ ) -> _CreatePrivacyBudgetTemplateResponseSuccess
306
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePrivacyBudgetTemplateResponseSuccess
307
+
308
+ interface _DeleteAnalysisTemplateResponseSuccess
309
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnalysisTemplateOutput]
310
+ end
311
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_analysis_template-instance_method
312
+ def delete_analysis_template: (
313
+ membership_identifier: ::String,
314
+ analysis_template_identifier: ::String
315
+ ) -> _DeleteAnalysisTemplateResponseSuccess
316
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnalysisTemplateResponseSuccess
317
+
318
+ interface _DeleteCollaborationResponseSuccess
319
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCollaborationOutput]
320
+ end
321
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_collaboration-instance_method
322
+ def delete_collaboration: (
323
+ collaboration_identifier: ::String
324
+ ) -> _DeleteCollaborationResponseSuccess
325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCollaborationResponseSuccess
326
+
327
+ interface _DeleteConfiguredAudienceModelAssociationResponseSuccess
328
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfiguredAudienceModelAssociationOutput]
329
+ end
330
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_configured_audience_model_association-instance_method
331
+ def delete_configured_audience_model_association: (
332
+ configured_audience_model_association_identifier: ::String,
333
+ membership_identifier: ::String
334
+ ) -> _DeleteConfiguredAudienceModelAssociationResponseSuccess
335
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredAudienceModelAssociationResponseSuccess
336
+
337
+ interface _DeleteConfiguredTableResponseSuccess
338
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfiguredTableOutput]
339
+ end
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_configured_table-instance_method
341
+ def delete_configured_table: (
342
+ configured_table_identifier: ::String
343
+ ) -> _DeleteConfiguredTableResponseSuccess
344
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableResponseSuccess
345
+
346
+ interface _DeleteConfiguredTableAnalysisRuleResponseSuccess
347
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfiguredTableAnalysisRuleOutput]
348
+ end
349
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_configured_table_analysis_rule-instance_method
350
+ def delete_configured_table_analysis_rule: (
351
+ configured_table_identifier: ::String,
352
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
353
+ ) -> _DeleteConfiguredTableAnalysisRuleResponseSuccess
354
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableAnalysisRuleResponseSuccess
355
+
356
+ interface _DeleteConfiguredTableAssociationResponseSuccess
357
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfiguredTableAssociationOutput]
358
+ end
359
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_configured_table_association-instance_method
360
+ def delete_configured_table_association: (
361
+ configured_table_association_identifier: ::String,
362
+ membership_identifier: ::String
363
+ ) -> _DeleteConfiguredTableAssociationResponseSuccess
364
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableAssociationResponseSuccess
365
+
366
+ interface _DeleteMemberResponseSuccess
367
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMemberOutput]
368
+ end
369
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_member-instance_method
370
+ def delete_member: (
371
+ collaboration_identifier: ::String,
372
+ account_id: ::String
373
+ ) -> _DeleteMemberResponseSuccess
374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMemberResponseSuccess
375
+
376
+ interface _DeleteMembershipResponseSuccess
377
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMembershipOutput]
378
+ end
379
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_membership-instance_method
380
+ def delete_membership: (
381
+ membership_identifier: ::String
382
+ ) -> _DeleteMembershipResponseSuccess
383
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMembershipResponseSuccess
384
+
385
+ interface _DeletePrivacyBudgetTemplateResponseSuccess
386
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePrivacyBudgetTemplateOutput]
387
+ end
388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_privacy_budget_template-instance_method
389
+ def delete_privacy_budget_template: (
390
+ membership_identifier: ::String,
391
+ privacy_budget_template_identifier: ::String
392
+ ) -> _DeletePrivacyBudgetTemplateResponseSuccess
393
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePrivacyBudgetTemplateResponseSuccess
394
+
395
+ interface _GetAnalysisTemplateResponseSuccess
396
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnalysisTemplateOutput]
397
+ def analysis_template: () -> Types::AnalysisTemplate
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_analysis_template-instance_method
400
+ def get_analysis_template: (
401
+ membership_identifier: ::String,
402
+ analysis_template_identifier: ::String
403
+ ) -> _GetAnalysisTemplateResponseSuccess
404
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnalysisTemplateResponseSuccess
405
+
406
+ interface _GetCollaborationResponseSuccess
407
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationOutput]
408
+ def collaboration: () -> Types::Collaboration
409
+ end
410
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_collaboration-instance_method
411
+ def get_collaboration: (
412
+ collaboration_identifier: ::String
413
+ ) -> _GetCollaborationResponseSuccess
414
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationResponseSuccess
415
+
416
+ interface _GetCollaborationAnalysisTemplateResponseSuccess
417
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationAnalysisTemplateOutput]
418
+ def collaboration_analysis_template: () -> Types::CollaborationAnalysisTemplate
419
+ end
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_collaboration_analysis_template-instance_method
421
+ def get_collaboration_analysis_template: (
422
+ collaboration_identifier: ::String,
423
+ analysis_template_arn: ::String
424
+ ) -> _GetCollaborationAnalysisTemplateResponseSuccess
425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationAnalysisTemplateResponseSuccess
426
+
427
+ interface _GetCollaborationConfiguredAudienceModelAssociationResponseSuccess
428
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationConfiguredAudienceModelAssociationOutput]
429
+ def collaboration_configured_audience_model_association: () -> Types::CollaborationConfiguredAudienceModelAssociation
430
+ end
431
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_collaboration_configured_audience_model_association-instance_method
432
+ def get_collaboration_configured_audience_model_association: (
433
+ collaboration_identifier: ::String,
434
+ configured_audience_model_association_identifier: ::String
435
+ ) -> _GetCollaborationConfiguredAudienceModelAssociationResponseSuccess
436
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationConfiguredAudienceModelAssociationResponseSuccess
437
+
438
+ interface _GetCollaborationPrivacyBudgetTemplateResponseSuccess
439
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationPrivacyBudgetTemplateOutput]
440
+ def collaboration_privacy_budget_template: () -> Types::CollaborationPrivacyBudgetTemplate
441
+ end
442
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_collaboration_privacy_budget_template-instance_method
443
+ def get_collaboration_privacy_budget_template: (
444
+ collaboration_identifier: ::String,
445
+ privacy_budget_template_identifier: ::String
446
+ ) -> _GetCollaborationPrivacyBudgetTemplateResponseSuccess
447
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationPrivacyBudgetTemplateResponseSuccess
448
+
449
+ interface _GetConfiguredAudienceModelAssociationResponseSuccess
450
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredAudienceModelAssociationOutput]
451
+ def configured_audience_model_association: () -> Types::ConfiguredAudienceModelAssociation
452
+ end
453
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_configured_audience_model_association-instance_method
454
+ def get_configured_audience_model_association: (
455
+ configured_audience_model_association_identifier: ::String,
456
+ membership_identifier: ::String
457
+ ) -> _GetConfiguredAudienceModelAssociationResponseSuccess
458
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredAudienceModelAssociationResponseSuccess
459
+
460
+ interface _GetConfiguredTableResponseSuccess
461
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredTableOutput]
462
+ def configured_table: () -> Types::ConfiguredTable
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_configured_table-instance_method
465
+ def get_configured_table: (
466
+ configured_table_identifier: ::String
467
+ ) -> _GetConfiguredTableResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableResponseSuccess
469
+
470
+ interface _GetConfiguredTableAnalysisRuleResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredTableAnalysisRuleOutput]
472
+ def analysis_rule: () -> Types::ConfiguredTableAnalysisRule
473
+ end
474
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_configured_table_analysis_rule-instance_method
475
+ def get_configured_table_analysis_rule: (
476
+ configured_table_identifier: ::String,
477
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
478
+ ) -> _GetConfiguredTableAnalysisRuleResponseSuccess
479
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableAnalysisRuleResponseSuccess
480
+
481
+ interface _GetConfiguredTableAssociationResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredTableAssociationOutput]
483
+ def configured_table_association: () -> Types::ConfiguredTableAssociation
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_configured_table_association-instance_method
486
+ def get_configured_table_association: (
487
+ configured_table_association_identifier: ::String,
488
+ membership_identifier: ::String
489
+ ) -> _GetConfiguredTableAssociationResponseSuccess
490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableAssociationResponseSuccess
491
+
492
+ interface _GetMembershipResponseSuccess
493
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMembershipOutput]
494
+ def membership: () -> Types::Membership
495
+ end
496
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_membership-instance_method
497
+ def get_membership: (
498
+ membership_identifier: ::String
499
+ ) -> _GetMembershipResponseSuccess
500
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMembershipResponseSuccess
501
+
502
+ interface _GetPrivacyBudgetTemplateResponseSuccess
503
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPrivacyBudgetTemplateOutput]
504
+ def privacy_budget_template: () -> Types::PrivacyBudgetTemplate
505
+ end
506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_privacy_budget_template-instance_method
507
+ def get_privacy_budget_template: (
508
+ membership_identifier: ::String,
509
+ privacy_budget_template_identifier: ::String
510
+ ) -> _GetPrivacyBudgetTemplateResponseSuccess
511
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPrivacyBudgetTemplateResponseSuccess
512
+
513
+ interface _GetProtectedQueryResponseSuccess
514
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProtectedQueryOutput]
515
+ def protected_query: () -> Types::ProtectedQuery
516
+ end
517
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_protected_query-instance_method
518
+ def get_protected_query: (
519
+ membership_identifier: ::String,
520
+ protected_query_identifier: ::String
521
+ ) -> _GetProtectedQueryResponseSuccess
522
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProtectedQueryResponseSuccess
523
+
524
+ interface _GetSchemaResponseSuccess
525
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSchemaOutput]
526
+ def schema: () -> Types::Schema
527
+ end
528
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_schema-instance_method
529
+ def get_schema: (
530
+ collaboration_identifier: ::String,
531
+ name: ::String
532
+ ) -> _GetSchemaResponseSuccess
533
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSchemaResponseSuccess
534
+
535
+ interface _GetSchemaAnalysisRuleResponseSuccess
536
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSchemaAnalysisRuleOutput]
537
+ def analysis_rule: () -> Types::AnalysisRule
538
+ end
539
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_schema_analysis_rule-instance_method
540
+ def get_schema_analysis_rule: (
541
+ collaboration_identifier: ::String,
542
+ name: ::String,
543
+ type: ("AGGREGATION" | "LIST" | "CUSTOM")
544
+ ) -> _GetSchemaAnalysisRuleResponseSuccess
545
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSchemaAnalysisRuleResponseSuccess
546
+
547
+ interface _ListAnalysisTemplatesResponseSuccess
548
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnalysisTemplatesOutput]
549
+ def next_token: () -> ::String
550
+ def analysis_template_summaries: () -> ::Array[Types::AnalysisTemplateSummary]
551
+ end
552
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_analysis_templates-instance_method
553
+ def list_analysis_templates: (
554
+ membership_identifier: ::String,
555
+ ?next_token: ::String,
556
+ ?max_results: ::Integer
557
+ ) -> _ListAnalysisTemplatesResponseSuccess
558
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnalysisTemplatesResponseSuccess
559
+
560
+ interface _ListCollaborationAnalysisTemplatesResponseSuccess
561
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationAnalysisTemplatesOutput]
562
+ def next_token: () -> ::String
563
+ def collaboration_analysis_template_summaries: () -> ::Array[Types::CollaborationAnalysisTemplateSummary]
564
+ end
565
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaboration_analysis_templates-instance_method
566
+ def list_collaboration_analysis_templates: (
567
+ collaboration_identifier: ::String,
568
+ ?next_token: ::String,
569
+ ?max_results: ::Integer
570
+ ) -> _ListCollaborationAnalysisTemplatesResponseSuccess
571
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationAnalysisTemplatesResponseSuccess
572
+
573
+ interface _ListCollaborationConfiguredAudienceModelAssociationsResponseSuccess
574
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationConfiguredAudienceModelAssociationsOutput]
575
+ def collaboration_configured_audience_model_association_summaries: () -> ::Array[Types::CollaborationConfiguredAudienceModelAssociationSummary]
576
+ def next_token: () -> ::String
577
+ end
578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaboration_configured_audience_model_associations-instance_method
579
+ def list_collaboration_configured_audience_model_associations: (
580
+ collaboration_identifier: ::String,
581
+ ?next_token: ::String,
582
+ ?max_results: ::Integer
583
+ ) -> _ListCollaborationConfiguredAudienceModelAssociationsResponseSuccess
584
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationConfiguredAudienceModelAssociationsResponseSuccess
585
+
586
+ interface _ListCollaborationPrivacyBudgetTemplatesResponseSuccess
587
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationPrivacyBudgetTemplatesOutput]
588
+ def next_token: () -> ::String
589
+ def collaboration_privacy_budget_template_summaries: () -> ::Array[Types::CollaborationPrivacyBudgetTemplateSummary]
590
+ end
591
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaboration_privacy_budget_templates-instance_method
592
+ def list_collaboration_privacy_budget_templates: (
593
+ collaboration_identifier: ::String,
594
+ ?next_token: ::String,
595
+ ?max_results: ::Integer
596
+ ) -> _ListCollaborationPrivacyBudgetTemplatesResponseSuccess
597
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationPrivacyBudgetTemplatesResponseSuccess
598
+
599
+ interface _ListCollaborationPrivacyBudgetsResponseSuccess
600
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationPrivacyBudgetsOutput]
601
+ def collaboration_privacy_budget_summaries: () -> ::Array[Types::CollaborationPrivacyBudgetSummary]
602
+ def next_token: () -> ::String
603
+ end
604
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaboration_privacy_budgets-instance_method
605
+ def list_collaboration_privacy_budgets: (
606
+ collaboration_identifier: ::String,
607
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
608
+ ?max_results: ::Integer,
609
+ ?next_token: ::String
610
+ ) -> _ListCollaborationPrivacyBudgetsResponseSuccess
611
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationPrivacyBudgetsResponseSuccess
612
+
613
+ interface _ListCollaborationsResponseSuccess
614
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationsOutput]
615
+ def next_token: () -> ::String
616
+ def collaboration_list: () -> ::Array[Types::CollaborationSummary]
617
+ end
618
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaborations-instance_method
619
+ def list_collaborations: (
620
+ ?next_token: ::String,
621
+ ?max_results: ::Integer,
622
+ ?member_status: ("INVITED" | "ACTIVE")
623
+ ) -> _ListCollaborationsResponseSuccess
624
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationsResponseSuccess
625
+
626
+ interface _ListConfiguredAudienceModelAssociationsResponseSuccess
627
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredAudienceModelAssociationsOutput]
628
+ def configured_audience_model_association_summaries: () -> ::Array[Types::ConfiguredAudienceModelAssociationSummary]
629
+ def next_token: () -> ::String
630
+ end
631
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_configured_audience_model_associations-instance_method
632
+ def list_configured_audience_model_associations: (
633
+ membership_identifier: ::String,
634
+ ?next_token: ::String,
635
+ ?max_results: ::Integer
636
+ ) -> _ListConfiguredAudienceModelAssociationsResponseSuccess
637
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredAudienceModelAssociationsResponseSuccess
638
+
639
+ interface _ListConfiguredTableAssociationsResponseSuccess
640
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredTableAssociationsOutput]
641
+ def configured_table_association_summaries: () -> ::Array[Types::ConfiguredTableAssociationSummary]
642
+ def next_token: () -> ::String
643
+ end
644
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_configured_table_associations-instance_method
645
+ def list_configured_table_associations: (
646
+ membership_identifier: ::String,
647
+ ?next_token: ::String,
648
+ ?max_results: ::Integer
649
+ ) -> _ListConfiguredTableAssociationsResponseSuccess
650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredTableAssociationsResponseSuccess
651
+
652
+ interface _ListConfiguredTablesResponseSuccess
653
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredTablesOutput]
654
+ def configured_table_summaries: () -> ::Array[Types::ConfiguredTableSummary]
655
+ def next_token: () -> ::String
656
+ end
657
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_configured_tables-instance_method
658
+ def list_configured_tables: (
659
+ ?next_token: ::String,
660
+ ?max_results: ::Integer
661
+ ) -> _ListConfiguredTablesResponseSuccess
662
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredTablesResponseSuccess
663
+
664
+ interface _ListMembersResponseSuccess
665
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMembersOutput]
666
+ def next_token: () -> ::String
667
+ def member_summaries: () -> ::Array[Types::MemberSummary]
668
+ end
669
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_members-instance_method
670
+ def list_members: (
671
+ collaboration_identifier: ::String,
672
+ ?next_token: ::String,
673
+ ?max_results: ::Integer
674
+ ) -> _ListMembersResponseSuccess
675
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMembersResponseSuccess
676
+
677
+ interface _ListMembershipsResponseSuccess
678
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMembershipsOutput]
679
+ def next_token: () -> ::String
680
+ def membership_summaries: () -> ::Array[Types::MembershipSummary]
681
+ end
682
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_memberships-instance_method
683
+ def list_memberships: (
684
+ ?next_token: ::String,
685
+ ?max_results: ::Integer,
686
+ ?status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
687
+ ) -> _ListMembershipsResponseSuccess
688
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMembershipsResponseSuccess
689
+
690
+ interface _ListPrivacyBudgetTemplatesResponseSuccess
691
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPrivacyBudgetTemplatesOutput]
692
+ def next_token: () -> ::String
693
+ def privacy_budget_template_summaries: () -> ::Array[Types::PrivacyBudgetTemplateSummary]
694
+ end
695
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_privacy_budget_templates-instance_method
696
+ def list_privacy_budget_templates: (
697
+ membership_identifier: ::String,
698
+ ?next_token: ::String,
699
+ ?max_results: ::Integer
700
+ ) -> _ListPrivacyBudgetTemplatesResponseSuccess
701
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPrivacyBudgetTemplatesResponseSuccess
702
+
703
+ interface _ListPrivacyBudgetsResponseSuccess
704
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPrivacyBudgetsOutput]
705
+ def privacy_budget_summaries: () -> ::Array[Types::PrivacyBudgetSummary]
706
+ def next_token: () -> ::String
707
+ end
708
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_privacy_budgets-instance_method
709
+ def list_privacy_budgets: (
710
+ membership_identifier: ::String,
711
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
712
+ ?next_token: ::String,
713
+ ?max_results: ::Integer
714
+ ) -> _ListPrivacyBudgetsResponseSuccess
715
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPrivacyBudgetsResponseSuccess
716
+
717
+ interface _ListProtectedQueriesResponseSuccess
718
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProtectedQueriesOutput]
719
+ def next_token: () -> ::String
720
+ def protected_queries: () -> ::Array[Types::ProtectedQuerySummary]
721
+ end
722
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_protected_queries-instance_method
723
+ def list_protected_queries: (
724
+ membership_identifier: ::String,
725
+ ?status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT"),
726
+ ?next_token: ::String,
727
+ ?max_results: ::Integer
728
+ ) -> _ListProtectedQueriesResponseSuccess
729
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProtectedQueriesResponseSuccess
730
+
731
+ interface _ListSchemasResponseSuccess
732
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSchemasOutput]
733
+ def schema_summaries: () -> ::Array[Types::SchemaSummary]
734
+ def next_token: () -> ::String
735
+ end
736
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_schemas-instance_method
737
+ def list_schemas: (
738
+ collaboration_identifier: ::String,
739
+ ?schema_type: ("TABLE"),
740
+ ?next_token: ::String,
741
+ ?max_results: ::Integer
742
+ ) -> _ListSchemasResponseSuccess
743
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchemasResponseSuccess
744
+
745
+ interface _ListTagsForResourceResponseSuccess
746
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
747
+ def tags: () -> ::Hash[::String, ::String]
748
+ end
749
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_tags_for_resource-instance_method
750
+ def list_tags_for_resource: (
751
+ resource_arn: ::String
752
+ ) -> _ListTagsForResourceResponseSuccess
753
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
754
+
755
+ interface _PreviewPrivacyImpactResponseSuccess
756
+ include ::Seahorse::Client::_ResponseSuccess[Types::PreviewPrivacyImpactOutput]
757
+ def privacy_impact: () -> Types::PrivacyImpact
758
+ end
759
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#preview_privacy_impact-instance_method
760
+ def preview_privacy_impact: (
761
+ membership_identifier: ::String,
762
+ parameters: {
763
+ differential_privacy: {
764
+ epsilon: ::Integer,
765
+ users_noise_per_query: ::Integer
766
+ }?
767
+ }
768
+ ) -> _PreviewPrivacyImpactResponseSuccess
769
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PreviewPrivacyImpactResponseSuccess
770
+
771
+ interface _StartProtectedQueryResponseSuccess
772
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartProtectedQueryOutput]
773
+ def protected_query: () -> Types::ProtectedQuery
774
+ end
775
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#start_protected_query-instance_method
776
+ def start_protected_query: (
777
+ type: ("SQL"),
778
+ membership_identifier: ::String,
779
+ sql_parameters: {
780
+ query_string: ::String?,
781
+ analysis_template_arn: ::String?,
782
+ parameters: Hash[::String, ::String]?
783
+ },
784
+ ?result_configuration: {
785
+ output_configuration: {
786
+ s3: {
787
+ result_format: ("CSV" | "PARQUET"),
788
+ bucket: ::String,
789
+ key_prefix: ::String?
790
+ }?
791
+ }
792
+ }
793
+ ) -> _StartProtectedQueryResponseSuccess
794
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedQueryResponseSuccess
795
+
796
+ interface _TagResourceResponseSuccess
797
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
798
+ end
799
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#tag_resource-instance_method
800
+ def tag_resource: (
801
+ resource_arn: ::String,
802
+ tags: Hash[::String, ::String]
803
+ ) -> _TagResourceResponseSuccess
804
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
805
+
806
+ interface _UntagResourceResponseSuccess
807
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
808
+ end
809
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#untag_resource-instance_method
810
+ def untag_resource: (
811
+ resource_arn: ::String,
812
+ tag_keys: Array[::String]
813
+ ) -> _UntagResourceResponseSuccess
814
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
815
+
816
+ interface _UpdateAnalysisTemplateResponseSuccess
817
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnalysisTemplateOutput]
818
+ def analysis_template: () -> Types::AnalysisTemplate
819
+ end
820
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_analysis_template-instance_method
821
+ def update_analysis_template: (
822
+ membership_identifier: ::String,
823
+ analysis_template_identifier: ::String,
824
+ ?description: ::String
825
+ ) -> _UpdateAnalysisTemplateResponseSuccess
826
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnalysisTemplateResponseSuccess
827
+
828
+ interface _UpdateCollaborationResponseSuccess
829
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCollaborationOutput]
830
+ def collaboration: () -> Types::Collaboration
831
+ end
832
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_collaboration-instance_method
833
+ def update_collaboration: (
834
+ collaboration_identifier: ::String,
835
+ ?name: ::String,
836
+ ?description: ::String
837
+ ) -> _UpdateCollaborationResponseSuccess
838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationResponseSuccess
839
+
840
+ interface _UpdateConfiguredAudienceModelAssociationResponseSuccess
841
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredAudienceModelAssociationOutput]
842
+ def configured_audience_model_association: () -> Types::ConfiguredAudienceModelAssociation
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_configured_audience_model_association-instance_method
845
+ def update_configured_audience_model_association: (
846
+ configured_audience_model_association_identifier: ::String,
847
+ membership_identifier: ::String,
848
+ ?description: ::String,
849
+ ?name: ::String
850
+ ) -> _UpdateConfiguredAudienceModelAssociationResponseSuccess
851
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredAudienceModelAssociationResponseSuccess
852
+
853
+ interface _UpdateConfiguredTableResponseSuccess
854
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredTableOutput]
855
+ def configured_table: () -> Types::ConfiguredTable
856
+ end
857
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_configured_table-instance_method
858
+ def update_configured_table: (
859
+ configured_table_identifier: ::String,
860
+ ?name: ::String,
861
+ ?description: ::String
862
+ ) -> _UpdateConfiguredTableResponseSuccess
863
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableResponseSuccess
864
+
865
+ interface _UpdateConfiguredTableAnalysisRuleResponseSuccess
866
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredTableAnalysisRuleOutput]
867
+ def analysis_rule: () -> Types::ConfiguredTableAnalysisRule
868
+ end
869
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_configured_table_analysis_rule-instance_method
870
+ def update_configured_table_analysis_rule: (
871
+ configured_table_identifier: ::String,
872
+ analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM"),
873
+ analysis_rule_policy: {
874
+ v1: {
875
+ list: {
876
+ join_columns: Array[::String],
877
+ allowed_join_operators: Array[("OR" | "AND")]?,
878
+ list_columns: Array[::String]
879
+ }?,
880
+ aggregation: {
881
+ aggregate_columns: Array[
882
+ {
883
+ column_names: Array[::String],
884
+ function: ("SUM" | "SUM_DISTINCT" | "COUNT" | "COUNT_DISTINCT" | "AVG")
885
+ },
886
+ ],
887
+ join_columns: Array[::String],
888
+ join_required: ("QUERY_RUNNER")?,
889
+ allowed_join_operators: Array[("OR" | "AND")]?,
890
+ dimension_columns: Array[::String],
891
+ scalar_functions: Array[("TRUNC" | "ABS" | "CEILING" | "FLOOR" | "LN" | "LOG" | "ROUND" | "SQRT" | "CAST" | "LOWER" | "RTRIM" | "UPPER" | "COALESCE")],
892
+ output_constraints: Array[
893
+ {
894
+ column_name: ::String,
895
+ minimum: ::Integer,
896
+ type: ("COUNT_DISTINCT")
897
+ },
898
+ ]
899
+ }?,
900
+ custom: {
901
+ allowed_analyses: Array[::String],
902
+ allowed_analysis_providers: Array[::String]?,
903
+ differential_privacy: {
904
+ columns: Array[
905
+ {
906
+ name: ::String
907
+ },
908
+ ]
909
+ }?
910
+ }?
911
+ }?
912
+ }
913
+ ) -> _UpdateConfiguredTableAnalysisRuleResponseSuccess
914
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableAnalysisRuleResponseSuccess
915
+
916
+ interface _UpdateConfiguredTableAssociationResponseSuccess
917
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredTableAssociationOutput]
918
+ def configured_table_association: () -> Types::ConfiguredTableAssociation
919
+ end
920
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_configured_table_association-instance_method
921
+ def update_configured_table_association: (
922
+ configured_table_association_identifier: ::String,
923
+ membership_identifier: ::String,
924
+ ?description: ::String,
925
+ ?role_arn: ::String
926
+ ) -> _UpdateConfiguredTableAssociationResponseSuccess
927
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableAssociationResponseSuccess
928
+
929
+ interface _UpdateMembershipResponseSuccess
930
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMembershipOutput]
931
+ def membership: () -> Types::Membership
932
+ end
933
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_membership-instance_method
934
+ def update_membership: (
935
+ membership_identifier: ::String,
936
+ ?query_log_status: ("ENABLED" | "DISABLED"),
937
+ ?default_result_configuration: {
938
+ output_configuration: {
939
+ s3: {
940
+ result_format: ("CSV" | "PARQUET"),
941
+ bucket: ::String,
942
+ key_prefix: ::String?
943
+ }?
944
+ },
945
+ role_arn: ::String?
946
+ }
947
+ ) -> _UpdateMembershipResponseSuccess
948
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMembershipResponseSuccess
949
+
950
+ interface _UpdatePrivacyBudgetTemplateResponseSuccess
951
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePrivacyBudgetTemplateOutput]
952
+ def privacy_budget_template: () -> Types::PrivacyBudgetTemplate
953
+ end
954
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_privacy_budget_template-instance_method
955
+ def update_privacy_budget_template: (
956
+ membership_identifier: ::String,
957
+ privacy_budget_template_identifier: ::String,
958
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
959
+ ?parameters: {
960
+ differential_privacy: {
961
+ epsilon: ::Integer?,
962
+ users_noise_per_query: ::Integer?
963
+ }?
964
+ }
965
+ ) -> _UpdatePrivacyBudgetTemplateResponseSuccess
966
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePrivacyBudgetTemplateResponseSuccess
967
+
968
+ interface _UpdateProtectedQueryResponseSuccess
969
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProtectedQueryOutput]
970
+ def protected_query: () -> Types::ProtectedQuery
971
+ end
972
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_protected_query-instance_method
973
+ def update_protected_query: (
974
+ membership_identifier: ::String,
975
+ protected_query_identifier: ::String,
976
+ target_status: ("CANCELLED")
977
+ ) -> _UpdateProtectedQueryResponseSuccess
978
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProtectedQueryResponseSuccess
979
+ end
980
+ end
981
+ end
982
+