aws-sdk-cleanrooms 1.15.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +1 -1
- data/lib/aws-sdk-cleanrooms/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +982 -0
- data/sig/errors.rbs +47 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1617 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1617 @@
|
|
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::CleanRooms
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
attr_accessor reason: ("INSUFFICIENT_PERMISSIONS")
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AggregateColumn
|
18
|
+
attr_accessor column_names: ::Array[::String]
|
19
|
+
attr_accessor function: ("SUM" | "SUM_DISTINCT" | "COUNT" | "COUNT_DISTINCT" | "AVG")
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AggregationConstraint
|
24
|
+
attr_accessor column_name: ::String
|
25
|
+
attr_accessor minimum: ::Integer
|
26
|
+
attr_accessor type: ("COUNT_DISTINCT")
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class AnalysisParameter
|
31
|
+
attr_accessor name: ::String
|
32
|
+
attr_accessor type: ("SMALLINT" | "INTEGER" | "BIGINT" | "DECIMAL" | "REAL" | "DOUBLE_PRECISION" | "BOOLEAN" | "CHAR" | "VARCHAR" | "DATE" | "TIMESTAMP" | "TIMESTAMPTZ" | "TIME" | "TIMETZ" | "VARBYTE")
|
33
|
+
attr_accessor default_value: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class AnalysisRule
|
38
|
+
attr_accessor collaboration_id: ::String
|
39
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
40
|
+
attr_accessor name: ::String
|
41
|
+
attr_accessor create_time: ::Time
|
42
|
+
attr_accessor update_time: ::Time
|
43
|
+
attr_accessor policy: Types::AnalysisRulePolicy
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class AnalysisRuleAggregation
|
48
|
+
attr_accessor aggregate_columns: ::Array[Types::AggregateColumn]
|
49
|
+
attr_accessor join_columns: ::Array[::String]
|
50
|
+
attr_accessor join_required: ("QUERY_RUNNER")
|
51
|
+
attr_accessor allowed_join_operators: ::Array[("OR" | "AND")]
|
52
|
+
attr_accessor dimension_columns: ::Array[::String]
|
53
|
+
attr_accessor scalar_functions: ::Array[("TRUNC" | "ABS" | "CEILING" | "FLOOR" | "LN" | "LOG" | "ROUND" | "SQRT" | "CAST" | "LOWER" | "RTRIM" | "UPPER" | "COALESCE")]
|
54
|
+
attr_accessor output_constraints: ::Array[Types::AggregationConstraint]
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class AnalysisRuleCustom
|
59
|
+
attr_accessor allowed_analyses: ::Array[::String]
|
60
|
+
attr_accessor allowed_analysis_providers: ::Array[::String]
|
61
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyConfiguration
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class AnalysisRuleList
|
66
|
+
attr_accessor join_columns: ::Array[::String]
|
67
|
+
attr_accessor allowed_join_operators: ::Array[("OR" | "AND")]
|
68
|
+
attr_accessor list_columns: ::Array[::String]
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class AnalysisRulePolicy
|
73
|
+
attr_accessor v1: Types::AnalysisRulePolicyV1
|
74
|
+
attr_accessor unknown: untyped
|
75
|
+
SENSITIVE: []
|
76
|
+
|
77
|
+
class V1 < AnalysisRulePolicy
|
78
|
+
end
|
79
|
+
class Unknown < AnalysisRulePolicy
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
class AnalysisRulePolicyV1
|
84
|
+
attr_accessor list: Types::AnalysisRuleList
|
85
|
+
attr_accessor aggregation: Types::AnalysisRuleAggregation
|
86
|
+
attr_accessor custom: Types::AnalysisRuleCustom
|
87
|
+
attr_accessor unknown: untyped
|
88
|
+
SENSITIVE: []
|
89
|
+
|
90
|
+
class List < AnalysisRulePolicyV1
|
91
|
+
end
|
92
|
+
class Aggregation < AnalysisRulePolicyV1
|
93
|
+
end
|
94
|
+
class Custom < AnalysisRulePolicyV1
|
95
|
+
end
|
96
|
+
class Unknown < AnalysisRulePolicyV1
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
class AnalysisSchema
|
101
|
+
attr_accessor referenced_tables: ::Array[::String]
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class AnalysisSource
|
106
|
+
attr_accessor text: ::String
|
107
|
+
attr_accessor unknown: untyped
|
108
|
+
SENSITIVE: []
|
109
|
+
|
110
|
+
class Text < AnalysisSource
|
111
|
+
end
|
112
|
+
class Unknown < AnalysisSource
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
class AnalysisTemplate
|
117
|
+
attr_accessor id: ::String
|
118
|
+
attr_accessor arn: ::String
|
119
|
+
attr_accessor collaboration_id: ::String
|
120
|
+
attr_accessor collaboration_arn: ::String
|
121
|
+
attr_accessor membership_id: ::String
|
122
|
+
attr_accessor membership_arn: ::String
|
123
|
+
attr_accessor description: ::String
|
124
|
+
attr_accessor name: ::String
|
125
|
+
attr_accessor create_time: ::Time
|
126
|
+
attr_accessor update_time: ::Time
|
127
|
+
attr_accessor schema: Types::AnalysisSchema
|
128
|
+
attr_accessor format: ("SQL")
|
129
|
+
attr_accessor source: Types::AnalysisSource
|
130
|
+
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
131
|
+
SENSITIVE: [:source]
|
132
|
+
end
|
133
|
+
|
134
|
+
class AnalysisTemplateSummary
|
135
|
+
attr_accessor arn: ::String
|
136
|
+
attr_accessor create_time: ::Time
|
137
|
+
attr_accessor id: ::String
|
138
|
+
attr_accessor name: ::String
|
139
|
+
attr_accessor update_time: ::Time
|
140
|
+
attr_accessor membership_arn: ::String
|
141
|
+
attr_accessor membership_id: ::String
|
142
|
+
attr_accessor collaboration_arn: ::String
|
143
|
+
attr_accessor collaboration_id: ::String
|
144
|
+
attr_accessor description: ::String
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class BatchGetCollaborationAnalysisTemplateError
|
149
|
+
attr_accessor arn: ::String
|
150
|
+
attr_accessor code: ::String
|
151
|
+
attr_accessor message: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class BatchGetCollaborationAnalysisTemplateInput
|
156
|
+
attr_accessor collaboration_identifier: ::String
|
157
|
+
attr_accessor analysis_template_arns: ::Array[::String]
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class BatchGetCollaborationAnalysisTemplateOutput
|
162
|
+
attr_accessor collaboration_analysis_templates: ::Array[Types::CollaborationAnalysisTemplate]
|
163
|
+
attr_accessor errors: ::Array[Types::BatchGetCollaborationAnalysisTemplateError]
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class BatchGetSchemaError
|
168
|
+
attr_accessor name: ::String
|
169
|
+
attr_accessor code: ::String
|
170
|
+
attr_accessor message: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class BatchGetSchemaInput
|
175
|
+
attr_accessor collaboration_identifier: ::String
|
176
|
+
attr_accessor names: ::Array[::String]
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class BatchGetSchemaOutput
|
181
|
+
attr_accessor schemas: ::Array[Types::Schema]
|
182
|
+
attr_accessor errors: ::Array[Types::BatchGetSchemaError]
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class Collaboration
|
187
|
+
attr_accessor id: ::String
|
188
|
+
attr_accessor arn: ::String
|
189
|
+
attr_accessor name: ::String
|
190
|
+
attr_accessor description: ::String
|
191
|
+
attr_accessor creator_account_id: ::String
|
192
|
+
attr_accessor creator_display_name: ::String
|
193
|
+
attr_accessor create_time: ::Time
|
194
|
+
attr_accessor update_time: ::Time
|
195
|
+
attr_accessor member_status: ("INVITED" | "ACTIVE" | "LEFT" | "REMOVED")
|
196
|
+
attr_accessor membership_id: ::String
|
197
|
+
attr_accessor membership_arn: ::String
|
198
|
+
attr_accessor data_encryption_metadata: Types::DataEncryptionMetadata
|
199
|
+
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class CollaborationAnalysisTemplate
|
204
|
+
attr_accessor id: ::String
|
205
|
+
attr_accessor arn: ::String
|
206
|
+
attr_accessor collaboration_id: ::String
|
207
|
+
attr_accessor collaboration_arn: ::String
|
208
|
+
attr_accessor description: ::String
|
209
|
+
attr_accessor creator_account_id: ::String
|
210
|
+
attr_accessor name: ::String
|
211
|
+
attr_accessor create_time: ::Time
|
212
|
+
attr_accessor update_time: ::Time
|
213
|
+
attr_accessor schema: Types::AnalysisSchema
|
214
|
+
attr_accessor format: ("SQL")
|
215
|
+
attr_accessor source: Types::AnalysisSource
|
216
|
+
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
217
|
+
SENSITIVE: [:source]
|
218
|
+
end
|
219
|
+
|
220
|
+
class CollaborationAnalysisTemplateSummary
|
221
|
+
attr_accessor arn: ::String
|
222
|
+
attr_accessor create_time: ::Time
|
223
|
+
attr_accessor id: ::String
|
224
|
+
attr_accessor name: ::String
|
225
|
+
attr_accessor update_time: ::Time
|
226
|
+
attr_accessor collaboration_arn: ::String
|
227
|
+
attr_accessor collaboration_id: ::String
|
228
|
+
attr_accessor creator_account_id: ::String
|
229
|
+
attr_accessor description: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class CollaborationConfiguredAudienceModelAssociation
|
234
|
+
attr_accessor id: ::String
|
235
|
+
attr_accessor arn: ::String
|
236
|
+
attr_accessor collaboration_id: ::String
|
237
|
+
attr_accessor collaboration_arn: ::String
|
238
|
+
attr_accessor configured_audience_model_arn: ::String
|
239
|
+
attr_accessor name: ::String
|
240
|
+
attr_accessor description: ::String
|
241
|
+
attr_accessor creator_account_id: ::String
|
242
|
+
attr_accessor create_time: ::Time
|
243
|
+
attr_accessor update_time: ::Time
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class CollaborationConfiguredAudienceModelAssociationSummary
|
248
|
+
attr_accessor arn: ::String
|
249
|
+
attr_accessor create_time: ::Time
|
250
|
+
attr_accessor id: ::String
|
251
|
+
attr_accessor name: ::String
|
252
|
+
attr_accessor update_time: ::Time
|
253
|
+
attr_accessor collaboration_arn: ::String
|
254
|
+
attr_accessor collaboration_id: ::String
|
255
|
+
attr_accessor creator_account_id: ::String
|
256
|
+
attr_accessor description: ::String
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class CollaborationPrivacyBudgetSummary
|
261
|
+
attr_accessor id: ::String
|
262
|
+
attr_accessor privacy_budget_template_id: ::String
|
263
|
+
attr_accessor privacy_budget_template_arn: ::String
|
264
|
+
attr_accessor collaboration_id: ::String
|
265
|
+
attr_accessor collaboration_arn: ::String
|
266
|
+
attr_accessor creator_account_id: ::String
|
267
|
+
attr_accessor type: ("DIFFERENTIAL_PRIVACY")
|
268
|
+
attr_accessor create_time: ::Time
|
269
|
+
attr_accessor update_time: ::Time
|
270
|
+
attr_accessor budget: Types::PrivacyBudget
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class CollaborationPrivacyBudgetTemplate
|
275
|
+
attr_accessor id: ::String
|
276
|
+
attr_accessor arn: ::String
|
277
|
+
attr_accessor collaboration_id: ::String
|
278
|
+
attr_accessor collaboration_arn: ::String
|
279
|
+
attr_accessor creator_account_id: ::String
|
280
|
+
attr_accessor create_time: ::Time
|
281
|
+
attr_accessor update_time: ::Time
|
282
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
283
|
+
attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
|
284
|
+
attr_accessor parameters: Types::PrivacyBudgetTemplateParametersOutput
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class CollaborationPrivacyBudgetTemplateSummary
|
289
|
+
attr_accessor id: ::String
|
290
|
+
attr_accessor arn: ::String
|
291
|
+
attr_accessor collaboration_id: ::String
|
292
|
+
attr_accessor collaboration_arn: ::String
|
293
|
+
attr_accessor creator_account_id: ::String
|
294
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
295
|
+
attr_accessor create_time: ::Time
|
296
|
+
attr_accessor update_time: ::Time
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class CollaborationSummary
|
301
|
+
attr_accessor id: ::String
|
302
|
+
attr_accessor arn: ::String
|
303
|
+
attr_accessor name: ::String
|
304
|
+
attr_accessor creator_account_id: ::String
|
305
|
+
attr_accessor creator_display_name: ::String
|
306
|
+
attr_accessor create_time: ::Time
|
307
|
+
attr_accessor update_time: ::Time
|
308
|
+
attr_accessor member_status: ("INVITED" | "ACTIVE" | "LEFT" | "REMOVED")
|
309
|
+
attr_accessor membership_id: ::String
|
310
|
+
attr_accessor membership_arn: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class Column
|
315
|
+
attr_accessor name: ::String
|
316
|
+
attr_accessor type: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class ConfiguredAudienceModelAssociation
|
321
|
+
attr_accessor id: ::String
|
322
|
+
attr_accessor arn: ::String
|
323
|
+
attr_accessor configured_audience_model_arn: ::String
|
324
|
+
attr_accessor membership_id: ::String
|
325
|
+
attr_accessor membership_arn: ::String
|
326
|
+
attr_accessor collaboration_id: ::String
|
327
|
+
attr_accessor collaboration_arn: ::String
|
328
|
+
attr_accessor name: ::String
|
329
|
+
attr_accessor manage_resource_policies: bool
|
330
|
+
attr_accessor description: ::String
|
331
|
+
attr_accessor create_time: ::Time
|
332
|
+
attr_accessor update_time: ::Time
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ConfiguredAudienceModelAssociationSummary
|
337
|
+
attr_accessor membership_id: ::String
|
338
|
+
attr_accessor membership_arn: ::String
|
339
|
+
attr_accessor collaboration_arn: ::String
|
340
|
+
attr_accessor collaboration_id: ::String
|
341
|
+
attr_accessor create_time: ::Time
|
342
|
+
attr_accessor update_time: ::Time
|
343
|
+
attr_accessor id: ::String
|
344
|
+
attr_accessor arn: ::String
|
345
|
+
attr_accessor name: ::String
|
346
|
+
attr_accessor configured_audience_model_arn: ::String
|
347
|
+
attr_accessor description: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class ConfiguredTable
|
352
|
+
attr_accessor id: ::String
|
353
|
+
attr_accessor arn: ::String
|
354
|
+
attr_accessor name: ::String
|
355
|
+
attr_accessor description: ::String
|
356
|
+
attr_accessor table_reference: Types::TableReference
|
357
|
+
attr_accessor create_time: ::Time
|
358
|
+
attr_accessor update_time: ::Time
|
359
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
360
|
+
attr_accessor analysis_method: ("DIRECT_QUERY")
|
361
|
+
attr_accessor allowed_columns: ::Array[::String]
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class ConfiguredTableAnalysisRule
|
366
|
+
attr_accessor configured_table_id: ::String
|
367
|
+
attr_accessor configured_table_arn: ::String
|
368
|
+
attr_accessor policy: Types::ConfiguredTableAnalysisRulePolicy
|
369
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
370
|
+
attr_accessor create_time: ::Time
|
371
|
+
attr_accessor update_time: ::Time
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
375
|
+
class ConfiguredTableAnalysisRulePolicy
|
376
|
+
attr_accessor v1: Types::ConfiguredTableAnalysisRulePolicyV1
|
377
|
+
attr_accessor unknown: untyped
|
378
|
+
SENSITIVE: []
|
379
|
+
|
380
|
+
class V1 < ConfiguredTableAnalysisRulePolicy
|
381
|
+
end
|
382
|
+
class Unknown < ConfiguredTableAnalysisRulePolicy
|
383
|
+
end
|
384
|
+
end
|
385
|
+
|
386
|
+
class ConfiguredTableAnalysisRulePolicyV1
|
387
|
+
attr_accessor list: Types::AnalysisRuleList
|
388
|
+
attr_accessor aggregation: Types::AnalysisRuleAggregation
|
389
|
+
attr_accessor custom: Types::AnalysisRuleCustom
|
390
|
+
attr_accessor unknown: untyped
|
391
|
+
SENSITIVE: []
|
392
|
+
|
393
|
+
class List < ConfiguredTableAnalysisRulePolicyV1
|
394
|
+
end
|
395
|
+
class Aggregation < ConfiguredTableAnalysisRulePolicyV1
|
396
|
+
end
|
397
|
+
class Custom < ConfiguredTableAnalysisRulePolicyV1
|
398
|
+
end
|
399
|
+
class Unknown < ConfiguredTableAnalysisRulePolicyV1
|
400
|
+
end
|
401
|
+
end
|
402
|
+
|
403
|
+
class ConfiguredTableAssociation
|
404
|
+
attr_accessor arn: ::String
|
405
|
+
attr_accessor id: ::String
|
406
|
+
attr_accessor configured_table_id: ::String
|
407
|
+
attr_accessor configured_table_arn: ::String
|
408
|
+
attr_accessor membership_id: ::String
|
409
|
+
attr_accessor membership_arn: ::String
|
410
|
+
attr_accessor role_arn: ::String
|
411
|
+
attr_accessor name: ::String
|
412
|
+
attr_accessor description: ::String
|
413
|
+
attr_accessor create_time: ::Time
|
414
|
+
attr_accessor update_time: ::Time
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class ConfiguredTableAssociationSummary
|
419
|
+
attr_accessor configured_table_id: ::String
|
420
|
+
attr_accessor membership_id: ::String
|
421
|
+
attr_accessor membership_arn: ::String
|
422
|
+
attr_accessor name: ::String
|
423
|
+
attr_accessor create_time: ::Time
|
424
|
+
attr_accessor update_time: ::Time
|
425
|
+
attr_accessor id: ::String
|
426
|
+
attr_accessor arn: ::String
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class ConfiguredTableSummary
|
431
|
+
attr_accessor id: ::String
|
432
|
+
attr_accessor arn: ::String
|
433
|
+
attr_accessor name: ::String
|
434
|
+
attr_accessor create_time: ::Time
|
435
|
+
attr_accessor update_time: ::Time
|
436
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
437
|
+
attr_accessor analysis_method: ("DIRECT_QUERY")
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class ConflictException
|
442
|
+
attr_accessor message: ::String
|
443
|
+
attr_accessor resource_id: ::String
|
444
|
+
attr_accessor resource_type: ("CONFIGURED_TABLE" | "COLLABORATION" | "MEMBERSHIP" | "CONFIGURED_TABLE_ASSOCIATION")
|
445
|
+
attr_accessor reason: ("ALREADY_EXISTS" | "SUBRESOURCES_EXIST" | "INVALID_STATE")
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class CreateAnalysisTemplateInput
|
450
|
+
attr_accessor description: ::String
|
451
|
+
attr_accessor membership_identifier: ::String
|
452
|
+
attr_accessor name: ::String
|
453
|
+
attr_accessor format: ("SQL")
|
454
|
+
attr_accessor source: Types::AnalysisSource
|
455
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
456
|
+
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
457
|
+
SENSITIVE: [:source]
|
458
|
+
end
|
459
|
+
|
460
|
+
class CreateAnalysisTemplateOutput
|
461
|
+
attr_accessor analysis_template: Types::AnalysisTemplate
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class CreateCollaborationInput
|
466
|
+
attr_accessor members: ::Array[Types::MemberSpecification]
|
467
|
+
attr_accessor name: ::String
|
468
|
+
attr_accessor description: ::String
|
469
|
+
attr_accessor creator_member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
470
|
+
attr_accessor creator_display_name: ::String
|
471
|
+
attr_accessor data_encryption_metadata: Types::DataEncryptionMetadata
|
472
|
+
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
473
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
474
|
+
attr_accessor creator_payment_configuration: Types::PaymentConfiguration
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class CreateCollaborationOutput
|
479
|
+
attr_accessor collaboration: Types::Collaboration
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class CreateConfiguredAudienceModelAssociationInput
|
484
|
+
attr_accessor membership_identifier: ::String
|
485
|
+
attr_accessor configured_audience_model_arn: ::String
|
486
|
+
attr_accessor configured_audience_model_association_name: ::String
|
487
|
+
attr_accessor manage_resource_policies: bool
|
488
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
489
|
+
attr_accessor description: ::String
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class CreateConfiguredAudienceModelAssociationOutput
|
494
|
+
attr_accessor configured_audience_model_association: Types::ConfiguredAudienceModelAssociation
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
498
|
+
class CreateConfiguredTableAnalysisRuleInput
|
499
|
+
attr_accessor configured_table_identifier: ::String
|
500
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
501
|
+
attr_accessor analysis_rule_policy: Types::ConfiguredTableAnalysisRulePolicy
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class CreateConfiguredTableAnalysisRuleOutput
|
506
|
+
attr_accessor analysis_rule: Types::ConfiguredTableAnalysisRule
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class CreateConfiguredTableAssociationInput
|
511
|
+
attr_accessor name: ::String
|
512
|
+
attr_accessor description: ::String
|
513
|
+
attr_accessor membership_identifier: ::String
|
514
|
+
attr_accessor configured_table_identifier: ::String
|
515
|
+
attr_accessor role_arn: ::String
|
516
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class CreateConfiguredTableAssociationOutput
|
521
|
+
attr_accessor configured_table_association: Types::ConfiguredTableAssociation
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class CreateConfiguredTableInput
|
526
|
+
attr_accessor name: ::String
|
527
|
+
attr_accessor description: ::String
|
528
|
+
attr_accessor table_reference: Types::TableReference
|
529
|
+
attr_accessor allowed_columns: ::Array[::String]
|
530
|
+
attr_accessor analysis_method: ("DIRECT_QUERY")
|
531
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
535
|
+
class CreateConfiguredTableOutput
|
536
|
+
attr_accessor configured_table: Types::ConfiguredTable
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class CreateMembershipInput
|
541
|
+
attr_accessor collaboration_identifier: ::String
|
542
|
+
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
543
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
544
|
+
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
545
|
+
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class CreateMembershipOutput
|
550
|
+
attr_accessor membership: Types::Membership
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class CreatePrivacyBudgetTemplateInput
|
555
|
+
attr_accessor membership_identifier: ::String
|
556
|
+
attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
|
557
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
558
|
+
attr_accessor parameters: Types::PrivacyBudgetTemplateParametersInput
|
559
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class CreatePrivacyBudgetTemplateOutput
|
564
|
+
attr_accessor privacy_budget_template: Types::PrivacyBudgetTemplate
|
565
|
+
SENSITIVE: []
|
566
|
+
end
|
567
|
+
|
568
|
+
class DataEncryptionMetadata
|
569
|
+
attr_accessor allow_cleartext: bool
|
570
|
+
attr_accessor allow_duplicates: bool
|
571
|
+
attr_accessor allow_joins_on_columns_with_different_names: bool
|
572
|
+
attr_accessor preserve_nulls: bool
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class DeleteAnalysisTemplateInput
|
577
|
+
attr_accessor membership_identifier: ::String
|
578
|
+
attr_accessor analysis_template_identifier: ::String
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class DeleteAnalysisTemplateOutput < Aws::EmptyStructure
|
583
|
+
end
|
584
|
+
|
585
|
+
class DeleteCollaborationInput
|
586
|
+
attr_accessor collaboration_identifier: ::String
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class DeleteCollaborationOutput < Aws::EmptyStructure
|
591
|
+
end
|
592
|
+
|
593
|
+
class DeleteConfiguredAudienceModelAssociationInput
|
594
|
+
attr_accessor configured_audience_model_association_identifier: ::String
|
595
|
+
attr_accessor membership_identifier: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class DeleteConfiguredAudienceModelAssociationOutput < Aws::EmptyStructure
|
600
|
+
end
|
601
|
+
|
602
|
+
class DeleteConfiguredTableAnalysisRuleInput
|
603
|
+
attr_accessor configured_table_identifier: ::String
|
604
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class DeleteConfiguredTableAnalysisRuleOutput < Aws::EmptyStructure
|
609
|
+
end
|
610
|
+
|
611
|
+
class DeleteConfiguredTableAssociationInput
|
612
|
+
attr_accessor configured_table_association_identifier: ::String
|
613
|
+
attr_accessor membership_identifier: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class DeleteConfiguredTableAssociationOutput < Aws::EmptyStructure
|
618
|
+
end
|
619
|
+
|
620
|
+
class DeleteConfiguredTableInput
|
621
|
+
attr_accessor configured_table_identifier: ::String
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
625
|
+
class DeleteConfiguredTableOutput < Aws::EmptyStructure
|
626
|
+
end
|
627
|
+
|
628
|
+
class DeleteMemberInput
|
629
|
+
attr_accessor collaboration_identifier: ::String
|
630
|
+
attr_accessor account_id: ::String
|
631
|
+
SENSITIVE: []
|
632
|
+
end
|
633
|
+
|
634
|
+
class DeleteMemberOutput < Aws::EmptyStructure
|
635
|
+
end
|
636
|
+
|
637
|
+
class DeleteMembershipInput
|
638
|
+
attr_accessor membership_identifier: ::String
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class DeleteMembershipOutput < Aws::EmptyStructure
|
643
|
+
end
|
644
|
+
|
645
|
+
class DeletePrivacyBudgetTemplateInput
|
646
|
+
attr_accessor membership_identifier: ::String
|
647
|
+
attr_accessor privacy_budget_template_identifier: ::String
|
648
|
+
SENSITIVE: []
|
649
|
+
end
|
650
|
+
|
651
|
+
class DeletePrivacyBudgetTemplateOutput < Aws::EmptyStructure
|
652
|
+
end
|
653
|
+
|
654
|
+
class DifferentialPrivacyColumn
|
655
|
+
attr_accessor name: ::String
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class DifferentialPrivacyConfiguration
|
660
|
+
attr_accessor columns: ::Array[Types::DifferentialPrivacyColumn]
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class DifferentialPrivacyParameters
|
665
|
+
attr_accessor sensitivity_parameters: ::Array[Types::DifferentialPrivacySensitivityParameters]
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class DifferentialPrivacyPreviewAggregation
|
670
|
+
attr_accessor type: ("AVG" | "COUNT" | "COUNT_DISTINCT" | "SUM" | "STDDEV")
|
671
|
+
attr_accessor max_count: ::Integer
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class DifferentialPrivacyPreviewParametersInput
|
676
|
+
attr_accessor epsilon: ::Integer
|
677
|
+
attr_accessor users_noise_per_query: ::Integer
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class DifferentialPrivacyPrivacyBudget
|
682
|
+
attr_accessor aggregations: ::Array[Types::DifferentialPrivacyPrivacyBudgetAggregation]
|
683
|
+
attr_accessor epsilon: ::Integer
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class DifferentialPrivacyPrivacyBudgetAggregation
|
688
|
+
attr_accessor type: ("AVG" | "COUNT" | "COUNT_DISTINCT" | "SUM" | "STDDEV")
|
689
|
+
attr_accessor max_count: ::Integer
|
690
|
+
attr_accessor remaining_count: ::Integer
|
691
|
+
SENSITIVE: []
|
692
|
+
end
|
693
|
+
|
694
|
+
class DifferentialPrivacyPrivacyImpact
|
695
|
+
attr_accessor aggregations: ::Array[Types::DifferentialPrivacyPreviewAggregation]
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class DifferentialPrivacySensitivityParameters
|
700
|
+
attr_accessor aggregation_type: ("AVG" | "COUNT" | "COUNT_DISTINCT" | "SUM" | "STDDEV")
|
701
|
+
attr_accessor aggregation_expression: ::String
|
702
|
+
attr_accessor user_contribution_limit: ::Integer
|
703
|
+
attr_accessor min_column_value: ::Float
|
704
|
+
attr_accessor max_column_value: ::Float
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class DifferentialPrivacyTemplateParametersInput
|
709
|
+
attr_accessor epsilon: ::Integer
|
710
|
+
attr_accessor users_noise_per_query: ::Integer
|
711
|
+
SENSITIVE: []
|
712
|
+
end
|
713
|
+
|
714
|
+
class DifferentialPrivacyTemplateParametersOutput
|
715
|
+
attr_accessor epsilon: ::Integer
|
716
|
+
attr_accessor users_noise_per_query: ::Integer
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class DifferentialPrivacyTemplateUpdateParameters
|
721
|
+
attr_accessor epsilon: ::Integer
|
722
|
+
attr_accessor users_noise_per_query: ::Integer
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class GetAnalysisTemplateInput
|
727
|
+
attr_accessor membership_identifier: ::String
|
728
|
+
attr_accessor analysis_template_identifier: ::String
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class GetAnalysisTemplateOutput
|
733
|
+
attr_accessor analysis_template: Types::AnalysisTemplate
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class GetCollaborationAnalysisTemplateInput
|
738
|
+
attr_accessor collaboration_identifier: ::String
|
739
|
+
attr_accessor analysis_template_arn: ::String
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class GetCollaborationAnalysisTemplateOutput
|
744
|
+
attr_accessor collaboration_analysis_template: Types::CollaborationAnalysisTemplate
|
745
|
+
SENSITIVE: []
|
746
|
+
end
|
747
|
+
|
748
|
+
class GetCollaborationConfiguredAudienceModelAssociationInput
|
749
|
+
attr_accessor collaboration_identifier: ::String
|
750
|
+
attr_accessor configured_audience_model_association_identifier: ::String
|
751
|
+
SENSITIVE: []
|
752
|
+
end
|
753
|
+
|
754
|
+
class GetCollaborationConfiguredAudienceModelAssociationOutput
|
755
|
+
attr_accessor collaboration_configured_audience_model_association: Types::CollaborationConfiguredAudienceModelAssociation
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class GetCollaborationInput
|
760
|
+
attr_accessor collaboration_identifier: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class GetCollaborationOutput
|
765
|
+
attr_accessor collaboration: Types::Collaboration
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class GetCollaborationPrivacyBudgetTemplateInput
|
770
|
+
attr_accessor collaboration_identifier: ::String
|
771
|
+
attr_accessor privacy_budget_template_identifier: ::String
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class GetCollaborationPrivacyBudgetTemplateOutput
|
776
|
+
attr_accessor collaboration_privacy_budget_template: Types::CollaborationPrivacyBudgetTemplate
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
780
|
+
class GetConfiguredAudienceModelAssociationInput
|
781
|
+
attr_accessor configured_audience_model_association_identifier: ::String
|
782
|
+
attr_accessor membership_identifier: ::String
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class GetConfiguredAudienceModelAssociationOutput
|
787
|
+
attr_accessor configured_audience_model_association: Types::ConfiguredAudienceModelAssociation
|
788
|
+
SENSITIVE: []
|
789
|
+
end
|
790
|
+
|
791
|
+
class GetConfiguredTableAnalysisRuleInput
|
792
|
+
attr_accessor configured_table_identifier: ::String
|
793
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class GetConfiguredTableAnalysisRuleOutput
|
798
|
+
attr_accessor analysis_rule: Types::ConfiguredTableAnalysisRule
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class GetConfiguredTableAssociationInput
|
803
|
+
attr_accessor configured_table_association_identifier: ::String
|
804
|
+
attr_accessor membership_identifier: ::String
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class GetConfiguredTableAssociationOutput
|
809
|
+
attr_accessor configured_table_association: Types::ConfiguredTableAssociation
|
810
|
+
SENSITIVE: []
|
811
|
+
end
|
812
|
+
|
813
|
+
class GetConfiguredTableInput
|
814
|
+
attr_accessor configured_table_identifier: ::String
|
815
|
+
SENSITIVE: []
|
816
|
+
end
|
817
|
+
|
818
|
+
class GetConfiguredTableOutput
|
819
|
+
attr_accessor configured_table: Types::ConfiguredTable
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class GetMembershipInput
|
824
|
+
attr_accessor membership_identifier: ::String
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class GetMembershipOutput
|
829
|
+
attr_accessor membership: Types::Membership
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class GetPrivacyBudgetTemplateInput
|
834
|
+
attr_accessor membership_identifier: ::String
|
835
|
+
attr_accessor privacy_budget_template_identifier: ::String
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class GetPrivacyBudgetTemplateOutput
|
840
|
+
attr_accessor privacy_budget_template: Types::PrivacyBudgetTemplate
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class GetProtectedQueryInput
|
845
|
+
attr_accessor membership_identifier: ::String
|
846
|
+
attr_accessor protected_query_identifier: ::String
|
847
|
+
SENSITIVE: []
|
848
|
+
end
|
849
|
+
|
850
|
+
class GetProtectedQueryOutput
|
851
|
+
attr_accessor protected_query: Types::ProtectedQuery
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
855
|
+
class GetSchemaAnalysisRuleInput
|
856
|
+
attr_accessor collaboration_identifier: ::String
|
857
|
+
attr_accessor name: ::String
|
858
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class GetSchemaAnalysisRuleOutput
|
863
|
+
attr_accessor analysis_rule: Types::AnalysisRule
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class GetSchemaInput
|
868
|
+
attr_accessor collaboration_identifier: ::String
|
869
|
+
attr_accessor name: ::String
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class GetSchemaOutput
|
874
|
+
attr_accessor schema: Types::Schema
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class GlueTableReference
|
879
|
+
attr_accessor table_name: ::String
|
880
|
+
attr_accessor database_name: ::String
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class InternalServerException
|
885
|
+
attr_accessor message: ::String
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class ListAnalysisTemplatesInput
|
890
|
+
attr_accessor membership_identifier: ::String
|
891
|
+
attr_accessor next_token: ::String
|
892
|
+
attr_accessor max_results: ::Integer
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
896
|
+
class ListAnalysisTemplatesOutput
|
897
|
+
attr_accessor next_token: ::String
|
898
|
+
attr_accessor analysis_template_summaries: ::Array[Types::AnalysisTemplateSummary]
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class ListCollaborationAnalysisTemplatesInput
|
903
|
+
attr_accessor collaboration_identifier: ::String
|
904
|
+
attr_accessor next_token: ::String
|
905
|
+
attr_accessor max_results: ::Integer
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class ListCollaborationAnalysisTemplatesOutput
|
910
|
+
attr_accessor next_token: ::String
|
911
|
+
attr_accessor collaboration_analysis_template_summaries: ::Array[Types::CollaborationAnalysisTemplateSummary]
|
912
|
+
SENSITIVE: []
|
913
|
+
end
|
914
|
+
|
915
|
+
class ListCollaborationConfiguredAudienceModelAssociationsInput
|
916
|
+
attr_accessor collaboration_identifier: ::String
|
917
|
+
attr_accessor next_token: ::String
|
918
|
+
attr_accessor max_results: ::Integer
|
919
|
+
SENSITIVE: []
|
920
|
+
end
|
921
|
+
|
922
|
+
class ListCollaborationConfiguredAudienceModelAssociationsOutput
|
923
|
+
attr_accessor collaboration_configured_audience_model_association_summaries: ::Array[Types::CollaborationConfiguredAudienceModelAssociationSummary]
|
924
|
+
attr_accessor next_token: ::String
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class ListCollaborationPrivacyBudgetTemplatesInput
|
929
|
+
attr_accessor collaboration_identifier: ::String
|
930
|
+
attr_accessor next_token: ::String
|
931
|
+
attr_accessor max_results: ::Integer
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class ListCollaborationPrivacyBudgetTemplatesOutput
|
936
|
+
attr_accessor next_token: ::String
|
937
|
+
attr_accessor collaboration_privacy_budget_template_summaries: ::Array[Types::CollaborationPrivacyBudgetTemplateSummary]
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class ListCollaborationPrivacyBudgetsInput
|
942
|
+
attr_accessor collaboration_identifier: ::String
|
943
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
944
|
+
attr_accessor max_results: ::Integer
|
945
|
+
attr_accessor next_token: ::String
|
946
|
+
SENSITIVE: []
|
947
|
+
end
|
948
|
+
|
949
|
+
class ListCollaborationPrivacyBudgetsOutput
|
950
|
+
attr_accessor collaboration_privacy_budget_summaries: ::Array[Types::CollaborationPrivacyBudgetSummary]
|
951
|
+
attr_accessor next_token: ::String
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
955
|
+
class ListCollaborationsInput
|
956
|
+
attr_accessor next_token: ::String
|
957
|
+
attr_accessor max_results: ::Integer
|
958
|
+
attr_accessor member_status: ("INVITED" | "ACTIVE")
|
959
|
+
SENSITIVE: []
|
960
|
+
end
|
961
|
+
|
962
|
+
class ListCollaborationsOutput
|
963
|
+
attr_accessor next_token: ::String
|
964
|
+
attr_accessor collaboration_list: ::Array[Types::CollaborationSummary]
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class ListConfiguredAudienceModelAssociationsInput
|
969
|
+
attr_accessor membership_identifier: ::String
|
970
|
+
attr_accessor next_token: ::String
|
971
|
+
attr_accessor max_results: ::Integer
|
972
|
+
SENSITIVE: []
|
973
|
+
end
|
974
|
+
|
975
|
+
class ListConfiguredAudienceModelAssociationsOutput
|
976
|
+
attr_accessor configured_audience_model_association_summaries: ::Array[Types::ConfiguredAudienceModelAssociationSummary]
|
977
|
+
attr_accessor next_token: ::String
|
978
|
+
SENSITIVE: []
|
979
|
+
end
|
980
|
+
|
981
|
+
class ListConfiguredTableAssociationsInput
|
982
|
+
attr_accessor membership_identifier: ::String
|
983
|
+
attr_accessor next_token: ::String
|
984
|
+
attr_accessor max_results: ::Integer
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class ListConfiguredTableAssociationsOutput
|
989
|
+
attr_accessor configured_table_association_summaries: ::Array[Types::ConfiguredTableAssociationSummary]
|
990
|
+
attr_accessor next_token: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class ListConfiguredTablesInput
|
995
|
+
attr_accessor next_token: ::String
|
996
|
+
attr_accessor max_results: ::Integer
|
997
|
+
SENSITIVE: []
|
998
|
+
end
|
999
|
+
|
1000
|
+
class ListConfiguredTablesOutput
|
1001
|
+
attr_accessor configured_table_summaries: ::Array[Types::ConfiguredTableSummary]
|
1002
|
+
attr_accessor next_token: ::String
|
1003
|
+
SENSITIVE: []
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
class ListMembersInput
|
1007
|
+
attr_accessor collaboration_identifier: ::String
|
1008
|
+
attr_accessor next_token: ::String
|
1009
|
+
attr_accessor max_results: ::Integer
|
1010
|
+
SENSITIVE: []
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
class ListMembersOutput
|
1014
|
+
attr_accessor next_token: ::String
|
1015
|
+
attr_accessor member_summaries: ::Array[Types::MemberSummary]
|
1016
|
+
SENSITIVE: []
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
class ListMembershipsInput
|
1020
|
+
attr_accessor next_token: ::String
|
1021
|
+
attr_accessor max_results: ::Integer
|
1022
|
+
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class ListMembershipsOutput
|
1027
|
+
attr_accessor next_token: ::String
|
1028
|
+
attr_accessor membership_summaries: ::Array[Types::MembershipSummary]
|
1029
|
+
SENSITIVE: []
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
class ListPrivacyBudgetTemplatesInput
|
1033
|
+
attr_accessor membership_identifier: ::String
|
1034
|
+
attr_accessor next_token: ::String
|
1035
|
+
attr_accessor max_results: ::Integer
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class ListPrivacyBudgetTemplatesOutput
|
1040
|
+
attr_accessor next_token: ::String
|
1041
|
+
attr_accessor privacy_budget_template_summaries: ::Array[Types::PrivacyBudgetTemplateSummary]
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class ListPrivacyBudgetsInput
|
1046
|
+
attr_accessor membership_identifier: ::String
|
1047
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
1048
|
+
attr_accessor next_token: ::String
|
1049
|
+
attr_accessor max_results: ::Integer
|
1050
|
+
SENSITIVE: []
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
class ListPrivacyBudgetsOutput
|
1054
|
+
attr_accessor privacy_budget_summaries: ::Array[Types::PrivacyBudgetSummary]
|
1055
|
+
attr_accessor next_token: ::String
|
1056
|
+
SENSITIVE: []
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
class ListProtectedQueriesInput
|
1060
|
+
attr_accessor membership_identifier: ::String
|
1061
|
+
attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
|
1062
|
+
attr_accessor next_token: ::String
|
1063
|
+
attr_accessor max_results: ::Integer
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class ListProtectedQueriesOutput
|
1068
|
+
attr_accessor next_token: ::String
|
1069
|
+
attr_accessor protected_queries: ::Array[Types::ProtectedQuerySummary]
|
1070
|
+
SENSITIVE: []
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class ListSchemasInput
|
1074
|
+
attr_accessor collaboration_identifier: ::String
|
1075
|
+
attr_accessor schema_type: ("TABLE")
|
1076
|
+
attr_accessor next_token: ::String
|
1077
|
+
attr_accessor max_results: ::Integer
|
1078
|
+
SENSITIVE: []
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class ListSchemasOutput
|
1082
|
+
attr_accessor schema_summaries: ::Array[Types::SchemaSummary]
|
1083
|
+
attr_accessor next_token: ::String
|
1084
|
+
SENSITIVE: []
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class ListTagsForResourceInput
|
1088
|
+
attr_accessor resource_arn: ::String
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class ListTagsForResourceOutput
|
1093
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1094
|
+
SENSITIVE: []
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class MemberSpecification
|
1098
|
+
attr_accessor account_id: ::String
|
1099
|
+
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1100
|
+
attr_accessor display_name: ::String
|
1101
|
+
attr_accessor payment_configuration: Types::PaymentConfiguration
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class MemberSummary
|
1106
|
+
attr_accessor account_id: ::String
|
1107
|
+
attr_accessor status: ("INVITED" | "ACTIVE" | "LEFT" | "REMOVED")
|
1108
|
+
attr_accessor display_name: ::String
|
1109
|
+
attr_accessor abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1110
|
+
attr_accessor create_time: ::Time
|
1111
|
+
attr_accessor update_time: ::Time
|
1112
|
+
attr_accessor membership_id: ::String
|
1113
|
+
attr_accessor membership_arn: ::String
|
1114
|
+
attr_accessor payment_configuration: Types::PaymentConfiguration
|
1115
|
+
SENSITIVE: []
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class Membership
|
1119
|
+
attr_accessor id: ::String
|
1120
|
+
attr_accessor arn: ::String
|
1121
|
+
attr_accessor collaboration_arn: ::String
|
1122
|
+
attr_accessor collaboration_id: ::String
|
1123
|
+
attr_accessor collaboration_creator_account_id: ::String
|
1124
|
+
attr_accessor collaboration_creator_display_name: ::String
|
1125
|
+
attr_accessor collaboration_name: ::String
|
1126
|
+
attr_accessor create_time: ::Time
|
1127
|
+
attr_accessor update_time: ::Time
|
1128
|
+
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1129
|
+
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1130
|
+
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
1131
|
+
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
1132
|
+
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
1133
|
+
SENSITIVE: []
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class MembershipPaymentConfiguration
|
1137
|
+
attr_accessor query_compute: Types::MembershipQueryComputePaymentConfig
|
1138
|
+
SENSITIVE: []
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class MembershipProtectedQueryOutputConfiguration
|
1142
|
+
attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
|
1143
|
+
attr_accessor unknown: untyped
|
1144
|
+
SENSITIVE: []
|
1145
|
+
|
1146
|
+
class S3 < MembershipProtectedQueryOutputConfiguration
|
1147
|
+
end
|
1148
|
+
class Unknown < MembershipProtectedQueryOutputConfiguration
|
1149
|
+
end
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class MembershipProtectedQueryResultConfiguration
|
1153
|
+
attr_accessor output_configuration: Types::MembershipProtectedQueryOutputConfiguration
|
1154
|
+
attr_accessor role_arn: ::String
|
1155
|
+
SENSITIVE: []
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
class MembershipQueryComputePaymentConfig
|
1159
|
+
attr_accessor is_responsible: bool
|
1160
|
+
SENSITIVE: []
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
class MembershipSummary
|
1164
|
+
attr_accessor id: ::String
|
1165
|
+
attr_accessor arn: ::String
|
1166
|
+
attr_accessor collaboration_arn: ::String
|
1167
|
+
attr_accessor collaboration_id: ::String
|
1168
|
+
attr_accessor collaboration_creator_account_id: ::String
|
1169
|
+
attr_accessor collaboration_creator_display_name: ::String
|
1170
|
+
attr_accessor collaboration_name: ::String
|
1171
|
+
attr_accessor create_time: ::Time
|
1172
|
+
attr_accessor update_time: ::Time
|
1173
|
+
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1174
|
+
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1175
|
+
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
1176
|
+
SENSITIVE: []
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class PaymentConfiguration
|
1180
|
+
attr_accessor query_compute: Types::QueryComputePaymentConfig
|
1181
|
+
SENSITIVE: []
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
class PreviewPrivacyImpactInput
|
1185
|
+
attr_accessor membership_identifier: ::String
|
1186
|
+
attr_accessor parameters: Types::PreviewPrivacyImpactParametersInput
|
1187
|
+
SENSITIVE: []
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class PreviewPrivacyImpactOutput
|
1191
|
+
attr_accessor privacy_impact: Types::PrivacyImpact
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class PreviewPrivacyImpactParametersInput
|
1196
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyPreviewParametersInput
|
1197
|
+
attr_accessor unknown: untyped
|
1198
|
+
SENSITIVE: []
|
1199
|
+
|
1200
|
+
class DifferentialPrivacy < PreviewPrivacyImpactParametersInput
|
1201
|
+
end
|
1202
|
+
class Unknown < PreviewPrivacyImpactParametersInput
|
1203
|
+
end
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class PrivacyBudget
|
1207
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyPrivacyBudget
|
1208
|
+
attr_accessor unknown: untyped
|
1209
|
+
SENSITIVE: []
|
1210
|
+
|
1211
|
+
class DifferentialPrivacy < PrivacyBudget
|
1212
|
+
end
|
1213
|
+
class Unknown < PrivacyBudget
|
1214
|
+
end
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class PrivacyBudgetSummary
|
1218
|
+
attr_accessor id: ::String
|
1219
|
+
attr_accessor privacy_budget_template_id: ::String
|
1220
|
+
attr_accessor privacy_budget_template_arn: ::String
|
1221
|
+
attr_accessor membership_id: ::String
|
1222
|
+
attr_accessor membership_arn: ::String
|
1223
|
+
attr_accessor collaboration_id: ::String
|
1224
|
+
attr_accessor collaboration_arn: ::String
|
1225
|
+
attr_accessor type: ("DIFFERENTIAL_PRIVACY")
|
1226
|
+
attr_accessor create_time: ::Time
|
1227
|
+
attr_accessor update_time: ::Time
|
1228
|
+
attr_accessor budget: Types::PrivacyBudget
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class PrivacyBudgetTemplate
|
1233
|
+
attr_accessor id: ::String
|
1234
|
+
attr_accessor arn: ::String
|
1235
|
+
attr_accessor membership_id: ::String
|
1236
|
+
attr_accessor membership_arn: ::String
|
1237
|
+
attr_accessor collaboration_id: ::String
|
1238
|
+
attr_accessor collaboration_arn: ::String
|
1239
|
+
attr_accessor create_time: ::Time
|
1240
|
+
attr_accessor update_time: ::Time
|
1241
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
1242
|
+
attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
|
1243
|
+
attr_accessor parameters: Types::PrivacyBudgetTemplateParametersOutput
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class PrivacyBudgetTemplateParametersInput
|
1248
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateParametersInput
|
1249
|
+
attr_accessor unknown: untyped
|
1250
|
+
SENSITIVE: []
|
1251
|
+
|
1252
|
+
class DifferentialPrivacy < PrivacyBudgetTemplateParametersInput
|
1253
|
+
end
|
1254
|
+
class Unknown < PrivacyBudgetTemplateParametersInput
|
1255
|
+
end
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class PrivacyBudgetTemplateParametersOutput
|
1259
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateParametersOutput
|
1260
|
+
attr_accessor unknown: untyped
|
1261
|
+
SENSITIVE: []
|
1262
|
+
|
1263
|
+
class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput
|
1264
|
+
end
|
1265
|
+
class Unknown < PrivacyBudgetTemplateParametersOutput
|
1266
|
+
end
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
class PrivacyBudgetTemplateSummary
|
1270
|
+
attr_accessor id: ::String
|
1271
|
+
attr_accessor arn: ::String
|
1272
|
+
attr_accessor membership_id: ::String
|
1273
|
+
attr_accessor membership_arn: ::String
|
1274
|
+
attr_accessor collaboration_id: ::String
|
1275
|
+
attr_accessor collaboration_arn: ::String
|
1276
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
1277
|
+
attr_accessor create_time: ::Time
|
1278
|
+
attr_accessor update_time: ::Time
|
1279
|
+
SENSITIVE: []
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
class PrivacyBudgetTemplateUpdateParameters
|
1283
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateUpdateParameters
|
1284
|
+
attr_accessor unknown: untyped
|
1285
|
+
SENSITIVE: []
|
1286
|
+
|
1287
|
+
class DifferentialPrivacy < PrivacyBudgetTemplateUpdateParameters
|
1288
|
+
end
|
1289
|
+
class Unknown < PrivacyBudgetTemplateUpdateParameters
|
1290
|
+
end
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
class PrivacyImpact
|
1294
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyPrivacyImpact
|
1295
|
+
attr_accessor unknown: untyped
|
1296
|
+
SENSITIVE: []
|
1297
|
+
|
1298
|
+
class DifferentialPrivacy < PrivacyImpact
|
1299
|
+
end
|
1300
|
+
class Unknown < PrivacyImpact
|
1301
|
+
end
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class ProtectedQuery
|
1305
|
+
attr_accessor id: ::String
|
1306
|
+
attr_accessor membership_id: ::String
|
1307
|
+
attr_accessor membership_arn: ::String
|
1308
|
+
attr_accessor create_time: ::Time
|
1309
|
+
attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
|
1310
|
+
attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
|
1311
|
+
attr_accessor result_configuration: Types::ProtectedQueryResultConfiguration
|
1312
|
+
attr_accessor statistics: Types::ProtectedQueryStatistics
|
1313
|
+
attr_accessor result: Types::ProtectedQueryResult
|
1314
|
+
attr_accessor error: Types::ProtectedQueryError
|
1315
|
+
attr_accessor differential_privacy: Types::DifferentialPrivacyParameters
|
1316
|
+
SENSITIVE: [:sql_parameters]
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
class ProtectedQueryError
|
1320
|
+
attr_accessor message: ::String
|
1321
|
+
attr_accessor code: ::String
|
1322
|
+
SENSITIVE: []
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
class ProtectedQueryOutput
|
1326
|
+
attr_accessor s3: Types::ProtectedQueryS3Output
|
1327
|
+
attr_accessor member_list: ::Array[Types::ProtectedQuerySingleMemberOutput]
|
1328
|
+
attr_accessor unknown: untyped
|
1329
|
+
SENSITIVE: []
|
1330
|
+
|
1331
|
+
class S3 < ProtectedQueryOutput
|
1332
|
+
end
|
1333
|
+
class MemberList < ProtectedQueryOutput
|
1334
|
+
end
|
1335
|
+
class Unknown < ProtectedQueryOutput
|
1336
|
+
end
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
class ProtectedQueryOutputConfiguration
|
1340
|
+
attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
|
1341
|
+
attr_accessor unknown: untyped
|
1342
|
+
SENSITIVE: []
|
1343
|
+
|
1344
|
+
class S3 < ProtectedQueryOutputConfiguration
|
1345
|
+
end
|
1346
|
+
class Unknown < ProtectedQueryOutputConfiguration
|
1347
|
+
end
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class ProtectedQueryResult
|
1351
|
+
attr_accessor output: Types::ProtectedQueryOutput
|
1352
|
+
SENSITIVE: []
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
class ProtectedQueryResultConfiguration
|
1356
|
+
attr_accessor output_configuration: Types::ProtectedQueryOutputConfiguration
|
1357
|
+
SENSITIVE: []
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
class ProtectedQueryS3Output
|
1361
|
+
attr_accessor location: ::String
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class ProtectedQueryS3OutputConfiguration
|
1366
|
+
attr_accessor result_format: ("CSV" | "PARQUET")
|
1367
|
+
attr_accessor bucket: ::String
|
1368
|
+
attr_accessor key_prefix: ::String
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class ProtectedQuerySQLParameters
|
1373
|
+
attr_accessor query_string: ::String
|
1374
|
+
attr_accessor analysis_template_arn: ::String
|
1375
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class ProtectedQuerySingleMemberOutput
|
1380
|
+
attr_accessor account_id: ::String
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class ProtectedQueryStatistics
|
1385
|
+
attr_accessor total_duration_in_millis: ::Integer
|
1386
|
+
SENSITIVE: []
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class ProtectedQuerySummary
|
1390
|
+
attr_accessor id: ::String
|
1391
|
+
attr_accessor membership_id: ::String
|
1392
|
+
attr_accessor membership_arn: ::String
|
1393
|
+
attr_accessor create_time: ::Time
|
1394
|
+
attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
|
1395
|
+
SENSITIVE: []
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
class QueryComputePaymentConfig
|
1399
|
+
attr_accessor is_responsible: bool
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
class ResourceNotFoundException
|
1404
|
+
attr_accessor message: ::String
|
1405
|
+
attr_accessor resource_id: ::String
|
1406
|
+
attr_accessor resource_type: ("CONFIGURED_TABLE" | "COLLABORATION" | "MEMBERSHIP" | "CONFIGURED_TABLE_ASSOCIATION")
|
1407
|
+
SENSITIVE: []
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class Schema
|
1411
|
+
attr_accessor columns: ::Array[Types::Column]
|
1412
|
+
attr_accessor partition_keys: ::Array[Types::Column]
|
1413
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
1414
|
+
attr_accessor analysis_method: ("DIRECT_QUERY")
|
1415
|
+
attr_accessor creator_account_id: ::String
|
1416
|
+
attr_accessor name: ::String
|
1417
|
+
attr_accessor collaboration_id: ::String
|
1418
|
+
attr_accessor collaboration_arn: ::String
|
1419
|
+
attr_accessor description: ::String
|
1420
|
+
attr_accessor create_time: ::Time
|
1421
|
+
attr_accessor update_time: ::Time
|
1422
|
+
attr_accessor type: ("TABLE")
|
1423
|
+
SENSITIVE: []
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
class SchemaSummary
|
1427
|
+
attr_accessor name: ::String
|
1428
|
+
attr_accessor type: ("TABLE")
|
1429
|
+
attr_accessor creator_account_id: ::String
|
1430
|
+
attr_accessor create_time: ::Time
|
1431
|
+
attr_accessor update_time: ::Time
|
1432
|
+
attr_accessor collaboration_id: ::String
|
1433
|
+
attr_accessor collaboration_arn: ::String
|
1434
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
1435
|
+
attr_accessor analysis_method: ("DIRECT_QUERY")
|
1436
|
+
SENSITIVE: []
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
class ServiceQuotaExceededException
|
1440
|
+
attr_accessor message: ::String
|
1441
|
+
attr_accessor quota_name: ::String
|
1442
|
+
attr_accessor quota_value: ::Float
|
1443
|
+
SENSITIVE: []
|
1444
|
+
end
|
1445
|
+
|
1446
|
+
class StartProtectedQueryInput
|
1447
|
+
attr_accessor type: ("SQL")
|
1448
|
+
attr_accessor membership_identifier: ::String
|
1449
|
+
attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
|
1450
|
+
attr_accessor result_configuration: Types::ProtectedQueryResultConfiguration
|
1451
|
+
SENSITIVE: [:sql_parameters]
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
class StartProtectedQueryOutput
|
1455
|
+
attr_accessor protected_query: Types::ProtectedQuery
|
1456
|
+
SENSITIVE: []
|
1457
|
+
end
|
1458
|
+
|
1459
|
+
class TableReference
|
1460
|
+
attr_accessor glue: Types::GlueTableReference
|
1461
|
+
attr_accessor unknown: untyped
|
1462
|
+
SENSITIVE: []
|
1463
|
+
|
1464
|
+
class Glue < TableReference
|
1465
|
+
end
|
1466
|
+
class Unknown < TableReference
|
1467
|
+
end
|
1468
|
+
end
|
1469
|
+
|
1470
|
+
class TagResourceInput
|
1471
|
+
attr_accessor resource_arn: ::String
|
1472
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1473
|
+
SENSITIVE: []
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
class TagResourceOutput < Aws::EmptyStructure
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
class ThrottlingException
|
1480
|
+
attr_accessor message: ::String
|
1481
|
+
SENSITIVE: []
|
1482
|
+
end
|
1483
|
+
|
1484
|
+
class UntagResourceInput
|
1485
|
+
attr_accessor resource_arn: ::String
|
1486
|
+
attr_accessor tag_keys: ::Array[::String]
|
1487
|
+
SENSITIVE: []
|
1488
|
+
end
|
1489
|
+
|
1490
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
class UpdateAnalysisTemplateInput
|
1494
|
+
attr_accessor membership_identifier: ::String
|
1495
|
+
attr_accessor analysis_template_identifier: ::String
|
1496
|
+
attr_accessor description: ::String
|
1497
|
+
SENSITIVE: []
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
class UpdateAnalysisTemplateOutput
|
1501
|
+
attr_accessor analysis_template: Types::AnalysisTemplate
|
1502
|
+
SENSITIVE: []
|
1503
|
+
end
|
1504
|
+
|
1505
|
+
class UpdateCollaborationInput
|
1506
|
+
attr_accessor collaboration_identifier: ::String
|
1507
|
+
attr_accessor name: ::String
|
1508
|
+
attr_accessor description: ::String
|
1509
|
+
SENSITIVE: []
|
1510
|
+
end
|
1511
|
+
|
1512
|
+
class UpdateCollaborationOutput
|
1513
|
+
attr_accessor collaboration: Types::Collaboration
|
1514
|
+
SENSITIVE: []
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
class UpdateConfiguredAudienceModelAssociationInput
|
1518
|
+
attr_accessor configured_audience_model_association_identifier: ::String
|
1519
|
+
attr_accessor membership_identifier: ::String
|
1520
|
+
attr_accessor description: ::String
|
1521
|
+
attr_accessor name: ::String
|
1522
|
+
SENSITIVE: []
|
1523
|
+
end
|
1524
|
+
|
1525
|
+
class UpdateConfiguredAudienceModelAssociationOutput
|
1526
|
+
attr_accessor configured_audience_model_association: Types::ConfiguredAudienceModelAssociation
|
1527
|
+
SENSITIVE: []
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class UpdateConfiguredTableAnalysisRuleInput
|
1531
|
+
attr_accessor configured_table_identifier: ::String
|
1532
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1533
|
+
attr_accessor analysis_rule_policy: Types::ConfiguredTableAnalysisRulePolicy
|
1534
|
+
SENSITIVE: []
|
1535
|
+
end
|
1536
|
+
|
1537
|
+
class UpdateConfiguredTableAnalysisRuleOutput
|
1538
|
+
attr_accessor analysis_rule: Types::ConfiguredTableAnalysisRule
|
1539
|
+
SENSITIVE: []
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
class UpdateConfiguredTableAssociationInput
|
1543
|
+
attr_accessor configured_table_association_identifier: ::String
|
1544
|
+
attr_accessor membership_identifier: ::String
|
1545
|
+
attr_accessor description: ::String
|
1546
|
+
attr_accessor role_arn: ::String
|
1547
|
+
SENSITIVE: []
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class UpdateConfiguredTableAssociationOutput
|
1551
|
+
attr_accessor configured_table_association: Types::ConfiguredTableAssociation
|
1552
|
+
SENSITIVE: []
|
1553
|
+
end
|
1554
|
+
|
1555
|
+
class UpdateConfiguredTableInput
|
1556
|
+
attr_accessor configured_table_identifier: ::String
|
1557
|
+
attr_accessor name: ::String
|
1558
|
+
attr_accessor description: ::String
|
1559
|
+
SENSITIVE: []
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
class UpdateConfiguredTableOutput
|
1563
|
+
attr_accessor configured_table: Types::ConfiguredTable
|
1564
|
+
SENSITIVE: []
|
1565
|
+
end
|
1566
|
+
|
1567
|
+
class UpdateMembershipInput
|
1568
|
+
attr_accessor membership_identifier: ::String
|
1569
|
+
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
1570
|
+
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
1571
|
+
SENSITIVE: []
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
class UpdateMembershipOutput
|
1575
|
+
attr_accessor membership: Types::Membership
|
1576
|
+
SENSITIVE: []
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
class UpdatePrivacyBudgetTemplateInput
|
1580
|
+
attr_accessor membership_identifier: ::String
|
1581
|
+
attr_accessor privacy_budget_template_identifier: ::String
|
1582
|
+
attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
|
1583
|
+
attr_accessor parameters: Types::PrivacyBudgetTemplateUpdateParameters
|
1584
|
+
SENSITIVE: []
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
class UpdatePrivacyBudgetTemplateOutput
|
1588
|
+
attr_accessor privacy_budget_template: Types::PrivacyBudgetTemplate
|
1589
|
+
SENSITIVE: []
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
class UpdateProtectedQueryInput
|
1593
|
+
attr_accessor membership_identifier: ::String
|
1594
|
+
attr_accessor protected_query_identifier: ::String
|
1595
|
+
attr_accessor target_status: ("CANCELLED")
|
1596
|
+
SENSITIVE: []
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class UpdateProtectedQueryOutput
|
1600
|
+
attr_accessor protected_query: Types::ProtectedQuery
|
1601
|
+
SENSITIVE: []
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
class ValidationException
|
1605
|
+
attr_accessor message: ::String
|
1606
|
+
attr_accessor reason: ("FIELD_VALIDATION_FAILED" | "INVALID_CONFIGURATION" | "INVALID_QUERY" | "IAM_SYNCHRONIZATION_DELAY")
|
1607
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1608
|
+
SENSITIVE: []
|
1609
|
+
end
|
1610
|
+
|
1611
|
+
class ValidationExceptionField
|
1612
|
+
attr_accessor name: ::String
|
1613
|
+
attr_accessor message: ::String
|
1614
|
+
SENSITIVE: []
|
1615
|
+
end
|
1616
|
+
end
|
1617
|
+
end
|