aws-sdk-cleanrooms 1.26.0 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +353 -82
- data/lib/aws-sdk-cleanrooms/client_api.rb +187 -0
- data/lib/aws-sdk-cleanrooms/endpoints.rb +56 -0
- data/lib/aws-sdk-cleanrooms/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-cleanrooms/types.rb +573 -113
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +94 -4
- data/sig/types.rbs +144 -2
- metadata +2 -2
@@ -531,11 +531,12 @@ module Aws::CleanRooms
|
|
531
531
|
# resp.schemas[0].schema_status_details #=> Array
|
532
532
|
# resp.schemas[0].schema_status_details[0].status #=> String, one of "READY", "NOT_READY"
|
533
533
|
# resp.schemas[0].schema_status_details[0].reasons #=> Array
|
534
|
-
# resp.schemas[0].schema_status_details[0].reasons[0].code #=> String, one of "ANALYSIS_RULE_MISSING", "ANALYSIS_TEMPLATES_NOT_CONFIGURED", "ANALYSIS_PROVIDERS_NOT_CONFIGURED", "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED", "ID_MAPPING_TABLE_NOT_POPULATED"
|
534
|
+
# resp.schemas[0].schema_status_details[0].reasons[0].code #=> String, one of "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"
|
535
535
|
# resp.schemas[0].schema_status_details[0].reasons[0].message #=> String
|
536
536
|
# resp.schemas[0].schema_status_details[0].analysis_rule_type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
|
537
537
|
# resp.schemas[0].schema_status_details[0].configurations #=> Array
|
538
|
-
# resp.schemas[0].schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
|
538
|
+
# resp.schemas[0].schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
|
539
|
+
# resp.schemas[0].schema_status_details[0].analysis_type #=> String, one of "DIRECT_ANALYSIS", "ADDITIONAL_ANALYSIS"
|
539
540
|
# resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source #=> Array
|
540
541
|
# resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].id_namespace_association_id #=> String
|
541
542
|
# resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
|
@@ -593,6 +594,7 @@ module Aws::CleanRooms
|
|
593
594
|
# resp.analysis_rules[0].policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
594
595
|
# resp.analysis_rules[0].policy.v1.list.list_columns #=> Array
|
595
596
|
# resp.analysis_rules[0].policy.v1.list.list_columns[0] #=> String
|
597
|
+
# resp.analysis_rules[0].policy.v1.list.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
596
598
|
# resp.analysis_rules[0].policy.v1.aggregation.aggregate_columns #=> Array
|
597
599
|
# resp.analysis_rules[0].policy.v1.aggregation.aggregate_columns[0].column_names #=> Array
|
598
600
|
# resp.analysis_rules[0].policy.v1.aggregation.aggregate_columns[0].column_names[0] #=> String
|
@@ -610,10 +612,14 @@ module Aws::CleanRooms
|
|
610
612
|
# resp.analysis_rules[0].policy.v1.aggregation.output_constraints[0].column_name #=> String
|
611
613
|
# resp.analysis_rules[0].policy.v1.aggregation.output_constraints[0].minimum #=> Integer
|
612
614
|
# resp.analysis_rules[0].policy.v1.aggregation.output_constraints[0].type #=> String, one of "COUNT_DISTINCT"
|
615
|
+
# resp.analysis_rules[0].policy.v1.aggregation.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
613
616
|
# resp.analysis_rules[0].policy.v1.custom.allowed_analyses #=> Array
|
614
617
|
# resp.analysis_rules[0].policy.v1.custom.allowed_analyses[0] #=> String
|
615
618
|
# resp.analysis_rules[0].policy.v1.custom.allowed_analysis_providers #=> Array
|
616
619
|
# resp.analysis_rules[0].policy.v1.custom.allowed_analysis_providers[0] #=> String
|
620
|
+
# resp.analysis_rules[0].policy.v1.custom.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
621
|
+
# resp.analysis_rules[0].policy.v1.custom.disallowed_output_columns #=> Array
|
622
|
+
# resp.analysis_rules[0].policy.v1.custom.disallowed_output_columns[0] #=> String
|
617
623
|
# resp.analysis_rules[0].policy.v1.custom.differential_privacy.columns #=> Array
|
618
624
|
# resp.analysis_rules[0].policy.v1.custom.differential_privacy.columns[0].name #=> String
|
619
625
|
# resp.analysis_rules[0].policy.v1.id_mapping_table.join_columns #=> Array
|
@@ -997,7 +1003,7 @@ module Aws::CleanRooms
|
|
997
1003
|
# The type of analysis rule.
|
998
1004
|
#
|
999
1005
|
# @option params [required, Types::ConfiguredTableAnalysisRulePolicy] :analysis_rule_policy
|
1000
|
-
# The
|
1006
|
+
# The analysis rule policy that was created for the configured table.
|
1001
1007
|
#
|
1002
1008
|
# @return [Types::CreateConfiguredTableAnalysisRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1003
1009
|
#
|
@@ -1014,6 +1020,7 @@ module Aws::CleanRooms
|
|
1014
1020
|
# join_columns: ["AnalysisRuleColumnName"], # required
|
1015
1021
|
# allowed_join_operators: ["OR"], # accepts OR, AND
|
1016
1022
|
# list_columns: ["AnalysisRuleColumnName"], # required
|
1023
|
+
# additional_analyses: "ALLOWED", # accepts ALLOWED, REQUIRED, NOT_ALLOWED
|
1017
1024
|
# },
|
1018
1025
|
# aggregation: {
|
1019
1026
|
# aggregate_columns: [ # required
|
@@ -1034,10 +1041,13 @@ module Aws::CleanRooms
|
|
1034
1041
|
# type: "COUNT_DISTINCT", # required, accepts COUNT_DISTINCT
|
1035
1042
|
# },
|
1036
1043
|
# ],
|
1044
|
+
# additional_analyses: "ALLOWED", # accepts ALLOWED, REQUIRED, NOT_ALLOWED
|
1037
1045
|
# },
|
1038
1046
|
# custom: {
|
1039
1047
|
# allowed_analyses: ["AnalysisTemplateArnOrQueryWildcard"], # required
|
1040
1048
|
# allowed_analysis_providers: ["AccountId"],
|
1049
|
+
# additional_analyses: "ALLOWED", # accepts ALLOWED, REQUIRED, NOT_ALLOWED
|
1050
|
+
# disallowed_output_columns: ["AnalysisRuleColumnName"],
|
1041
1051
|
# differential_privacy: {
|
1042
1052
|
# columns: [ # required
|
1043
1053
|
# {
|
@@ -1060,6 +1070,7 @@ module Aws::CleanRooms
|
|
1060
1070
|
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
1061
1071
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
1062
1072
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
1073
|
+
# resp.analysis_rule.policy.v1.list.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
1063
1074
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
1064
1075
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names #=> Array
|
1065
1076
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names[0] #=> String
|
@@ -1077,10 +1088,14 @@ module Aws::CleanRooms
|
|
1077
1088
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].column_name #=> String
|
1078
1089
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].minimum #=> Integer
|
1079
1090
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].type #=> String, one of "COUNT_DISTINCT"
|
1091
|
+
# resp.analysis_rule.policy.v1.aggregation.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
1080
1092
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses #=> Array
|
1081
1093
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses[0] #=> String
|
1082
1094
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers #=> Array
|
1083
1095
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers[0] #=> String
|
1096
|
+
# resp.analysis_rule.policy.v1.custom.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
1097
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns #=> Array
|
1098
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns[0] #=> String
|
1084
1099
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns #=> Array
|
1085
1100
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns[0].name #=> String
|
1086
1101
|
# resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
@@ -1153,6 +1168,8 @@ module Aws::CleanRooms
|
|
1153
1168
|
# resp.configured_table_association.role_arn #=> String
|
1154
1169
|
# resp.configured_table_association.name #=> String
|
1155
1170
|
# resp.configured_table_association.description #=> String
|
1171
|
+
# resp.configured_table_association.analysis_rule_types #=> Array
|
1172
|
+
# resp.configured_table_association.analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
1156
1173
|
# resp.configured_table_association.create_time #=> Time
|
1157
1174
|
# resp.configured_table_association.update_time #=> Time
|
1158
1175
|
#
|
@@ -1165,6 +1182,81 @@ module Aws::CleanRooms
|
|
1165
1182
|
req.send_request(options)
|
1166
1183
|
end
|
1167
1184
|
|
1185
|
+
# Creates a new analysis rule for an associated configured table.
|
1186
|
+
#
|
1187
|
+
# @option params [required, String] :membership_identifier
|
1188
|
+
# A unique identifier for the membership that the configured table
|
1189
|
+
# association belongs to. Currently accepts the membership ID.
|
1190
|
+
#
|
1191
|
+
# @option params [required, String] :configured_table_association_identifier
|
1192
|
+
# The unique ID for the configured table association. Currently accepts
|
1193
|
+
# the configured table association ID.
|
1194
|
+
#
|
1195
|
+
# @option params [required, String] :analysis_rule_type
|
1196
|
+
# The type of analysis rule.
|
1197
|
+
#
|
1198
|
+
# @option params [required, Types::ConfiguredTableAssociationAnalysisRulePolicy] :analysis_rule_policy
|
1199
|
+
# The analysis rule policy that was created for the configured table
|
1200
|
+
# association.
|
1201
|
+
#
|
1202
|
+
# @return [Types::CreateConfiguredTableAssociationAnalysisRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1203
|
+
#
|
1204
|
+
# * {Types::CreateConfiguredTableAssociationAnalysisRuleOutput#analysis_rule #analysis_rule} => Types::ConfiguredTableAssociationAnalysisRule
|
1205
|
+
#
|
1206
|
+
# @example Request syntax with placeholder values
|
1207
|
+
#
|
1208
|
+
# resp = client.create_configured_table_association_analysis_rule({
|
1209
|
+
# membership_identifier: "MembershipIdentifier", # required
|
1210
|
+
# configured_table_association_identifier: "ConfiguredTableAssociationIdentifier", # required
|
1211
|
+
# analysis_rule_type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM
|
1212
|
+
# analysis_rule_policy: { # required
|
1213
|
+
# v1: {
|
1214
|
+
# list: {
|
1215
|
+
# allowed_result_receivers: ["AccountId"],
|
1216
|
+
# allowed_additional_analyses: ["AdditionalAnalysesResourceArn"],
|
1217
|
+
# },
|
1218
|
+
# aggregation: {
|
1219
|
+
# allowed_result_receivers: ["AccountId"],
|
1220
|
+
# allowed_additional_analyses: ["AdditionalAnalysesResourceArn"],
|
1221
|
+
# },
|
1222
|
+
# custom: {
|
1223
|
+
# allowed_result_receivers: ["AccountId"],
|
1224
|
+
# allowed_additional_analyses: ["AdditionalAnalysesResourceArn"],
|
1225
|
+
# },
|
1226
|
+
# },
|
1227
|
+
# },
|
1228
|
+
# })
|
1229
|
+
#
|
1230
|
+
# @example Response structure
|
1231
|
+
#
|
1232
|
+
# resp.analysis_rule.membership_identifier #=> String
|
1233
|
+
# resp.analysis_rule.configured_table_association_id #=> String
|
1234
|
+
# resp.analysis_rule.configured_table_association_arn #=> String
|
1235
|
+
# resp.analysis_rule.policy.v1.list.allowed_result_receivers #=> Array
|
1236
|
+
# resp.analysis_rule.policy.v1.list.allowed_result_receivers[0] #=> String
|
1237
|
+
# resp.analysis_rule.policy.v1.list.allowed_additional_analyses #=> Array
|
1238
|
+
# resp.analysis_rule.policy.v1.list.allowed_additional_analyses[0] #=> String
|
1239
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_result_receivers #=> Array
|
1240
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_result_receivers[0] #=> String
|
1241
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_additional_analyses #=> Array
|
1242
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_additional_analyses[0] #=> String
|
1243
|
+
# resp.analysis_rule.policy.v1.custom.allowed_result_receivers #=> Array
|
1244
|
+
# resp.analysis_rule.policy.v1.custom.allowed_result_receivers[0] #=> String
|
1245
|
+
# resp.analysis_rule.policy.v1.custom.allowed_additional_analyses #=> Array
|
1246
|
+
# resp.analysis_rule.policy.v1.custom.allowed_additional_analyses[0] #=> String
|
1247
|
+
# resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
1248
|
+
# resp.analysis_rule.create_time #=> Time
|
1249
|
+
# resp.analysis_rule.update_time #=> Time
|
1250
|
+
#
|
1251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationAnalysisRule AWS API Documentation
|
1252
|
+
#
|
1253
|
+
# @overload create_configured_table_association_analysis_rule(params = {})
|
1254
|
+
# @param [Hash] params ({})
|
1255
|
+
def create_configured_table_association_analysis_rule(params = {}, options = {})
|
1256
|
+
req = build_request(:create_configured_table_association_analysis_rule, params)
|
1257
|
+
req.send_request(options)
|
1258
|
+
end
|
1259
|
+
|
1168
1260
|
# Creates an ID mapping table.
|
1169
1261
|
#
|
1170
1262
|
# @option params [required, String] :membership_identifier
|
@@ -1638,6 +1730,38 @@ module Aws::CleanRooms
|
|
1638
1730
|
req.send_request(options)
|
1639
1731
|
end
|
1640
1732
|
|
1733
|
+
# Deletes an analysis rule for a configured table association.
|
1734
|
+
#
|
1735
|
+
# @option params [required, String] :membership_identifier
|
1736
|
+
# A unique identifier for the membership that the configured table
|
1737
|
+
# association belongs to. Currently accepts the membership ID.
|
1738
|
+
#
|
1739
|
+
# @option params [required, String] :configured_table_association_identifier
|
1740
|
+
# The identifier for the configured table association that's related to
|
1741
|
+
# the analysis rule that you want to delete.
|
1742
|
+
#
|
1743
|
+
# @option params [required, String] :analysis_rule_type
|
1744
|
+
# The type of the analysis rule that you want to delete.
|
1745
|
+
#
|
1746
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1747
|
+
#
|
1748
|
+
# @example Request syntax with placeholder values
|
1749
|
+
#
|
1750
|
+
# resp = client.delete_configured_table_association_analysis_rule({
|
1751
|
+
# membership_identifier: "MembershipIdentifier", # required
|
1752
|
+
# configured_table_association_identifier: "ConfiguredTableAssociationIdentifier", # required
|
1753
|
+
# analysis_rule_type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM
|
1754
|
+
# })
|
1755
|
+
#
|
1756
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociationAnalysisRule AWS API Documentation
|
1757
|
+
#
|
1758
|
+
# @overload delete_configured_table_association_analysis_rule(params = {})
|
1759
|
+
# @param [Hash] params ({})
|
1760
|
+
def delete_configured_table_association_analysis_rule(params = {}, options = {})
|
1761
|
+
req = build_request(:delete_configured_table_association_analysis_rule, params)
|
1762
|
+
req.send_request(options)
|
1763
|
+
end
|
1764
|
+
|
1641
1765
|
# Deletes an ID mapping table.
|
1642
1766
|
#
|
1643
1767
|
# @option params [required, String] :id_mapping_table_identifier
|
@@ -2175,6 +2299,7 @@ module Aws::CleanRooms
|
|
2175
2299
|
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
2176
2300
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
2177
2301
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
2302
|
+
# resp.analysis_rule.policy.v1.list.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
2178
2303
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
2179
2304
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names #=> Array
|
2180
2305
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names[0] #=> String
|
@@ -2192,10 +2317,14 @@ module Aws::CleanRooms
|
|
2192
2317
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].column_name #=> String
|
2193
2318
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].minimum #=> Integer
|
2194
2319
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].type #=> String, one of "COUNT_DISTINCT"
|
2320
|
+
# resp.analysis_rule.policy.v1.aggregation.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
2195
2321
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses #=> Array
|
2196
2322
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses[0] #=> String
|
2197
2323
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers #=> Array
|
2198
2324
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers[0] #=> String
|
2325
|
+
# resp.analysis_rule.policy.v1.custom.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
2326
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns #=> Array
|
2327
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns[0] #=> String
|
2199
2328
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns #=> Array
|
2200
2329
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns[0].name #=> String
|
2201
2330
|
# resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
@@ -2243,6 +2372,8 @@ module Aws::CleanRooms
|
|
2243
2372
|
# resp.configured_table_association.role_arn #=> String
|
2244
2373
|
# resp.configured_table_association.name #=> String
|
2245
2374
|
# resp.configured_table_association.description #=> String
|
2375
|
+
# resp.configured_table_association.analysis_rule_types #=> Array
|
2376
|
+
# resp.configured_table_association.analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
2246
2377
|
# resp.configured_table_association.create_time #=> Time
|
2247
2378
|
# resp.configured_table_association.update_time #=> Time
|
2248
2379
|
#
|
@@ -2255,6 +2386,61 @@ module Aws::CleanRooms
|
|
2255
2386
|
req.send_request(options)
|
2256
2387
|
end
|
2257
2388
|
|
2389
|
+
# Retrieves the analysis rule for a configured table association.
|
2390
|
+
#
|
2391
|
+
# @option params [required, String] :membership_identifier
|
2392
|
+
# A unique identifier for the membership that the configured table
|
2393
|
+
# association belongs to. Currently accepts the membership ID.
|
2394
|
+
#
|
2395
|
+
# @option params [required, String] :configured_table_association_identifier
|
2396
|
+
# The identifier for the configured table association that's related to
|
2397
|
+
# the analysis rule.
|
2398
|
+
#
|
2399
|
+
# @option params [required, String] :analysis_rule_type
|
2400
|
+
# The type of analysis rule that you want to retrieve.
|
2401
|
+
#
|
2402
|
+
# @return [Types::GetConfiguredTableAssociationAnalysisRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2403
|
+
#
|
2404
|
+
# * {Types::GetConfiguredTableAssociationAnalysisRuleOutput#analysis_rule #analysis_rule} => Types::ConfiguredTableAssociationAnalysisRule
|
2405
|
+
#
|
2406
|
+
# @example Request syntax with placeholder values
|
2407
|
+
#
|
2408
|
+
# resp = client.get_configured_table_association_analysis_rule({
|
2409
|
+
# membership_identifier: "MembershipIdentifier", # required
|
2410
|
+
# configured_table_association_identifier: "ConfiguredTableAssociationIdentifier", # required
|
2411
|
+
# analysis_rule_type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM
|
2412
|
+
# })
|
2413
|
+
#
|
2414
|
+
# @example Response structure
|
2415
|
+
#
|
2416
|
+
# resp.analysis_rule.membership_identifier #=> String
|
2417
|
+
# resp.analysis_rule.configured_table_association_id #=> String
|
2418
|
+
# resp.analysis_rule.configured_table_association_arn #=> String
|
2419
|
+
# resp.analysis_rule.policy.v1.list.allowed_result_receivers #=> Array
|
2420
|
+
# resp.analysis_rule.policy.v1.list.allowed_result_receivers[0] #=> String
|
2421
|
+
# resp.analysis_rule.policy.v1.list.allowed_additional_analyses #=> Array
|
2422
|
+
# resp.analysis_rule.policy.v1.list.allowed_additional_analyses[0] #=> String
|
2423
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_result_receivers #=> Array
|
2424
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_result_receivers[0] #=> String
|
2425
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_additional_analyses #=> Array
|
2426
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_additional_analyses[0] #=> String
|
2427
|
+
# resp.analysis_rule.policy.v1.custom.allowed_result_receivers #=> Array
|
2428
|
+
# resp.analysis_rule.policy.v1.custom.allowed_result_receivers[0] #=> String
|
2429
|
+
# resp.analysis_rule.policy.v1.custom.allowed_additional_analyses #=> Array
|
2430
|
+
# resp.analysis_rule.policy.v1.custom.allowed_additional_analyses[0] #=> String
|
2431
|
+
# resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
2432
|
+
# resp.analysis_rule.create_time #=> Time
|
2433
|
+
# resp.analysis_rule.update_time #=> Time
|
2434
|
+
#
|
2435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociationAnalysisRule AWS API Documentation
|
2436
|
+
#
|
2437
|
+
# @overload get_configured_table_association_analysis_rule(params = {})
|
2438
|
+
# @param [Hash] params ({})
|
2439
|
+
def get_configured_table_association_analysis_rule(params = {}, options = {})
|
2440
|
+
req = build_request(:get_configured_table_association_analysis_rule, params)
|
2441
|
+
req.send_request(options)
|
2442
|
+
end
|
2443
|
+
|
2258
2444
|
# Retrieves an ID mapping table.
|
2259
2445
|
#
|
2260
2446
|
# @option params [required, String] :id_mapping_table_identifier
|
@@ -2475,6 +2661,7 @@ module Aws::CleanRooms
|
|
2475
2661
|
# resp.protected_query.result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
|
2476
2662
|
# resp.protected_query.result_configuration.output_configuration.s3.bucket #=> String
|
2477
2663
|
# resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
|
2664
|
+
# resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
|
2478
2665
|
# resp.protected_query.statistics.total_duration_in_millis #=> Integer
|
2479
2666
|
# resp.protected_query.result.output.s3.location #=> String
|
2480
2667
|
# resp.protected_query.result.output.member_list #=> Array
|
@@ -2539,11 +2726,12 @@ module Aws::CleanRooms
|
|
2539
2726
|
# resp.schema.schema_status_details #=> Array
|
2540
2727
|
# resp.schema.schema_status_details[0].status #=> String, one of "READY", "NOT_READY"
|
2541
2728
|
# resp.schema.schema_status_details[0].reasons #=> Array
|
2542
|
-
# resp.schema.schema_status_details[0].reasons[0].code #=> String, one of "ANALYSIS_RULE_MISSING", "ANALYSIS_TEMPLATES_NOT_CONFIGURED", "ANALYSIS_PROVIDERS_NOT_CONFIGURED", "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED", "ID_MAPPING_TABLE_NOT_POPULATED"
|
2729
|
+
# resp.schema.schema_status_details[0].reasons[0].code #=> String, one of "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"
|
2543
2730
|
# resp.schema.schema_status_details[0].reasons[0].message #=> String
|
2544
2731
|
# resp.schema.schema_status_details[0].analysis_rule_type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
|
2545
2732
|
# resp.schema.schema_status_details[0].configurations #=> Array
|
2546
|
-
# resp.schema.schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
|
2733
|
+
# resp.schema.schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
|
2734
|
+
# resp.schema.schema_status_details[0].analysis_type #=> String, one of "DIRECT_ANALYSIS", "ADDITIONAL_ANALYSIS"
|
2547
2735
|
# resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source #=> Array
|
2548
2736
|
# resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].id_namespace_association_id #=> String
|
2549
2737
|
# resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
|
@@ -2596,6 +2784,7 @@ module Aws::CleanRooms
|
|
2596
2784
|
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
2597
2785
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
2598
2786
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
2787
|
+
# resp.analysis_rule.policy.v1.list.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
2599
2788
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
2600
2789
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names #=> Array
|
2601
2790
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names[0] #=> String
|
@@ -2613,10 +2802,14 @@ module Aws::CleanRooms
|
|
2613
2802
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].column_name #=> String
|
2614
2803
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].minimum #=> Integer
|
2615
2804
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].type #=> String, one of "COUNT_DISTINCT"
|
2805
|
+
# resp.analysis_rule.policy.v1.aggregation.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
2616
2806
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses #=> Array
|
2617
2807
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses[0] #=> String
|
2618
2808
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers #=> Array
|
2619
2809
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers[0] #=> String
|
2810
|
+
# resp.analysis_rule.policy.v1.custom.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
2811
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns #=> Array
|
2812
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns[0] #=> String
|
2620
2813
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns #=> Array
|
2621
2814
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns[0].name #=> String
|
2622
2815
|
# resp.analysis_rule.policy.v1.id_mapping_table.join_columns #=> Array
|
@@ -2642,13 +2835,11 @@ module Aws::CleanRooms
|
|
2642
2835
|
# The identifier for a membership resource.
|
2643
2836
|
#
|
2644
2837
|
# @option params [String] :next_token
|
2645
|
-
# The
|
2838
|
+
# The token value retrieved from a previous call to access the next page
|
2839
|
+
# of results.
|
2646
2840
|
#
|
2647
2841
|
# @option params [Integer] :max_results
|
2648
|
-
# The maximum
|
2649
|
-
# call. The service chooses a default number if you don't set one. The
|
2650
|
-
# service might return a `nextToken` even if the `maxResults` value
|
2651
|
-
# has not been met.
|
2842
|
+
# The maximum size of the results that is returned per call.
|
2652
2843
|
#
|
2653
2844
|
# @return [Types::ListAnalysisTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2654
2845
|
#
|
@@ -2696,13 +2887,11 @@ module Aws::CleanRooms
|
|
2696
2887
|
# belong to. Currently accepts collaboration ID.
|
2697
2888
|
#
|
2698
2889
|
# @option params [String] :next_token
|
2699
|
-
# The
|
2890
|
+
# The token value retrieved from a previous call to access the next page
|
2891
|
+
# of results.
|
2700
2892
|
#
|
2701
2893
|
# @option params [Integer] :max_results
|
2702
|
-
# The maximum
|
2703
|
-
# call. The service chooses a default number if you don't set one. The
|
2704
|
-
# service might return a `nextToken` even if the `maxResults` value
|
2705
|
-
# has not been met.
|
2894
|
+
# The maximum size of the results that is returned per call.
|
2706
2895
|
#
|
2707
2896
|
# @return [Types::ListCollaborationAnalysisTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2708
2897
|
#
|
@@ -2749,13 +2938,11 @@ module Aws::CleanRooms
|
|
2749
2938
|
# model association belongs to. Accepts a collaboration ID.
|
2750
2939
|
#
|
2751
2940
|
# @option params [String] :next_token
|
2752
|
-
# The
|
2941
|
+
# The token value retrieved from a previous call to access the next page
|
2942
|
+
# of results.
|
2753
2943
|
#
|
2754
2944
|
# @option params [Integer] :max_results
|
2755
|
-
# The maximum
|
2756
|
-
# call. The service chooses a default number if you don't set one. The
|
2757
|
-
# service might return a `nextToken` even if the `maxResults` value
|
2758
|
-
# has not been met.
|
2945
|
+
# The maximum size of the results that is returned per call.
|
2759
2946
|
#
|
2760
2947
|
# @return [Types::ListCollaborationConfiguredAudienceModelAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2761
2948
|
#
|
@@ -2857,13 +3044,13 @@ module Aws::CleanRooms
|
|
2857
3044
|
# A unique identifier for one of your collaborations.
|
2858
3045
|
#
|
2859
3046
|
# @option params [String] :next_token
|
2860
|
-
# The
|
3047
|
+
# The token value retrieved from a previous call to access the next page
|
3048
|
+
# of results.
|
2861
3049
|
#
|
2862
3050
|
# @option params [Integer] :max_results
|
2863
|
-
# The maximum
|
2864
|
-
#
|
2865
|
-
#
|
2866
|
-
# has not been met.
|
3051
|
+
# The maximum size of the results that is returned per call. Service
|
3052
|
+
# chooses a default if it has not been set. Service may return a
|
3053
|
+
# nextToken even if the maximum results has not been met.
|
2867
3054
|
#
|
2868
3055
|
# @return [Types::ListCollaborationPrivacyBudgetTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2869
3056
|
#
|
@@ -2913,13 +3100,13 @@ module Aws::CleanRooms
|
|
2913
3100
|
# Specifies the type of the privacy budget.
|
2914
3101
|
#
|
2915
3102
|
# @option params [Integer] :max_results
|
2916
|
-
# The maximum
|
2917
|
-
#
|
2918
|
-
#
|
2919
|
-
# has not been met.
|
3103
|
+
# The maximum size of the results that is returned per call. Service
|
3104
|
+
# chooses a default if it has not been set. Service may return a
|
3105
|
+
# nextToken even if the maximum results has not been met.
|
2920
3106
|
#
|
2921
3107
|
# @option params [String] :next_token
|
2922
|
-
# The
|
3108
|
+
# The token value retrieved from a previous call to access the next page
|
3109
|
+
# of results.
|
2923
3110
|
#
|
2924
3111
|
# @return [Types::ListCollaborationPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2925
3112
|
#
|
@@ -2969,13 +3156,13 @@ module Aws::CleanRooms
|
|
2969
3156
|
# invited to.
|
2970
3157
|
#
|
2971
3158
|
# @option params [String] :next_token
|
2972
|
-
# The
|
3159
|
+
# The token value retrieved from a previous call to access the next page
|
3160
|
+
# of results.
|
2973
3161
|
#
|
2974
3162
|
# @option params [Integer] :max_results
|
2975
|
-
# The maximum
|
2976
|
-
#
|
2977
|
-
#
|
2978
|
-
# has not been met.
|
3163
|
+
# The maximum size of the results that is returned per call. Service
|
3164
|
+
# chooses a default if it has not been set. Service may return a
|
3165
|
+
# nextToken even if the maximum results has not been met.
|
2979
3166
|
#
|
2980
3167
|
# @option params [String] :member_status
|
2981
3168
|
# The caller's status in a collaboration.
|
@@ -3027,13 +3214,13 @@ module Aws::CleanRooms
|
|
3027
3214
|
# audience model associations that you want to retrieve.
|
3028
3215
|
#
|
3029
3216
|
# @option params [String] :next_token
|
3030
|
-
# The
|
3217
|
+
# The token value retrieved from a previous call to access the next page
|
3218
|
+
# of results.
|
3031
3219
|
#
|
3032
3220
|
# @option params [Integer] :max_results
|
3033
|
-
# The maximum
|
3034
|
-
#
|
3035
|
-
#
|
3036
|
-
# has not been met.
|
3221
|
+
# The maximum size of the results that is returned per call. Service
|
3222
|
+
# chooses a default if it has not been set. Service may return a
|
3223
|
+
# nextToken even if the maximum results has not been met.
|
3037
3224
|
#
|
3038
3225
|
# @return [Types::ListConfiguredAudienceModelAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3039
3226
|
#
|
@@ -3082,13 +3269,11 @@ module Aws::CleanRooms
|
|
3082
3269
|
# associations for. Currently accepts the membership ID.
|
3083
3270
|
#
|
3084
3271
|
# @option params [String] :next_token
|
3085
|
-
# The
|
3272
|
+
# The token value retrieved from a previous call to access the next page
|
3273
|
+
# of results.
|
3086
3274
|
#
|
3087
3275
|
# @option params [Integer] :max_results
|
3088
|
-
# The maximum
|
3089
|
-
# call. The service chooses a default number if you don't set one. The
|
3090
|
-
# service might return a `nextToken` even if the `maxResults` value
|
3091
|
-
# has not been met.
|
3276
|
+
# The maximum size of the results that is returned per call.
|
3092
3277
|
#
|
3093
3278
|
# @return [Types::ListConfiguredTableAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3094
3279
|
#
|
@@ -3130,13 +3315,11 @@ module Aws::CleanRooms
|
|
3130
3315
|
# Lists configured tables.
|
3131
3316
|
#
|
3132
3317
|
# @option params [String] :next_token
|
3133
|
-
# The
|
3318
|
+
# The token value retrieved from a previous call to access the next page
|
3319
|
+
# of results.
|
3134
3320
|
#
|
3135
3321
|
# @option params [Integer] :max_results
|
3136
|
-
# The maximum
|
3137
|
-
# call. The service chooses a default number if you don't set one. The
|
3138
|
-
# service might return a `nextToken` even if the `maxResults` value
|
3139
|
-
# has not been met.
|
3322
|
+
# The maximum size of the results that is returned per call.
|
3140
3323
|
#
|
3141
3324
|
# @return [Types::ListConfiguredTablesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3142
3325
|
#
|
@@ -3291,13 +3474,11 @@ module Aws::CleanRooms
|
|
3291
3474
|
# The identifier of the collaboration in which the members are listed.
|
3292
3475
|
#
|
3293
3476
|
# @option params [String] :next_token
|
3294
|
-
# The
|
3477
|
+
# The token value retrieved from a previous call to access the next page
|
3478
|
+
# of results.
|
3295
3479
|
#
|
3296
3480
|
# @option params [Integer] :max_results
|
3297
|
-
# The maximum
|
3298
|
-
# call. The service chooses a default number if you don't set one. The
|
3299
|
-
# service might return a `nextToken` even if the `maxResults` value
|
3300
|
-
# has not been met.
|
3481
|
+
# The maximum size of the results that is returned per call.
|
3301
3482
|
#
|
3302
3483
|
# @return [Types::ListMembersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3303
3484
|
#
|
@@ -3341,13 +3522,11 @@ module Aws::CleanRooms
|
|
3341
3522
|
# Lists all memberships resources within the caller's account.
|
3342
3523
|
#
|
3343
3524
|
# @option params [String] :next_token
|
3344
|
-
# The
|
3525
|
+
# The token value retrieved from a previous call to access the next page
|
3526
|
+
# of results.
|
3345
3527
|
#
|
3346
3528
|
# @option params [Integer] :max_results
|
3347
|
-
# The maximum
|
3348
|
-
# call. The service chooses a default number if you don't set one. The
|
3349
|
-
# service might return a `nextToken` even if the `maxResults` value
|
3350
|
-
# has not been met.
|
3529
|
+
# The maximum size of the results that is returned per call.
|
3351
3530
|
#
|
3352
3531
|
# @option params [String] :status
|
3353
3532
|
# A filter which will return only memberships in the specified status.
|
@@ -3403,13 +3582,13 @@ module Aws::CleanRooms
|
|
3403
3582
|
# this membership belongs to. Accepts a membership ID.
|
3404
3583
|
#
|
3405
3584
|
# @option params [String] :next_token
|
3406
|
-
# The
|
3585
|
+
# The token value retrieved from a previous call to access the next page
|
3586
|
+
# of results.
|
3407
3587
|
#
|
3408
3588
|
# @option params [Integer] :max_results
|
3409
|
-
# The maximum
|
3410
|
-
#
|
3411
|
-
#
|
3412
|
-
# has not been met.
|
3589
|
+
# The maximum size of the results that is returned per call. Service
|
3590
|
+
# chooses a default if it has not been set. Service may return a
|
3591
|
+
# nextToken even if the maximum results has not been met.
|
3413
3592
|
#
|
3414
3593
|
# @return [Types::ListPrivacyBudgetTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3415
3594
|
#
|
@@ -3461,13 +3640,13 @@ module Aws::CleanRooms
|
|
3461
3640
|
# The privacy budget type.
|
3462
3641
|
#
|
3463
3642
|
# @option params [String] :next_token
|
3464
|
-
# The
|
3643
|
+
# The token value retrieved from a previous call to access the next page
|
3644
|
+
# of results.
|
3465
3645
|
#
|
3466
3646
|
# @option params [Integer] :max_results
|
3467
|
-
# The maximum
|
3468
|
-
#
|
3469
|
-
#
|
3470
|
-
# has not been met.
|
3647
|
+
# The maximum size of the results that is returned per call. Service
|
3648
|
+
# chooses a default if it has not been set. Service may return a
|
3649
|
+
# nextToken even if the maximum results has not been met.
|
3471
3650
|
#
|
3472
3651
|
# @return [Types::ListPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3473
3652
|
#
|
@@ -3523,13 +3702,13 @@ module Aws::CleanRooms
|
|
3523
3702
|
# A filter on the status of the protected query.
|
3524
3703
|
#
|
3525
3704
|
# @option params [String] :next_token
|
3526
|
-
# The
|
3705
|
+
# The token value retrieved from a previous call to access the next page
|
3706
|
+
# of results.
|
3527
3707
|
#
|
3528
3708
|
# @option params [Integer] :max_results
|
3529
|
-
# The maximum
|
3530
|
-
#
|
3531
|
-
#
|
3532
|
-
# has not been met.
|
3709
|
+
# The maximum size of the results that is returned per call. Service
|
3710
|
+
# chooses a default if it has not been set. Service can return a
|
3711
|
+
# nextToken even if the maximum results has not been met.
|
3533
3712
|
#
|
3534
3713
|
# @return [Types::ListProtectedQueriesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3535
3714
|
#
|
@@ -3556,6 +3735,10 @@ module Aws::CleanRooms
|
|
3556
3735
|
# resp.protected_queries[0].membership_arn #=> String
|
3557
3736
|
# resp.protected_queries[0].create_time #=> Time
|
3558
3737
|
# resp.protected_queries[0].status #=> String, one of "SUBMITTED", "STARTED", "CANCELLED", "CANCELLING", "FAILED", "SUCCESS", "TIMED_OUT"
|
3738
|
+
# resp.protected_queries[0].receiver_configurations #=> Array
|
3739
|
+
# resp.protected_queries[0].receiver_configurations[0].analysis_type #=> String, one of "DIRECT_ANALYSIS", "ADDITIONAL_ANALYSIS"
|
3740
|
+
# resp.protected_queries[0].receiver_configurations[0].configuration_details.direct_analysis_configuration_details.receiver_account_ids #=> Array
|
3741
|
+
# resp.protected_queries[0].receiver_configurations[0].configuration_details.direct_analysis_configuration_details.receiver_account_ids[0] #=> String
|
3559
3742
|
#
|
3560
3743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueries AWS API Documentation
|
3561
3744
|
#
|
@@ -3573,16 +3756,15 @@ module Aws::CleanRooms
|
|
3573
3756
|
# Currently accepts a collaboration ID.
|
3574
3757
|
#
|
3575
3758
|
# @option params [String] :schema_type
|
3576
|
-
# If present, filter schemas by schema type.
|
3759
|
+
# If present, filter schemas by schema type. The only valid schema type
|
3760
|
+
# is currently `TABLE`.
|
3577
3761
|
#
|
3578
3762
|
# @option params [String] :next_token
|
3579
|
-
# The
|
3763
|
+
# The token value retrieved from a previous call to access the next page
|
3764
|
+
# of results.
|
3580
3765
|
#
|
3581
3766
|
# @option params [Integer] :max_results
|
3582
|
-
# The maximum
|
3583
|
-
# call. The service chooses a default number if you don't set one. The
|
3584
|
-
# service might return a `nextToken` even if the `maxResults` value
|
3585
|
-
# has not been met.
|
3767
|
+
# The maximum size of the results that is returned per call.
|
3586
3768
|
#
|
3587
3769
|
# @return [Types::ListSchemasOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3588
3770
|
#
|
@@ -3768,6 +3950,9 @@ module Aws::CleanRooms
|
|
3768
3950
|
# bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
|
3769
3951
|
# key_prefix: "KeyPrefix",
|
3770
3952
|
# },
|
3953
|
+
# member: {
|
3954
|
+
# account_id: "AccountId", # required
|
3955
|
+
# },
|
3771
3956
|
# },
|
3772
3957
|
# },
|
3773
3958
|
# })
|
@@ -3786,6 +3971,7 @@ module Aws::CleanRooms
|
|
3786
3971
|
# resp.protected_query.result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
|
3787
3972
|
# resp.protected_query.result_configuration.output_configuration.s3.bucket #=> String
|
3788
3973
|
# resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
|
3974
|
+
# resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
|
3789
3975
|
# resp.protected_query.statistics.total_duration_in_millis #=> Integer
|
3790
3976
|
# resp.protected_query.result.output.s3.location #=> String
|
3791
3977
|
# resp.protected_query.result.output.member_list #=> Array
|
@@ -4107,6 +4293,7 @@ module Aws::CleanRooms
|
|
4107
4293
|
# join_columns: ["AnalysisRuleColumnName"], # required
|
4108
4294
|
# allowed_join_operators: ["OR"], # accepts OR, AND
|
4109
4295
|
# list_columns: ["AnalysisRuleColumnName"], # required
|
4296
|
+
# additional_analyses: "ALLOWED", # accepts ALLOWED, REQUIRED, NOT_ALLOWED
|
4110
4297
|
# },
|
4111
4298
|
# aggregation: {
|
4112
4299
|
# aggregate_columns: [ # required
|
@@ -4127,10 +4314,13 @@ module Aws::CleanRooms
|
|
4127
4314
|
# type: "COUNT_DISTINCT", # required, accepts COUNT_DISTINCT
|
4128
4315
|
# },
|
4129
4316
|
# ],
|
4317
|
+
# additional_analyses: "ALLOWED", # accepts ALLOWED, REQUIRED, NOT_ALLOWED
|
4130
4318
|
# },
|
4131
4319
|
# custom: {
|
4132
4320
|
# allowed_analyses: ["AnalysisTemplateArnOrQueryWildcard"], # required
|
4133
4321
|
# allowed_analysis_providers: ["AccountId"],
|
4322
|
+
# additional_analyses: "ALLOWED", # accepts ALLOWED, REQUIRED, NOT_ALLOWED
|
4323
|
+
# disallowed_output_columns: ["AnalysisRuleColumnName"],
|
4134
4324
|
# differential_privacy: {
|
4135
4325
|
# columns: [ # required
|
4136
4326
|
# {
|
@@ -4153,6 +4343,7 @@ module Aws::CleanRooms
|
|
4153
4343
|
# resp.analysis_rule.policy.v1.list.allowed_join_operators[0] #=> String, one of "OR", "AND"
|
4154
4344
|
# resp.analysis_rule.policy.v1.list.list_columns #=> Array
|
4155
4345
|
# resp.analysis_rule.policy.v1.list.list_columns[0] #=> String
|
4346
|
+
# resp.analysis_rule.policy.v1.list.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
4156
4347
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns #=> Array
|
4157
4348
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names #=> Array
|
4158
4349
|
# resp.analysis_rule.policy.v1.aggregation.aggregate_columns[0].column_names[0] #=> String
|
@@ -4170,10 +4361,14 @@ module Aws::CleanRooms
|
|
4170
4361
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].column_name #=> String
|
4171
4362
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].minimum #=> Integer
|
4172
4363
|
# resp.analysis_rule.policy.v1.aggregation.output_constraints[0].type #=> String, one of "COUNT_DISTINCT"
|
4364
|
+
# resp.analysis_rule.policy.v1.aggregation.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
4173
4365
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses #=> Array
|
4174
4366
|
# resp.analysis_rule.policy.v1.custom.allowed_analyses[0] #=> String
|
4175
4367
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers #=> Array
|
4176
4368
|
# resp.analysis_rule.policy.v1.custom.allowed_analysis_providers[0] #=> String
|
4369
|
+
# resp.analysis_rule.policy.v1.custom.additional_analyses #=> String, one of "ALLOWED", "REQUIRED", "NOT_ALLOWED"
|
4370
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns #=> Array
|
4371
|
+
# resp.analysis_rule.policy.v1.custom.disallowed_output_columns[0] #=> String
|
4177
4372
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns #=> Array
|
4178
4373
|
# resp.analysis_rule.policy.v1.custom.differential_privacy.columns[0].name #=> String
|
4179
4374
|
# resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
@@ -4230,6 +4425,8 @@ module Aws::CleanRooms
|
|
4230
4425
|
# resp.configured_table_association.role_arn #=> String
|
4231
4426
|
# resp.configured_table_association.name #=> String
|
4232
4427
|
# resp.configured_table_association.description #=> String
|
4428
|
+
# resp.configured_table_association.analysis_rule_types #=> Array
|
4429
|
+
# resp.configured_table_association.analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
4233
4430
|
# resp.configured_table_association.create_time #=> Time
|
4234
4431
|
# resp.configured_table_association.update_time #=> Time
|
4235
4432
|
#
|
@@ -4242,6 +4439,79 @@ module Aws::CleanRooms
|
|
4242
4439
|
req.send_request(options)
|
4243
4440
|
end
|
4244
4441
|
|
4442
|
+
# Updates the analysis rule for a configured table association.
|
4443
|
+
#
|
4444
|
+
# @option params [required, String] :membership_identifier
|
4445
|
+
# A unique identifier for the membership that the configured table
|
4446
|
+
# association belongs to. Currently accepts the membership ID.
|
4447
|
+
#
|
4448
|
+
# @option params [required, String] :configured_table_association_identifier
|
4449
|
+
# The identifier for the configured table association to update.
|
4450
|
+
#
|
4451
|
+
# @option params [required, String] :analysis_rule_type
|
4452
|
+
# The analysis rule type that you want to update.
|
4453
|
+
#
|
4454
|
+
# @option params [required, Types::ConfiguredTableAssociationAnalysisRulePolicy] :analysis_rule_policy
|
4455
|
+
# The updated analysis rule policy for the configured table association.
|
4456
|
+
#
|
4457
|
+
# @return [Types::UpdateConfiguredTableAssociationAnalysisRuleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4458
|
+
#
|
4459
|
+
# * {Types::UpdateConfiguredTableAssociationAnalysisRuleOutput#analysis_rule #analysis_rule} => Types::ConfiguredTableAssociationAnalysisRule
|
4460
|
+
#
|
4461
|
+
# @example Request syntax with placeholder values
|
4462
|
+
#
|
4463
|
+
# resp = client.update_configured_table_association_analysis_rule({
|
4464
|
+
# membership_identifier: "MembershipIdentifier", # required
|
4465
|
+
# configured_table_association_identifier: "ConfiguredTableAssociationIdentifier", # required
|
4466
|
+
# analysis_rule_type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM
|
4467
|
+
# analysis_rule_policy: { # required
|
4468
|
+
# v1: {
|
4469
|
+
# list: {
|
4470
|
+
# allowed_result_receivers: ["AccountId"],
|
4471
|
+
# allowed_additional_analyses: ["AdditionalAnalysesResourceArn"],
|
4472
|
+
# },
|
4473
|
+
# aggregation: {
|
4474
|
+
# allowed_result_receivers: ["AccountId"],
|
4475
|
+
# allowed_additional_analyses: ["AdditionalAnalysesResourceArn"],
|
4476
|
+
# },
|
4477
|
+
# custom: {
|
4478
|
+
# allowed_result_receivers: ["AccountId"],
|
4479
|
+
# allowed_additional_analyses: ["AdditionalAnalysesResourceArn"],
|
4480
|
+
# },
|
4481
|
+
# },
|
4482
|
+
# },
|
4483
|
+
# })
|
4484
|
+
#
|
4485
|
+
# @example Response structure
|
4486
|
+
#
|
4487
|
+
# resp.analysis_rule.membership_identifier #=> String
|
4488
|
+
# resp.analysis_rule.configured_table_association_id #=> String
|
4489
|
+
# resp.analysis_rule.configured_table_association_arn #=> String
|
4490
|
+
# resp.analysis_rule.policy.v1.list.allowed_result_receivers #=> Array
|
4491
|
+
# resp.analysis_rule.policy.v1.list.allowed_result_receivers[0] #=> String
|
4492
|
+
# resp.analysis_rule.policy.v1.list.allowed_additional_analyses #=> Array
|
4493
|
+
# resp.analysis_rule.policy.v1.list.allowed_additional_analyses[0] #=> String
|
4494
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_result_receivers #=> Array
|
4495
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_result_receivers[0] #=> String
|
4496
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_additional_analyses #=> Array
|
4497
|
+
# resp.analysis_rule.policy.v1.aggregation.allowed_additional_analyses[0] #=> String
|
4498
|
+
# resp.analysis_rule.policy.v1.custom.allowed_result_receivers #=> Array
|
4499
|
+
# resp.analysis_rule.policy.v1.custom.allowed_result_receivers[0] #=> String
|
4500
|
+
# resp.analysis_rule.policy.v1.custom.allowed_additional_analyses #=> Array
|
4501
|
+
# resp.analysis_rule.policy.v1.custom.allowed_additional_analyses[0] #=> String
|
4502
|
+
# resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
|
4503
|
+
# resp.analysis_rule.create_time #=> Time
|
4504
|
+
# resp.analysis_rule.update_time #=> Time
|
4505
|
+
#
|
4506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociationAnalysisRule AWS API Documentation
|
4507
|
+
#
|
4508
|
+
# @overload update_configured_table_association_analysis_rule(params = {})
|
4509
|
+
# @param [Hash] params ({})
|
4510
|
+
def update_configured_table_association_analysis_rule(params = {}, options = {})
|
4511
|
+
req = build_request(:update_configured_table_association_analysis_rule, params)
|
4512
|
+
req.send_request(options)
|
4513
|
+
end
|
4514
|
+
|
4245
4515
|
# Provides the details that are necessary to update an ID mapping table.
|
4246
4516
|
#
|
4247
4517
|
# @option params [required, String] :id_mapping_table_identifier
|
@@ -4523,6 +4793,7 @@ module Aws::CleanRooms
|
|
4523
4793
|
# resp.protected_query.result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
|
4524
4794
|
# resp.protected_query.result_configuration.output_configuration.s3.bucket #=> String
|
4525
4795
|
# resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
|
4796
|
+
# resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
|
4526
4797
|
# resp.protected_query.statistics.total_duration_in_millis #=> Integer
|
4527
4798
|
# resp.protected_query.result.output.s3.location #=> String
|
4528
4799
|
# resp.protected_query.result.output.member_list #=> Array
|
@@ -4558,7 +4829,7 @@ module Aws::CleanRooms
|
|
4558
4829
|
params: params,
|
4559
4830
|
config: config)
|
4560
4831
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
4561
|
-
context[:gem_version] = '1.
|
4832
|
+
context[:gem_version] = '1.27.0'
|
4562
4833
|
Seahorse::Client::Request.new(handlers, context)
|
4563
4834
|
end
|
4564
4835
|
|