aws-sdk-cleanrooms 1.25.0 → 1.27.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +992 -18
- data/lib/aws-sdk-cleanrooms/client_api.rb +698 -1
- data/lib/aws-sdk-cleanrooms/endpoints.rb +238 -0
- data/lib/aws-sdk-cleanrooms/plugins/endpoints.rb +34 -0
- data/lib/aws-sdk-cleanrooms/types.rb +1677 -24
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +267 -7
- data/sig/types.rbs +489 -11
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -36,7 +36,7 @@ module Aws::CleanRooms
|
|
36
36
|
|
37
37
|
class AnalysisRule
|
38
38
|
attr_accessor collaboration_id: ::String
|
39
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
39
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
40
40
|
attr_accessor name: ::String
|
41
41
|
attr_accessor create_time: ::Time
|
42
42
|
attr_accessor update_time: ::Time
|
@@ -52,20 +52,31 @@ module Aws::CleanRooms
|
|
52
52
|
attr_accessor dimension_columns: ::Array[::String]
|
53
53
|
attr_accessor scalar_functions: ::Array[("ABS" | "CAST" | "CEILING" | "COALESCE" | "CONVERT" | "CURRENT_DATE" | "DATEADD" | "EXTRACT" | "FLOOR" | "GETDATE" | "LN" | "LOG" | "LOWER" | "ROUND" | "RTRIM" | "SQRT" | "SUBSTRING" | "TO_CHAR" | "TO_DATE" | "TO_NUMBER" | "TO_TIMESTAMP" | "TRIM" | "TRUNC" | "UPPER")]
|
54
54
|
attr_accessor output_constraints: ::Array[Types::AggregationConstraint]
|
55
|
+
attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
|
55
56
|
SENSITIVE: []
|
56
57
|
end
|
57
58
|
|
58
59
|
class AnalysisRuleCustom
|
59
60
|
attr_accessor allowed_analyses: ::Array[::String]
|
60
61
|
attr_accessor allowed_analysis_providers: ::Array[::String]
|
62
|
+
attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
|
63
|
+
attr_accessor disallowed_output_columns: ::Array[::String]
|
61
64
|
attr_accessor differential_privacy: Types::DifferentialPrivacyConfiguration
|
62
65
|
SENSITIVE: []
|
63
66
|
end
|
64
67
|
|
68
|
+
class AnalysisRuleIdMappingTable
|
69
|
+
attr_accessor join_columns: ::Array[::String]
|
70
|
+
attr_accessor query_constraints: ::Array[Types::QueryConstraint]
|
71
|
+
attr_accessor dimension_columns: ::Array[::String]
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
65
75
|
class AnalysisRuleList
|
66
76
|
attr_accessor join_columns: ::Array[::String]
|
67
77
|
attr_accessor allowed_join_operators: ::Array[("OR" | "AND")]
|
68
78
|
attr_accessor list_columns: ::Array[::String]
|
79
|
+
attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
|
69
80
|
SENSITIVE: []
|
70
81
|
end
|
71
82
|
|
@@ -84,6 +95,7 @@ module Aws::CleanRooms
|
|
84
95
|
attr_accessor list: Types::AnalysisRuleList
|
85
96
|
attr_accessor aggregation: Types::AnalysisRuleAggregation
|
86
97
|
attr_accessor custom: Types::AnalysisRuleCustom
|
98
|
+
attr_accessor id_mapping_table: Types::AnalysisRuleIdMappingTable
|
87
99
|
attr_accessor unknown: untyped
|
88
100
|
SENSITIVE: []
|
89
101
|
|
@@ -93,6 +105,8 @@ module Aws::CleanRooms
|
|
93
105
|
end
|
94
106
|
class Custom < AnalysisRulePolicyV1
|
95
107
|
end
|
108
|
+
class IdMappingTable < AnalysisRulePolicyV1
|
109
|
+
end
|
96
110
|
class Unknown < AnalysisRulePolicyV1
|
97
111
|
end
|
98
112
|
end
|
@@ -179,7 +193,7 @@ module Aws::CleanRooms
|
|
179
193
|
|
180
194
|
class BatchGetSchemaAnalysisRuleError
|
181
195
|
attr_accessor name: ::String
|
182
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
196
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
183
197
|
attr_accessor code: ::String
|
184
198
|
attr_accessor message: ::String
|
185
199
|
SENSITIVE: []
|
@@ -291,6 +305,37 @@ module Aws::CleanRooms
|
|
291
305
|
SENSITIVE: []
|
292
306
|
end
|
293
307
|
|
308
|
+
class CollaborationIdNamespaceAssociation
|
309
|
+
attr_accessor id: ::String
|
310
|
+
attr_accessor arn: ::String
|
311
|
+
attr_accessor collaboration_id: ::String
|
312
|
+
attr_accessor collaboration_arn: ::String
|
313
|
+
attr_accessor name: ::String
|
314
|
+
attr_accessor description: ::String
|
315
|
+
attr_accessor creator_account_id: ::String
|
316
|
+
attr_accessor create_time: ::Time
|
317
|
+
attr_accessor update_time: ::Time
|
318
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
319
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferenceProperties
|
320
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class CollaborationIdNamespaceAssociationSummary
|
325
|
+
attr_accessor arn: ::String
|
326
|
+
attr_accessor create_time: ::Time
|
327
|
+
attr_accessor id: ::String
|
328
|
+
attr_accessor update_time: ::Time
|
329
|
+
attr_accessor collaboration_arn: ::String
|
330
|
+
attr_accessor collaboration_id: ::String
|
331
|
+
attr_accessor creator_account_id: ::String
|
332
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
333
|
+
attr_accessor name: ::String
|
334
|
+
attr_accessor description: ::String
|
335
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferencePropertiesSummary
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
294
339
|
class CollaborationPrivacyBudgetSummary
|
295
340
|
attr_accessor id: ::String
|
296
341
|
attr_accessor privacy_budget_template_id: ::String
|
@@ -351,6 +396,17 @@ module Aws::CleanRooms
|
|
351
396
|
SENSITIVE: []
|
352
397
|
end
|
353
398
|
|
399
|
+
class ConfigurationDetails
|
400
|
+
attr_accessor direct_analysis_configuration_details: Types::DirectAnalysisConfigurationDetails
|
401
|
+
attr_accessor unknown: untyped
|
402
|
+
SENSITIVE: []
|
403
|
+
|
404
|
+
class DirectAnalysisConfigurationDetails < ConfigurationDetails
|
405
|
+
end
|
406
|
+
class Unknown < ConfigurationDetails
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
354
410
|
class ConfiguredAudienceModelAssociation
|
355
411
|
attr_accessor id: ::String
|
356
412
|
attr_accessor arn: ::String
|
@@ -444,11 +500,69 @@ module Aws::CleanRooms
|
|
444
500
|
attr_accessor role_arn: ::String
|
445
501
|
attr_accessor name: ::String
|
446
502
|
attr_accessor description: ::String
|
503
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
504
|
+
attr_accessor create_time: ::Time
|
505
|
+
attr_accessor update_time: ::Time
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class ConfiguredTableAssociationAnalysisRule
|
510
|
+
attr_accessor membership_identifier: ::String
|
511
|
+
attr_accessor configured_table_association_id: ::String
|
512
|
+
attr_accessor configured_table_association_arn: ::String
|
513
|
+
attr_accessor policy: Types::ConfiguredTableAssociationAnalysisRulePolicy
|
514
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
447
515
|
attr_accessor create_time: ::Time
|
448
516
|
attr_accessor update_time: ::Time
|
449
517
|
SENSITIVE: []
|
450
518
|
end
|
451
519
|
|
520
|
+
class ConfiguredTableAssociationAnalysisRuleAggregation
|
521
|
+
attr_accessor allowed_result_receivers: ::Array[::String]
|
522
|
+
attr_accessor allowed_additional_analyses: ::Array[::String]
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class ConfiguredTableAssociationAnalysisRuleCustom
|
527
|
+
attr_accessor allowed_result_receivers: ::Array[::String]
|
528
|
+
attr_accessor allowed_additional_analyses: ::Array[::String]
|
529
|
+
SENSITIVE: []
|
530
|
+
end
|
531
|
+
|
532
|
+
class ConfiguredTableAssociationAnalysisRuleList
|
533
|
+
attr_accessor allowed_result_receivers: ::Array[::String]
|
534
|
+
attr_accessor allowed_additional_analyses: ::Array[::String]
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class ConfiguredTableAssociationAnalysisRulePolicy
|
539
|
+
attr_accessor v1: Types::ConfiguredTableAssociationAnalysisRulePolicyV1
|
540
|
+
attr_accessor unknown: untyped
|
541
|
+
SENSITIVE: []
|
542
|
+
|
543
|
+
class V1 < ConfiguredTableAssociationAnalysisRulePolicy
|
544
|
+
end
|
545
|
+
class Unknown < ConfiguredTableAssociationAnalysisRulePolicy
|
546
|
+
end
|
547
|
+
end
|
548
|
+
|
549
|
+
class ConfiguredTableAssociationAnalysisRulePolicyV1
|
550
|
+
attr_accessor list: Types::ConfiguredTableAssociationAnalysisRuleList
|
551
|
+
attr_accessor aggregation: Types::ConfiguredTableAssociationAnalysisRuleAggregation
|
552
|
+
attr_accessor custom: Types::ConfiguredTableAssociationAnalysisRuleCustom
|
553
|
+
attr_accessor unknown: untyped
|
554
|
+
SENSITIVE: []
|
555
|
+
|
556
|
+
class List < ConfiguredTableAssociationAnalysisRulePolicyV1
|
557
|
+
end
|
558
|
+
class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1
|
559
|
+
end
|
560
|
+
class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1
|
561
|
+
end
|
562
|
+
class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1
|
563
|
+
end
|
564
|
+
end
|
565
|
+
|
452
566
|
class ConfiguredTableAssociationSummary
|
453
567
|
attr_accessor configured_table_id: ::String
|
454
568
|
attr_accessor membership_id: ::String
|
@@ -541,6 +655,19 @@ module Aws::CleanRooms
|
|
541
655
|
SENSITIVE: []
|
542
656
|
end
|
543
657
|
|
658
|
+
class CreateConfiguredTableAssociationAnalysisRuleInput
|
659
|
+
attr_accessor membership_identifier: ::String
|
660
|
+
attr_accessor configured_table_association_identifier: ::String
|
661
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
662
|
+
attr_accessor analysis_rule_policy: Types::ConfiguredTableAssociationAnalysisRulePolicy
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class CreateConfiguredTableAssociationAnalysisRuleOutput
|
667
|
+
attr_accessor analysis_rule: Types::ConfiguredTableAssociationAnalysisRule
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
544
671
|
class CreateConfiguredTableAssociationInput
|
545
672
|
attr_accessor name: ::String
|
546
673
|
attr_accessor description: ::String
|
@@ -571,6 +698,36 @@ module Aws::CleanRooms
|
|
571
698
|
SENSITIVE: []
|
572
699
|
end
|
573
700
|
|
701
|
+
class CreateIdMappingTableInput
|
702
|
+
attr_accessor membership_identifier: ::String
|
703
|
+
attr_accessor name: ::String
|
704
|
+
attr_accessor description: ::String
|
705
|
+
attr_accessor input_reference_config: Types::IdMappingTableInputReferenceConfig
|
706
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
707
|
+
attr_accessor kms_key_arn: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class CreateIdMappingTableOutput
|
712
|
+
attr_accessor id_mapping_table: Types::IdMappingTable
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class CreateIdNamespaceAssociationInput
|
717
|
+
attr_accessor membership_identifier: ::String
|
718
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
719
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
720
|
+
attr_accessor name: ::String
|
721
|
+
attr_accessor description: ::String
|
722
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class CreateIdNamespaceAssociationOutput
|
727
|
+
attr_accessor id_namespace_association: Types::IdNamespaceAssociation
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
574
731
|
class CreateMembershipInput
|
575
732
|
attr_accessor collaboration_identifier: ::String
|
576
733
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
@@ -642,6 +799,16 @@ module Aws::CleanRooms
|
|
642
799
|
class DeleteConfiguredTableAnalysisRuleOutput < Aws::EmptyStructure
|
643
800
|
end
|
644
801
|
|
802
|
+
class DeleteConfiguredTableAssociationAnalysisRuleInput
|
803
|
+
attr_accessor membership_identifier: ::String
|
804
|
+
attr_accessor configured_table_association_identifier: ::String
|
805
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class DeleteConfiguredTableAssociationAnalysisRuleOutput < Aws::EmptyStructure
|
810
|
+
end
|
811
|
+
|
645
812
|
class DeleteConfiguredTableAssociationInput
|
646
813
|
attr_accessor configured_table_association_identifier: ::String
|
647
814
|
attr_accessor membership_identifier: ::String
|
@@ -659,6 +826,24 @@ module Aws::CleanRooms
|
|
659
826
|
class DeleteConfiguredTableOutput < Aws::EmptyStructure
|
660
827
|
end
|
661
828
|
|
829
|
+
class DeleteIdMappingTableInput
|
830
|
+
attr_accessor id_mapping_table_identifier: ::String
|
831
|
+
attr_accessor membership_identifier: ::String
|
832
|
+
SENSITIVE: []
|
833
|
+
end
|
834
|
+
|
835
|
+
class DeleteIdMappingTableOutput < Aws::EmptyStructure
|
836
|
+
end
|
837
|
+
|
838
|
+
class DeleteIdNamespaceAssociationInput
|
839
|
+
attr_accessor id_namespace_association_identifier: ::String
|
840
|
+
attr_accessor membership_identifier: ::String
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class DeleteIdNamespaceAssociationOutput < Aws::EmptyStructure
|
845
|
+
end
|
846
|
+
|
662
847
|
class DeleteMemberInput
|
663
848
|
attr_accessor collaboration_identifier: ::String
|
664
849
|
attr_accessor account_id: ::String
|
@@ -757,6 +942,11 @@ module Aws::CleanRooms
|
|
757
942
|
SENSITIVE: []
|
758
943
|
end
|
759
944
|
|
945
|
+
class DirectAnalysisConfigurationDetails
|
946
|
+
attr_accessor receiver_account_ids: ::Array[::String]
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
760
950
|
class GetAnalysisTemplateInput
|
761
951
|
attr_accessor membership_identifier: ::String
|
762
952
|
attr_accessor analysis_template_identifier: ::String
|
@@ -790,6 +980,17 @@ module Aws::CleanRooms
|
|
790
980
|
SENSITIVE: []
|
791
981
|
end
|
792
982
|
|
983
|
+
class GetCollaborationIdNamespaceAssociationInput
|
984
|
+
attr_accessor collaboration_identifier: ::String
|
985
|
+
attr_accessor id_namespace_association_identifier: ::String
|
986
|
+
SENSITIVE: []
|
987
|
+
end
|
988
|
+
|
989
|
+
class GetCollaborationIdNamespaceAssociationOutput
|
990
|
+
attr_accessor collaboration_id_namespace_association: Types::CollaborationIdNamespaceAssociation
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
793
994
|
class GetCollaborationInput
|
794
995
|
attr_accessor collaboration_identifier: ::String
|
795
996
|
SENSITIVE: []
|
@@ -833,6 +1034,18 @@ module Aws::CleanRooms
|
|
833
1034
|
SENSITIVE: []
|
834
1035
|
end
|
835
1036
|
|
1037
|
+
class GetConfiguredTableAssociationAnalysisRuleInput
|
1038
|
+
attr_accessor membership_identifier: ::String
|
1039
|
+
attr_accessor configured_table_association_identifier: ::String
|
1040
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class GetConfiguredTableAssociationAnalysisRuleOutput
|
1045
|
+
attr_accessor analysis_rule: Types::ConfiguredTableAssociationAnalysisRule
|
1046
|
+
SENSITIVE: []
|
1047
|
+
end
|
1048
|
+
|
836
1049
|
class GetConfiguredTableAssociationInput
|
837
1050
|
attr_accessor configured_table_association_identifier: ::String
|
838
1051
|
attr_accessor membership_identifier: ::String
|
@@ -854,6 +1067,28 @@ module Aws::CleanRooms
|
|
854
1067
|
SENSITIVE: []
|
855
1068
|
end
|
856
1069
|
|
1070
|
+
class GetIdMappingTableInput
|
1071
|
+
attr_accessor id_mapping_table_identifier: ::String
|
1072
|
+
attr_accessor membership_identifier: ::String
|
1073
|
+
SENSITIVE: []
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
class GetIdMappingTableOutput
|
1077
|
+
attr_accessor id_mapping_table: Types::IdMappingTable
|
1078
|
+
SENSITIVE: []
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class GetIdNamespaceAssociationInput
|
1082
|
+
attr_accessor id_namespace_association_identifier: ::String
|
1083
|
+
attr_accessor membership_identifier: ::String
|
1084
|
+
SENSITIVE: []
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class GetIdNamespaceAssociationOutput
|
1088
|
+
attr_accessor id_namespace_association: Types::IdNamespaceAssociation
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
857
1092
|
class GetMembershipInput
|
858
1093
|
attr_accessor membership_identifier: ::String
|
859
1094
|
SENSITIVE: []
|
@@ -889,7 +1124,7 @@ module Aws::CleanRooms
|
|
889
1124
|
class GetSchemaAnalysisRuleInput
|
890
1125
|
attr_accessor collaboration_identifier: ::String
|
891
1126
|
attr_accessor name: ::String
|
892
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1127
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
893
1128
|
SENSITIVE: []
|
894
1129
|
end
|
895
1130
|
|
@@ -915,6 +1150,115 @@ module Aws::CleanRooms
|
|
915
1150
|
SENSITIVE: []
|
916
1151
|
end
|
917
1152
|
|
1153
|
+
class IdMappingConfig
|
1154
|
+
attr_accessor allow_use_as_dimension_column: bool
|
1155
|
+
SENSITIVE: []
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
class IdMappingTable
|
1159
|
+
attr_accessor id: ::String
|
1160
|
+
attr_accessor arn: ::String
|
1161
|
+
attr_accessor input_reference_config: Types::IdMappingTableInputReferenceConfig
|
1162
|
+
attr_accessor membership_id: ::String
|
1163
|
+
attr_accessor membership_arn: ::String
|
1164
|
+
attr_accessor collaboration_id: ::String
|
1165
|
+
attr_accessor collaboration_arn: ::String
|
1166
|
+
attr_accessor description: ::String
|
1167
|
+
attr_accessor name: ::String
|
1168
|
+
attr_accessor create_time: ::Time
|
1169
|
+
attr_accessor update_time: ::Time
|
1170
|
+
attr_accessor input_reference_properties: Types::IdMappingTableInputReferenceProperties
|
1171
|
+
attr_accessor kms_key_arn: ::String
|
1172
|
+
SENSITIVE: []
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class IdMappingTableInputReferenceConfig
|
1176
|
+
attr_accessor input_reference_arn: ::String
|
1177
|
+
attr_accessor manage_resource_policies: bool
|
1178
|
+
SENSITIVE: []
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
class IdMappingTableInputReferenceProperties
|
1182
|
+
attr_accessor id_mapping_table_input_source: ::Array[Types::IdMappingTableInputSource]
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class IdMappingTableInputSource
|
1187
|
+
attr_accessor id_namespace_association_id: ::String
|
1188
|
+
attr_accessor type: ("SOURCE" | "TARGET")
|
1189
|
+
SENSITIVE: []
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
class IdMappingTableSchemaTypeProperties
|
1193
|
+
attr_accessor id_mapping_table_input_source: ::Array[Types::IdMappingTableInputSource]
|
1194
|
+
SENSITIVE: []
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
class IdMappingTableSummary
|
1198
|
+
attr_accessor collaboration_arn: ::String
|
1199
|
+
attr_accessor collaboration_id: ::String
|
1200
|
+
attr_accessor membership_id: ::String
|
1201
|
+
attr_accessor membership_arn: ::String
|
1202
|
+
attr_accessor create_time: ::Time
|
1203
|
+
attr_accessor update_time: ::Time
|
1204
|
+
attr_accessor id: ::String
|
1205
|
+
attr_accessor arn: ::String
|
1206
|
+
attr_accessor description: ::String
|
1207
|
+
attr_accessor input_reference_config: Types::IdMappingTableInputReferenceConfig
|
1208
|
+
attr_accessor name: ::String
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class IdNamespaceAssociation
|
1213
|
+
attr_accessor id: ::String
|
1214
|
+
attr_accessor arn: ::String
|
1215
|
+
attr_accessor membership_id: ::String
|
1216
|
+
attr_accessor membership_arn: ::String
|
1217
|
+
attr_accessor collaboration_id: ::String
|
1218
|
+
attr_accessor collaboration_arn: ::String
|
1219
|
+
attr_accessor name: ::String
|
1220
|
+
attr_accessor description: ::String
|
1221
|
+
attr_accessor create_time: ::Time
|
1222
|
+
attr_accessor update_time: ::Time
|
1223
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
1224
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferenceProperties
|
1225
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
class IdNamespaceAssociationInputReferenceConfig
|
1230
|
+
attr_accessor input_reference_arn: ::String
|
1231
|
+
attr_accessor manage_resource_policies: bool
|
1232
|
+
SENSITIVE: []
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
class IdNamespaceAssociationInputReferenceProperties
|
1236
|
+
attr_accessor id_namespace_type: ("SOURCE" | "TARGET")
|
1237
|
+
attr_accessor id_mapping_workflows_supported: ::Array[untyped]
|
1238
|
+
SENSITIVE: []
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
class IdNamespaceAssociationInputReferencePropertiesSummary
|
1242
|
+
attr_accessor id_namespace_type: ("SOURCE" | "TARGET")
|
1243
|
+
SENSITIVE: []
|
1244
|
+
end
|
1245
|
+
|
1246
|
+
class IdNamespaceAssociationSummary
|
1247
|
+
attr_accessor membership_id: ::String
|
1248
|
+
attr_accessor membership_arn: ::String
|
1249
|
+
attr_accessor collaboration_arn: ::String
|
1250
|
+
attr_accessor collaboration_id: ::String
|
1251
|
+
attr_accessor create_time: ::Time
|
1252
|
+
attr_accessor update_time: ::Time
|
1253
|
+
attr_accessor id: ::String
|
1254
|
+
attr_accessor arn: ::String
|
1255
|
+
attr_accessor input_reference_config: Types::IdNamespaceAssociationInputReferenceConfig
|
1256
|
+
attr_accessor name: ::String
|
1257
|
+
attr_accessor description: ::String
|
1258
|
+
attr_accessor input_reference_properties: Types::IdNamespaceAssociationInputReferencePropertiesSummary
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
918
1262
|
class InternalServerException
|
919
1263
|
attr_accessor message: ::String
|
920
1264
|
SENSITIVE: []
|
@@ -959,6 +1303,19 @@ module Aws::CleanRooms
|
|
959
1303
|
SENSITIVE: []
|
960
1304
|
end
|
961
1305
|
|
1306
|
+
class ListCollaborationIdNamespaceAssociationsInput
|
1307
|
+
attr_accessor collaboration_identifier: ::String
|
1308
|
+
attr_accessor next_token: ::String
|
1309
|
+
attr_accessor max_results: ::Integer
|
1310
|
+
SENSITIVE: []
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class ListCollaborationIdNamespaceAssociationsOutput
|
1314
|
+
attr_accessor next_token: ::String
|
1315
|
+
attr_accessor collaboration_id_namespace_association_summaries: ::Array[Types::CollaborationIdNamespaceAssociationSummary]
|
1316
|
+
SENSITIVE: []
|
1317
|
+
end
|
1318
|
+
|
962
1319
|
class ListCollaborationPrivacyBudgetTemplatesInput
|
963
1320
|
attr_accessor collaboration_identifier: ::String
|
964
1321
|
attr_accessor next_token: ::String
|
@@ -1037,6 +1394,32 @@ module Aws::CleanRooms
|
|
1037
1394
|
SENSITIVE: []
|
1038
1395
|
end
|
1039
1396
|
|
1397
|
+
class ListIdMappingTablesInput
|
1398
|
+
attr_accessor membership_identifier: ::String
|
1399
|
+
attr_accessor next_token: ::String
|
1400
|
+
attr_accessor max_results: ::Integer
|
1401
|
+
SENSITIVE: []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class ListIdMappingTablesOutput
|
1405
|
+
attr_accessor id_mapping_table_summaries: ::Array[Types::IdMappingTableSummary]
|
1406
|
+
attr_accessor next_token: ::String
|
1407
|
+
SENSITIVE: []
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class ListIdNamespaceAssociationsInput
|
1411
|
+
attr_accessor membership_identifier: ::String
|
1412
|
+
attr_accessor next_token: ::String
|
1413
|
+
attr_accessor max_results: ::Integer
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class ListIdNamespaceAssociationsOutput
|
1418
|
+
attr_accessor next_token: ::String
|
1419
|
+
attr_accessor id_namespace_association_summaries: ::Array[Types::IdNamespaceAssociationSummary]
|
1420
|
+
SENSITIVE: []
|
1421
|
+
end
|
1422
|
+
|
1040
1423
|
class ListMembersInput
|
1041
1424
|
attr_accessor collaboration_identifier: ::String
|
1042
1425
|
attr_accessor next_token: ::String
|
@@ -1106,7 +1489,7 @@ module Aws::CleanRooms
|
|
1106
1489
|
|
1107
1490
|
class ListSchemasInput
|
1108
1491
|
attr_accessor collaboration_identifier: ::String
|
1109
|
-
attr_accessor schema_type: ("TABLE")
|
1492
|
+
attr_accessor schema_type: ("TABLE" | "ID_MAPPING_TABLE")
|
1110
1493
|
attr_accessor next_token: ::String
|
1111
1494
|
attr_accessor max_results: ::Integer
|
1112
1495
|
SENSITIVE: []
|
@@ -1215,6 +1598,17 @@ module Aws::CleanRooms
|
|
1215
1598
|
SENSITIVE: []
|
1216
1599
|
end
|
1217
1600
|
|
1601
|
+
class PopulateIdMappingTableInput
|
1602
|
+
attr_accessor id_mapping_table_identifier: ::String
|
1603
|
+
attr_accessor membership_identifier: ::String
|
1604
|
+
SENSITIVE: []
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
class PopulateIdMappingTableOutput
|
1608
|
+
attr_accessor id_mapping_job_id: ::String
|
1609
|
+
SENSITIVE: []
|
1610
|
+
end
|
1611
|
+
|
1218
1612
|
class PreviewPrivacyImpactInput
|
1219
1613
|
attr_accessor membership_identifier: ::String
|
1220
1614
|
attr_accessor parameters: Types::PreviewPrivacyImpactParametersInput
|
@@ -1356,6 +1750,11 @@ module Aws::CleanRooms
|
|
1356
1750
|
SENSITIVE: []
|
1357
1751
|
end
|
1358
1752
|
|
1753
|
+
class ProtectedQueryMemberOutputConfiguration
|
1754
|
+
attr_accessor account_id: ::String
|
1755
|
+
SENSITIVE: []
|
1756
|
+
end
|
1757
|
+
|
1359
1758
|
class ProtectedQueryOutput
|
1360
1759
|
attr_accessor s3: Types::ProtectedQueryS3Output
|
1361
1760
|
attr_accessor member_list: ::Array[Types::ProtectedQuerySingleMemberOutput]
|
@@ -1372,11 +1771,14 @@ module Aws::CleanRooms
|
|
1372
1771
|
|
1373
1772
|
class ProtectedQueryOutputConfiguration
|
1374
1773
|
attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
|
1774
|
+
attr_accessor member: Types::ProtectedQueryMemberOutputConfiguration
|
1375
1775
|
attr_accessor unknown: untyped
|
1376
1776
|
SENSITIVE: []
|
1377
1777
|
|
1378
1778
|
class S3 < ProtectedQueryOutputConfiguration
|
1379
1779
|
end
|
1780
|
+
class Member < ProtectedQueryOutputConfiguration
|
1781
|
+
end
|
1380
1782
|
class Unknown < ProtectedQueryOutputConfiguration
|
1381
1783
|
end
|
1382
1784
|
end
|
@@ -1426,6 +1828,7 @@ module Aws::CleanRooms
|
|
1426
1828
|
attr_accessor membership_arn: ::String
|
1427
1829
|
attr_accessor create_time: ::Time
|
1428
1830
|
attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
|
1831
|
+
attr_accessor receiver_configurations: ::Array[Types::ReceiverConfiguration]
|
1429
1832
|
SENSITIVE: []
|
1430
1833
|
end
|
1431
1834
|
|
@@ -1434,6 +1837,28 @@ module Aws::CleanRooms
|
|
1434
1837
|
SENSITIVE: []
|
1435
1838
|
end
|
1436
1839
|
|
1840
|
+
class QueryConstraint
|
1841
|
+
attr_accessor require_overlap: Types::QueryConstraintRequireOverlap
|
1842
|
+
attr_accessor unknown: untyped
|
1843
|
+
SENSITIVE: []
|
1844
|
+
|
1845
|
+
class RequireOverlap < QueryConstraint
|
1846
|
+
end
|
1847
|
+
class Unknown < QueryConstraint
|
1848
|
+
end
|
1849
|
+
end
|
1850
|
+
|
1851
|
+
class QueryConstraintRequireOverlap
|
1852
|
+
attr_accessor columns: ::Array[::String]
|
1853
|
+
SENSITIVE: []
|
1854
|
+
end
|
1855
|
+
|
1856
|
+
class ReceiverConfiguration
|
1857
|
+
attr_accessor analysis_type: ("DIRECT_ANALYSIS" | "ADDITIONAL_ANALYSIS")
|
1858
|
+
attr_accessor configuration_details: Types::ConfigurationDetails
|
1859
|
+
SENSITIVE: []
|
1860
|
+
end
|
1861
|
+
|
1437
1862
|
class ResourceNotFoundException
|
1438
1863
|
attr_accessor message: ::String
|
1439
1864
|
attr_accessor resource_id: ::String
|
@@ -1444,7 +1869,7 @@ module Aws::CleanRooms
|
|
1444
1869
|
class Schema
|
1445
1870
|
attr_accessor columns: ::Array[Types::Column]
|
1446
1871
|
attr_accessor partition_keys: ::Array[Types::Column]
|
1447
|
-
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
1872
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")]
|
1448
1873
|
attr_accessor analysis_method: ("DIRECT_QUERY")
|
1449
1874
|
attr_accessor creator_account_id: ::String
|
1450
1875
|
attr_accessor name: ::String
|
@@ -1453,44 +1878,57 @@ module Aws::CleanRooms
|
|
1453
1878
|
attr_accessor description: ::String
|
1454
1879
|
attr_accessor create_time: ::Time
|
1455
1880
|
attr_accessor update_time: ::Time
|
1456
|
-
attr_accessor type: ("TABLE")
|
1881
|
+
attr_accessor type: ("TABLE" | "ID_MAPPING_TABLE")
|
1457
1882
|
attr_accessor schema_status_details: ::Array[Types::SchemaStatusDetail]
|
1883
|
+
attr_accessor schema_type_properties: Types::SchemaTypeProperties
|
1458
1884
|
SENSITIVE: []
|
1459
1885
|
end
|
1460
1886
|
|
1461
1887
|
class SchemaAnalysisRuleRequest
|
1462
1888
|
attr_accessor name: ::String
|
1463
|
-
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1889
|
+
attr_accessor type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
1464
1890
|
SENSITIVE: []
|
1465
1891
|
end
|
1466
1892
|
|
1467
1893
|
class SchemaStatusDetail
|
1468
1894
|
attr_accessor status: ("READY" | "NOT_READY")
|
1469
1895
|
attr_accessor reasons: ::Array[Types::SchemaStatusReason]
|
1470
|
-
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
1896
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
1471
1897
|
attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY")]
|
1898
|
+
attr_accessor analysis_type: ("DIRECT_ANALYSIS" | "ADDITIONAL_ANALYSIS")
|
1472
1899
|
SENSITIVE: []
|
1473
1900
|
end
|
1474
1901
|
|
1475
1902
|
class SchemaStatusReason
|
1476
|
-
attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED")
|
1903
|
+
attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED" | "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED" | "ADDITIONAL_ANALYSES_NOT_CONFIGURED" | "RESULT_RECEIVERS_NOT_CONFIGURED" | "ADDITIONAL_ANALYSES_NOT_ALLOWED" | "RESULT_RECEIVERS_NOT_ALLOWED" | "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE")
|
1477
1904
|
attr_accessor message: ::String
|
1478
1905
|
SENSITIVE: []
|
1479
1906
|
end
|
1480
1907
|
|
1481
1908
|
class SchemaSummary
|
1482
1909
|
attr_accessor name: ::String
|
1483
|
-
attr_accessor type: ("TABLE")
|
1910
|
+
attr_accessor type: ("TABLE" | "ID_MAPPING_TABLE")
|
1484
1911
|
attr_accessor creator_account_id: ::String
|
1485
1912
|
attr_accessor create_time: ::Time
|
1486
1913
|
attr_accessor update_time: ::Time
|
1487
1914
|
attr_accessor collaboration_id: ::String
|
1488
1915
|
attr_accessor collaboration_arn: ::String
|
1489
|
-
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM")]
|
1916
|
+
attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")]
|
1490
1917
|
attr_accessor analysis_method: ("DIRECT_QUERY")
|
1491
1918
|
SENSITIVE: []
|
1492
1919
|
end
|
1493
1920
|
|
1921
|
+
class SchemaTypeProperties
|
1922
|
+
attr_accessor id_mapping_table: Types::IdMappingTableSchemaTypeProperties
|
1923
|
+
attr_accessor unknown: untyped
|
1924
|
+
SENSITIVE: []
|
1925
|
+
|
1926
|
+
class IdMappingTable < SchemaTypeProperties
|
1927
|
+
end
|
1928
|
+
class Unknown < SchemaTypeProperties
|
1929
|
+
end
|
1930
|
+
end
|
1931
|
+
|
1494
1932
|
class ServiceQuotaExceededException
|
1495
1933
|
attr_accessor message: ::String
|
1496
1934
|
attr_accessor quota_name: ::String
|
@@ -1594,6 +2032,19 @@ module Aws::CleanRooms
|
|
1594
2032
|
SENSITIVE: []
|
1595
2033
|
end
|
1596
2034
|
|
2035
|
+
class UpdateConfiguredTableAssociationAnalysisRuleInput
|
2036
|
+
attr_accessor membership_identifier: ::String
|
2037
|
+
attr_accessor configured_table_association_identifier: ::String
|
2038
|
+
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
2039
|
+
attr_accessor analysis_rule_policy: Types::ConfiguredTableAssociationAnalysisRulePolicy
|
2040
|
+
SENSITIVE: []
|
2041
|
+
end
|
2042
|
+
|
2043
|
+
class UpdateConfiguredTableAssociationAnalysisRuleOutput
|
2044
|
+
attr_accessor analysis_rule: Types::ConfiguredTableAssociationAnalysisRule
|
2045
|
+
SENSITIVE: []
|
2046
|
+
end
|
2047
|
+
|
1597
2048
|
class UpdateConfiguredTableAssociationInput
|
1598
2049
|
attr_accessor configured_table_association_identifier: ::String
|
1599
2050
|
attr_accessor membership_identifier: ::String
|
@@ -1619,6 +2070,33 @@ module Aws::CleanRooms
|
|
1619
2070
|
SENSITIVE: []
|
1620
2071
|
end
|
1621
2072
|
|
2073
|
+
class UpdateIdMappingTableInput
|
2074
|
+
attr_accessor id_mapping_table_identifier: ::String
|
2075
|
+
attr_accessor membership_identifier: ::String
|
2076
|
+
attr_accessor description: ::String
|
2077
|
+
attr_accessor kms_key_arn: ::String
|
2078
|
+
SENSITIVE: []
|
2079
|
+
end
|
2080
|
+
|
2081
|
+
class UpdateIdMappingTableOutput
|
2082
|
+
attr_accessor id_mapping_table: Types::IdMappingTable
|
2083
|
+
SENSITIVE: []
|
2084
|
+
end
|
2085
|
+
|
2086
|
+
class UpdateIdNamespaceAssociationInput
|
2087
|
+
attr_accessor id_namespace_association_identifier: ::String
|
2088
|
+
attr_accessor membership_identifier: ::String
|
2089
|
+
attr_accessor name: ::String
|
2090
|
+
attr_accessor description: ::String
|
2091
|
+
attr_accessor id_mapping_config: Types::IdMappingConfig
|
2092
|
+
SENSITIVE: []
|
2093
|
+
end
|
2094
|
+
|
2095
|
+
class UpdateIdNamespaceAssociationOutput
|
2096
|
+
attr_accessor id_namespace_association: Types::IdNamespaceAssociation
|
2097
|
+
SENSITIVE: []
|
2098
|
+
end
|
2099
|
+
|
1622
2100
|
class UpdateMembershipInput
|
1623
2101
|
attr_accessor membership_identifier: ::String
|
1624
2102
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|