aws-sdk-cleanrooms 1.26.0 → 1.28.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 +371 -83
- 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 +95 -4
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +144 -2
- metadata +4 -4
data/lib/aws-sdk-cleanrooms.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
@@ -224,7 +225,8 @@ module Aws
|
|
224
225
|
list: {
|
225
226
|
join_columns: Array[::String],
|
226
227
|
allowed_join_operators: Array[("OR" | "AND")]?,
|
227
|
-
list_columns: Array[::String]
|
228
|
+
list_columns: Array[::String],
|
229
|
+
additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
|
228
230
|
}?,
|
229
231
|
aggregation: {
|
230
232
|
aggregate_columns: Array[
|
@@ -244,11 +246,14 @@ module Aws
|
|
244
246
|
minimum: ::Integer,
|
245
247
|
type: ("COUNT_DISTINCT")
|
246
248
|
},
|
247
|
-
]
|
249
|
+
],
|
250
|
+
additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
|
248
251
|
}?,
|
249
252
|
custom: {
|
250
253
|
allowed_analyses: Array[::String],
|
251
254
|
allowed_analysis_providers: Array[::String]?,
|
255
|
+
additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?,
|
256
|
+
disallowed_output_columns: Array[::String]?,
|
252
257
|
differential_privacy: {
|
253
258
|
columns: Array[
|
254
259
|
{
|
@@ -277,6 +282,34 @@ module Aws
|
|
277
282
|
) -> _CreateConfiguredTableAssociationResponseSuccess
|
278
283
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableAssociationResponseSuccess
|
279
284
|
|
285
|
+
interface _CreateConfiguredTableAssociationAnalysisRuleResponseSuccess
|
286
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredTableAssociationAnalysisRuleOutput]
|
287
|
+
def analysis_rule: () -> Types::ConfiguredTableAssociationAnalysisRule
|
288
|
+
end
|
289
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_configured_table_association_analysis_rule-instance_method
|
290
|
+
def create_configured_table_association_analysis_rule: (
|
291
|
+
membership_identifier: ::String,
|
292
|
+
configured_table_association_identifier: ::String,
|
293
|
+
analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM"),
|
294
|
+
analysis_rule_policy: {
|
295
|
+
v1: {
|
296
|
+
list: {
|
297
|
+
allowed_result_receivers: Array[::String]?,
|
298
|
+
allowed_additional_analyses: Array[::String]?
|
299
|
+
}?,
|
300
|
+
aggregation: {
|
301
|
+
allowed_result_receivers: Array[::String]?,
|
302
|
+
allowed_additional_analyses: Array[::String]?
|
303
|
+
}?,
|
304
|
+
custom: {
|
305
|
+
allowed_result_receivers: Array[::String]?,
|
306
|
+
allowed_additional_analyses: Array[::String]?
|
307
|
+
}?
|
308
|
+
}?
|
309
|
+
}
|
310
|
+
) -> _CreateConfiguredTableAssociationAnalysisRuleResponseSuccess
|
311
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredTableAssociationAnalysisRuleResponseSuccess
|
312
|
+
|
280
313
|
interface _CreateIdMappingTableResponseSuccess
|
281
314
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIdMappingTableOutput]
|
282
315
|
def id_mapping_table: () -> Types::IdMappingTable
|
@@ -419,6 +452,17 @@ module Aws
|
|
419
452
|
) -> _DeleteConfiguredTableAssociationResponseSuccess
|
420
453
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableAssociationResponseSuccess
|
421
454
|
|
455
|
+
interface _DeleteConfiguredTableAssociationAnalysisRuleResponseSuccess
|
456
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfiguredTableAssociationAnalysisRuleOutput]
|
457
|
+
end
|
458
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#delete_configured_table_association_analysis_rule-instance_method
|
459
|
+
def delete_configured_table_association_analysis_rule: (
|
460
|
+
membership_identifier: ::String,
|
461
|
+
configured_table_association_identifier: ::String,
|
462
|
+
analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
463
|
+
) -> _DeleteConfiguredTableAssociationAnalysisRuleResponseSuccess
|
464
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfiguredTableAssociationAnalysisRuleResponseSuccess
|
465
|
+
|
422
466
|
interface _DeleteIdMappingTableResponseSuccess
|
423
467
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdMappingTableOutput]
|
424
468
|
end
|
@@ -576,6 +620,18 @@ module Aws
|
|
576
620
|
) -> _GetConfiguredTableAssociationResponseSuccess
|
577
621
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableAssociationResponseSuccess
|
578
622
|
|
623
|
+
interface _GetConfiguredTableAssociationAnalysisRuleResponseSuccess
|
624
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredTableAssociationAnalysisRuleOutput]
|
625
|
+
def analysis_rule: () -> Types::ConfiguredTableAssociationAnalysisRule
|
626
|
+
end
|
627
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#get_configured_table_association_analysis_rule-instance_method
|
628
|
+
def get_configured_table_association_analysis_rule: (
|
629
|
+
membership_identifier: ::String,
|
630
|
+
configured_table_association_identifier: ::String,
|
631
|
+
analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM")
|
632
|
+
) -> _GetConfiguredTableAssociationAnalysisRuleResponseSuccess
|
633
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredTableAssociationAnalysisRuleResponseSuccess
|
634
|
+
|
579
635
|
interface _GetIdMappingTableResponseSuccess
|
580
636
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdMappingTableOutput]
|
581
637
|
def id_mapping_table: () -> Types::IdMappingTable
|
@@ -946,6 +1002,9 @@ module Aws
|
|
946
1002
|
result_format: ("CSV" | "PARQUET"),
|
947
1003
|
bucket: ::String,
|
948
1004
|
key_prefix: ::String?
|
1005
|
+
}?,
|
1006
|
+
member: {
|
1007
|
+
account_id: ::String
|
949
1008
|
}?
|
950
1009
|
}
|
951
1010
|
}
|
@@ -1034,7 +1093,8 @@ module Aws
|
|
1034
1093
|
list: {
|
1035
1094
|
join_columns: Array[::String],
|
1036
1095
|
allowed_join_operators: Array[("OR" | "AND")]?,
|
1037
|
-
list_columns: Array[::String]
|
1096
|
+
list_columns: Array[::String],
|
1097
|
+
additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
|
1038
1098
|
}?,
|
1039
1099
|
aggregation: {
|
1040
1100
|
aggregate_columns: Array[
|
@@ -1054,11 +1114,14 @@ module Aws
|
|
1054
1114
|
minimum: ::Integer,
|
1055
1115
|
type: ("COUNT_DISTINCT")
|
1056
1116
|
},
|
1057
|
-
]
|
1117
|
+
],
|
1118
|
+
additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?
|
1058
1119
|
}?,
|
1059
1120
|
custom: {
|
1060
1121
|
allowed_analyses: Array[::String],
|
1061
1122
|
allowed_analysis_providers: Array[::String]?,
|
1123
|
+
additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")?,
|
1124
|
+
disallowed_output_columns: Array[::String]?,
|
1062
1125
|
differential_privacy: {
|
1063
1126
|
columns: Array[
|
1064
1127
|
{
|
@@ -1085,6 +1148,34 @@ module Aws
|
|
1085
1148
|
) -> _UpdateConfiguredTableAssociationResponseSuccess
|
1086
1149
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableAssociationResponseSuccess
|
1087
1150
|
|
1151
|
+
interface _UpdateConfiguredTableAssociationAnalysisRuleResponseSuccess
|
1152
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredTableAssociationAnalysisRuleOutput]
|
1153
|
+
def analysis_rule: () -> Types::ConfiguredTableAssociationAnalysisRule
|
1154
|
+
end
|
1155
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_configured_table_association_analysis_rule-instance_method
|
1156
|
+
def update_configured_table_association_analysis_rule: (
|
1157
|
+
membership_identifier: ::String,
|
1158
|
+
configured_table_association_identifier: ::String,
|
1159
|
+
analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM"),
|
1160
|
+
analysis_rule_policy: {
|
1161
|
+
v1: {
|
1162
|
+
list: {
|
1163
|
+
allowed_result_receivers: Array[::String]?,
|
1164
|
+
allowed_additional_analyses: Array[::String]?
|
1165
|
+
}?,
|
1166
|
+
aggregation: {
|
1167
|
+
allowed_result_receivers: Array[::String]?,
|
1168
|
+
allowed_additional_analyses: Array[::String]?
|
1169
|
+
}?,
|
1170
|
+
custom: {
|
1171
|
+
allowed_result_receivers: Array[::String]?,
|
1172
|
+
allowed_additional_analyses: Array[::String]?
|
1173
|
+
}?
|
1174
|
+
}?
|
1175
|
+
}
|
1176
|
+
) -> _UpdateConfiguredTableAssociationAnalysisRuleResponseSuccess
|
1177
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredTableAssociationAnalysisRuleResponseSuccess
|
1178
|
+
|
1088
1179
|
interface _UpdateIdMappingTableResponseSuccess
|
1089
1180
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdMappingTableOutput]
|
1090
1181
|
def id_mapping_table: () -> Types::IdMappingTable
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -52,12 +52,15 @@ 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
|
@@ -73,6 +76,7 @@ module Aws::CleanRooms
|
|
73
76
|
attr_accessor join_columns: ::Array[::String]
|
74
77
|
attr_accessor allowed_join_operators: ::Array[("OR" | "AND")]
|
75
78
|
attr_accessor list_columns: ::Array[::String]
|
79
|
+
attr_accessor additional_analyses: ("ALLOWED" | "REQUIRED" | "NOT_ALLOWED")
|
76
80
|
SENSITIVE: []
|
77
81
|
end
|
78
82
|
|
@@ -392,6 +396,17 @@ module Aws::CleanRooms
|
|
392
396
|
SENSITIVE: []
|
393
397
|
end
|
394
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
|
+
|
395
410
|
class ConfiguredAudienceModelAssociation
|
396
411
|
attr_accessor id: ::String
|
397
412
|
attr_accessor arn: ::String
|
@@ -485,11 +500,69 @@ module Aws::CleanRooms
|
|
485
500
|
attr_accessor role_arn: ::String
|
486
501
|
attr_accessor name: ::String
|
487
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")
|
488
515
|
attr_accessor create_time: ::Time
|
489
516
|
attr_accessor update_time: ::Time
|
490
517
|
SENSITIVE: []
|
491
518
|
end
|
492
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
|
+
|
493
566
|
class ConfiguredTableAssociationSummary
|
494
567
|
attr_accessor configured_table_id: ::String
|
495
568
|
attr_accessor membership_id: ::String
|
@@ -582,6 +655,19 @@ module Aws::CleanRooms
|
|
582
655
|
SENSITIVE: []
|
583
656
|
end
|
584
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
|
+
|
585
671
|
class CreateConfiguredTableAssociationInput
|
586
672
|
attr_accessor name: ::String
|
587
673
|
attr_accessor description: ::String
|
@@ -713,6 +799,16 @@ module Aws::CleanRooms
|
|
713
799
|
class DeleteConfiguredTableAnalysisRuleOutput < Aws::EmptyStructure
|
714
800
|
end
|
715
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
|
+
|
716
812
|
class DeleteConfiguredTableAssociationInput
|
717
813
|
attr_accessor configured_table_association_identifier: ::String
|
718
814
|
attr_accessor membership_identifier: ::String
|
@@ -846,6 +942,11 @@ module Aws::CleanRooms
|
|
846
942
|
SENSITIVE: []
|
847
943
|
end
|
848
944
|
|
945
|
+
class DirectAnalysisConfigurationDetails
|
946
|
+
attr_accessor receiver_account_ids: ::Array[::String]
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
849
950
|
class GetAnalysisTemplateInput
|
850
951
|
attr_accessor membership_identifier: ::String
|
851
952
|
attr_accessor analysis_template_identifier: ::String
|
@@ -933,6 +1034,18 @@ module Aws::CleanRooms
|
|
933
1034
|
SENSITIVE: []
|
934
1035
|
end
|
935
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
|
+
|
936
1049
|
class GetConfiguredTableAssociationInput
|
937
1050
|
attr_accessor configured_table_association_identifier: ::String
|
938
1051
|
attr_accessor membership_identifier: ::String
|
@@ -1637,6 +1750,11 @@ module Aws::CleanRooms
|
|
1637
1750
|
SENSITIVE: []
|
1638
1751
|
end
|
1639
1752
|
|
1753
|
+
class ProtectedQueryMemberOutputConfiguration
|
1754
|
+
attr_accessor account_id: ::String
|
1755
|
+
SENSITIVE: []
|
1756
|
+
end
|
1757
|
+
|
1640
1758
|
class ProtectedQueryOutput
|
1641
1759
|
attr_accessor s3: Types::ProtectedQueryS3Output
|
1642
1760
|
attr_accessor member_list: ::Array[Types::ProtectedQuerySingleMemberOutput]
|
@@ -1653,11 +1771,14 @@ module Aws::CleanRooms
|
|
1653
1771
|
|
1654
1772
|
class ProtectedQueryOutputConfiguration
|
1655
1773
|
attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
|
1774
|
+
attr_accessor member: Types::ProtectedQueryMemberOutputConfiguration
|
1656
1775
|
attr_accessor unknown: untyped
|
1657
1776
|
SENSITIVE: []
|
1658
1777
|
|
1659
1778
|
class S3 < ProtectedQueryOutputConfiguration
|
1660
1779
|
end
|
1780
|
+
class Member < ProtectedQueryOutputConfiguration
|
1781
|
+
end
|
1661
1782
|
class Unknown < ProtectedQueryOutputConfiguration
|
1662
1783
|
end
|
1663
1784
|
end
|
@@ -1707,6 +1828,7 @@ module Aws::CleanRooms
|
|
1707
1828
|
attr_accessor membership_arn: ::String
|
1708
1829
|
attr_accessor create_time: ::Time
|
1709
1830
|
attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
|
1831
|
+
attr_accessor receiver_configurations: ::Array[Types::ReceiverConfiguration]
|
1710
1832
|
SENSITIVE: []
|
1711
1833
|
end
|
1712
1834
|
|
@@ -1731,6 +1853,12 @@ module Aws::CleanRooms
|
|
1731
1853
|
SENSITIVE: []
|
1732
1854
|
end
|
1733
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
|
+
|
1734
1862
|
class ResourceNotFoundException
|
1735
1863
|
attr_accessor message: ::String
|
1736
1864
|
attr_accessor resource_id: ::String
|
@@ -1766,12 +1894,13 @@ module Aws::CleanRooms
|
|
1766
1894
|
attr_accessor status: ("READY" | "NOT_READY")
|
1767
1895
|
attr_accessor reasons: ::Array[Types::SchemaStatusReason]
|
1768
1896
|
attr_accessor analysis_rule_type: ("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")
|
1769
|
-
attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY"
|
1897
|
+
attr_accessor configurations: ::Array[("DIFFERENTIAL_PRIVACY")]
|
1898
|
+
attr_accessor analysis_type: ("DIRECT_ANALYSIS" | "ADDITIONAL_ANALYSIS")
|
1770
1899
|
SENSITIVE: []
|
1771
1900
|
end
|
1772
1901
|
|
1773
1902
|
class SchemaStatusReason
|
1774
|
-
attr_accessor code: ("ANALYSIS_RULE_MISSING" | "ANALYSIS_TEMPLATES_NOT_CONFIGURED" | "ANALYSIS_PROVIDERS_NOT_CONFIGURED" | "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED" | "ID_MAPPING_TABLE_NOT_POPULATED")
|
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")
|
1775
1904
|
attr_accessor message: ::String
|
1776
1905
|
SENSITIVE: []
|
1777
1906
|
end
|
@@ -1903,6 +2032,19 @@ module Aws::CleanRooms
|
|
1903
2032
|
SENSITIVE: []
|
1904
2033
|
end
|
1905
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
|
+
|
1906
2048
|
class UpdateConfiguredTableAssociationInput
|
1907
2049
|
attr_accessor configured_table_association_identifier: ::String
|
1908
2050
|
attr_accessor membership_identifier: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cleanrooms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.28.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|