aws-sdk-cleanrooms 1.60.0 → 1.62.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +160 -13
- data/lib/aws-sdk-cleanrooms/client_api.rb +88 -1
- data/lib/aws-sdk-cleanrooms/types.rb +286 -9
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +42 -3
- data/sig/types.rbs +79 -5
- metadata +1 -1
|
@@ -686,6 +686,11 @@ module Aws::CleanRooms
|
|
|
686
686
|
# for faster troubleshooting in development and testing environments.
|
|
687
687
|
# @return [Types::ErrorMessageConfiguration]
|
|
688
688
|
#
|
|
689
|
+
# @!attribute [rw] synthetic_data_parameters
|
|
690
|
+
# The parameters used to generate synthetic data for this analysis
|
|
691
|
+
# template.
|
|
692
|
+
# @return [Types::SyntheticDataParameters]
|
|
693
|
+
#
|
|
689
694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplate AWS API Documentation
|
|
690
695
|
#
|
|
691
696
|
class AnalysisTemplate < Struct.new(
|
|
@@ -705,7 +710,8 @@ module Aws::CleanRooms
|
|
|
705
710
|
:source_metadata,
|
|
706
711
|
:analysis_parameters,
|
|
707
712
|
:validations,
|
|
708
|
-
:error_message_configuration
|
|
713
|
+
:error_message_configuration,
|
|
714
|
+
:synthetic_data_parameters)
|
|
709
715
|
SENSITIVE = [:analysis_parameters]
|
|
710
716
|
include Aws::Structure
|
|
711
717
|
end
|
|
@@ -813,6 +819,11 @@ module Aws::CleanRooms
|
|
|
813
819
|
# The description of the analysis template.
|
|
814
820
|
# @return [String]
|
|
815
821
|
#
|
|
822
|
+
# @!attribute [rw] is_synthetic_data
|
|
823
|
+
# Indicates if this analysis template summary generated synthetic
|
|
824
|
+
# data.
|
|
825
|
+
# @return [Boolean]
|
|
826
|
+
#
|
|
816
827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplateSummary AWS API Documentation
|
|
817
828
|
#
|
|
818
829
|
class AnalysisTemplateSummary < Struct.new(
|
|
@@ -825,7 +836,8 @@ module Aws::CleanRooms
|
|
|
825
836
|
:membership_id,
|
|
826
837
|
:collaboration_arn,
|
|
827
838
|
:collaboration_id,
|
|
828
|
-
:description
|
|
839
|
+
:description,
|
|
840
|
+
:is_synthetic_data)
|
|
829
841
|
SENSITIVE = []
|
|
830
842
|
include Aws::Structure
|
|
831
843
|
end
|
|
@@ -882,6 +894,22 @@ module Aws::CleanRooms
|
|
|
882
894
|
include Aws::Structure
|
|
883
895
|
end
|
|
884
896
|
|
|
897
|
+
# Contains detailed information about the approval state of a given
|
|
898
|
+
# member in the collaboration for a given collaboration change request.
|
|
899
|
+
#
|
|
900
|
+
# @!attribute [rw] status
|
|
901
|
+
# The approval status of a member's vote on the change request. Valid
|
|
902
|
+
# values are PENDING (if they haven't voted), APPROVED, or DENIED.
|
|
903
|
+
# @return [String]
|
|
904
|
+
#
|
|
905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ApprovalStatusDetails AWS API Documentation
|
|
906
|
+
#
|
|
907
|
+
class ApprovalStatusDetails < Struct.new(
|
|
908
|
+
:status)
|
|
909
|
+
SENSITIVE = []
|
|
910
|
+
include Aws::Structure
|
|
911
|
+
end
|
|
912
|
+
|
|
885
913
|
# A reference to a table within Athena.
|
|
886
914
|
#
|
|
887
915
|
# @!attribute [rw] region
|
|
@@ -1222,16 +1250,24 @@ module Aws::CleanRooms
|
|
|
1222
1250
|
# The member change specification when the change type is `MEMBER`.
|
|
1223
1251
|
# @return [Types::MemberChangeSpecification]
|
|
1224
1252
|
#
|
|
1253
|
+
# @!attribute [rw] collaboration
|
|
1254
|
+
# The collaboration configuration changes being requested. Currently,
|
|
1255
|
+
# this only supports modifying which change types are auto-approved
|
|
1256
|
+
# for the collaboration.
|
|
1257
|
+
# @return [Types::CollaborationChangeSpecification]
|
|
1258
|
+
#
|
|
1225
1259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ChangeSpecification AWS API Documentation
|
|
1226
1260
|
#
|
|
1227
1261
|
class ChangeSpecification < Struct.new(
|
|
1228
1262
|
:member,
|
|
1263
|
+
:collaboration,
|
|
1229
1264
|
:unknown)
|
|
1230
1265
|
SENSITIVE = []
|
|
1231
1266
|
include Aws::Structure
|
|
1232
1267
|
include Aws::Structure::Union
|
|
1233
1268
|
|
|
1234
1269
|
class Member < ChangeSpecification; end
|
|
1270
|
+
class Collaboration < ChangeSpecification; end
|
|
1235
1271
|
class Unknown < ChangeSpecification; end
|
|
1236
1272
|
end
|
|
1237
1273
|
|
|
@@ -1428,6 +1464,11 @@ module Aws::CleanRooms
|
|
|
1428
1464
|
# for faster troubleshooting in development and testing environments.
|
|
1429
1465
|
# @return [Types::ErrorMessageConfiguration]
|
|
1430
1466
|
#
|
|
1467
|
+
# @!attribute [rw] synthetic_data_parameters
|
|
1468
|
+
# The synthetic data generation parameters configured for this
|
|
1469
|
+
# collaboration analysis template.
|
|
1470
|
+
# @return [Types::SyntheticDataParameters]
|
|
1471
|
+
#
|
|
1431
1472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplate AWS API Documentation
|
|
1432
1473
|
#
|
|
1433
1474
|
class CollaborationAnalysisTemplate < Struct.new(
|
|
@@ -1446,7 +1487,8 @@ module Aws::CleanRooms
|
|
|
1446
1487
|
:source_metadata,
|
|
1447
1488
|
:analysis_parameters,
|
|
1448
1489
|
:validations,
|
|
1449
|
-
:error_message_configuration
|
|
1490
|
+
:error_message_configuration,
|
|
1491
|
+
:synthetic_data_parameters)
|
|
1450
1492
|
SENSITIVE = [:analysis_parameters]
|
|
1451
1493
|
include Aws::Structure
|
|
1452
1494
|
end
|
|
@@ -1493,6 +1535,11 @@ module Aws::CleanRooms
|
|
|
1493
1535
|
# The description of the analysis template.
|
|
1494
1536
|
# @return [String]
|
|
1495
1537
|
#
|
|
1538
|
+
# @!attribute [rw] is_synthetic_data
|
|
1539
|
+
# Indicates if this collaboration analysis template uses synthetic
|
|
1540
|
+
# data generation.
|
|
1541
|
+
# @return [Boolean]
|
|
1542
|
+
#
|
|
1496
1543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplateSummary AWS API Documentation
|
|
1497
1544
|
#
|
|
1498
1545
|
class CollaborationAnalysisTemplateSummary < Struct.new(
|
|
@@ -1504,7 +1551,8 @@ module Aws::CleanRooms
|
|
|
1504
1551
|
:collaboration_arn,
|
|
1505
1552
|
:collaboration_id,
|
|
1506
1553
|
:creator_account_id,
|
|
1507
|
-
:description
|
|
1554
|
+
:description,
|
|
1555
|
+
:is_synthetic_data)
|
|
1508
1556
|
SENSITIVE = []
|
|
1509
1557
|
include Aws::Structure
|
|
1510
1558
|
end
|
|
@@ -1543,6 +1591,11 @@ module Aws::CleanRooms
|
|
|
1543
1591
|
# The list of changes specified in this change request.
|
|
1544
1592
|
# @return [Array<Types::Change>]
|
|
1545
1593
|
#
|
|
1594
|
+
# @!attribute [rw] approvals
|
|
1595
|
+
# A list of approval details from collaboration members, including
|
|
1596
|
+
# approval status and multi-party approval workflow information.
|
|
1597
|
+
# @return [Hash<String,Types::ApprovalStatusDetails>]
|
|
1598
|
+
#
|
|
1546
1599
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequest AWS API Documentation
|
|
1547
1600
|
#
|
|
1548
1601
|
class CollaborationChangeRequest < Struct.new(
|
|
@@ -1552,7 +1605,8 @@ module Aws::CleanRooms
|
|
|
1552
1605
|
:update_time,
|
|
1553
1606
|
:status,
|
|
1554
1607
|
:is_auto_approved,
|
|
1555
|
-
:changes
|
|
1608
|
+
:changes,
|
|
1609
|
+
:approvals)
|
|
1556
1610
|
SENSITIVE = []
|
|
1557
1611
|
include Aws::Structure
|
|
1558
1612
|
end
|
|
@@ -1587,6 +1641,11 @@ module Aws::CleanRooms
|
|
|
1587
1641
|
# Summary of the changes in this change request.
|
|
1588
1642
|
# @return [Array<Types::Change>]
|
|
1589
1643
|
#
|
|
1644
|
+
# @!attribute [rw] approvals
|
|
1645
|
+
# Summary of approval statuses from all collaboration members for this
|
|
1646
|
+
# change request.
|
|
1647
|
+
# @return [Hash<String,Types::ApprovalStatusDetails>]
|
|
1648
|
+
#
|
|
1590
1649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeRequestSummary AWS API Documentation
|
|
1591
1650
|
#
|
|
1592
1651
|
class CollaborationChangeRequestSummary < Struct.new(
|
|
@@ -1596,7 +1655,25 @@ module Aws::CleanRooms
|
|
|
1596
1655
|
:update_time,
|
|
1597
1656
|
:status,
|
|
1598
1657
|
:is_auto_approved,
|
|
1599
|
-
:changes
|
|
1658
|
+
:changes,
|
|
1659
|
+
:approvals)
|
|
1660
|
+
SENSITIVE = []
|
|
1661
|
+
include Aws::Structure
|
|
1662
|
+
end
|
|
1663
|
+
|
|
1664
|
+
# Defines the specific changes being requested for a collaboration,
|
|
1665
|
+
# including configuration modifications and approval requirements.
|
|
1666
|
+
#
|
|
1667
|
+
# @!attribute [rw] auto_approved_change_types
|
|
1668
|
+
# Defines requested updates to properties of the collaboration.
|
|
1669
|
+
# Currently, this only supports modifying which change types are
|
|
1670
|
+
# auto-approved for the collaboration.
|
|
1671
|
+
# @return [Array<String>]
|
|
1672
|
+
#
|
|
1673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationChangeSpecification AWS API Documentation
|
|
1674
|
+
#
|
|
1675
|
+
class CollaborationChangeSpecification < Struct.new(
|
|
1676
|
+
:auto_approved_change_types)
|
|
1600
1677
|
SENSITIVE = []
|
|
1601
1678
|
include Aws::Structure
|
|
1602
1679
|
end
|
|
@@ -2160,6 +2237,24 @@ module Aws::CleanRooms
|
|
|
2160
2237
|
include Aws::Structure
|
|
2161
2238
|
end
|
|
2162
2239
|
|
|
2240
|
+
# Contains classification information for data columns, including
|
|
2241
|
+
# mappings that specify how columns should be handled during synthetic
|
|
2242
|
+
# data generation and privacy analysis.
|
|
2243
|
+
#
|
|
2244
|
+
# @!attribute [rw] column_mapping
|
|
2245
|
+
# A mapping that defines the classification of data columns for
|
|
2246
|
+
# synthetic data generation and specifies how each column should be
|
|
2247
|
+
# handled during the privacy-preserving data synthesis process.
|
|
2248
|
+
# @return [Array<Types::SyntheticDataColumnProperties>]
|
|
2249
|
+
#
|
|
2250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ColumnClassificationDetails AWS API Documentation
|
|
2251
|
+
#
|
|
2252
|
+
class ColumnClassificationDetails < Struct.new(
|
|
2253
|
+
:column_mapping)
|
|
2254
|
+
SENSITIVE = []
|
|
2255
|
+
include Aws::Structure
|
|
2256
|
+
end
|
|
2257
|
+
|
|
2163
2258
|
# The configuration of the compute resources for an analysis with the
|
|
2164
2259
|
# Spark analytics engine.
|
|
2165
2260
|
#
|
|
@@ -3188,6 +3283,11 @@ module Aws::CleanRooms
|
|
|
3188
3283
|
# for faster troubleshooting in development and testing environments.
|
|
3189
3284
|
# @return [Types::ErrorMessageConfiguration]
|
|
3190
3285
|
#
|
|
3286
|
+
# @!attribute [rw] synthetic_data_parameters
|
|
3287
|
+
# The parameters for generating synthetic data when running the
|
|
3288
|
+
# analysis template.
|
|
3289
|
+
# @return [Types::SyntheticDataParameters]
|
|
3290
|
+
#
|
|
3191
3291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplateInput AWS API Documentation
|
|
3192
3292
|
#
|
|
3193
3293
|
class CreateAnalysisTemplateInput < Struct.new(
|
|
@@ -3199,7 +3299,8 @@ module Aws::CleanRooms
|
|
|
3199
3299
|
:tags,
|
|
3200
3300
|
:analysis_parameters,
|
|
3201
3301
|
:schema,
|
|
3202
|
-
:error_message_configuration
|
|
3302
|
+
:error_message_configuration,
|
|
3303
|
+
:synthetic_data_parameters)
|
|
3203
3304
|
SENSITIVE = [:analysis_parameters]
|
|
3204
3305
|
include Aws::Structure
|
|
3205
3306
|
end
|
|
@@ -6556,11 +6657,48 @@ module Aws::CleanRooms
|
|
|
6556
6657
|
# inference.
|
|
6557
6658
|
# @return [Types::ModelInferencePaymentConfig]
|
|
6558
6659
|
#
|
|
6660
|
+
# @!attribute [rw] synthetic_data_generation
|
|
6661
|
+
# The payment configuration for machine learning synthetic data
|
|
6662
|
+
# generation.
|
|
6663
|
+
# @return [Types::SyntheticDataGenerationPaymentConfig]
|
|
6664
|
+
#
|
|
6559
6665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLPaymentConfig AWS API Documentation
|
|
6560
6666
|
#
|
|
6561
6667
|
class MLPaymentConfig < Struct.new(
|
|
6562
6668
|
:model_training,
|
|
6563
|
-
:model_inference
|
|
6669
|
+
:model_inference,
|
|
6670
|
+
:synthetic_data_generation)
|
|
6671
|
+
SENSITIVE = []
|
|
6672
|
+
include Aws::Structure
|
|
6673
|
+
end
|
|
6674
|
+
|
|
6675
|
+
# Parameters that control the generation of synthetic data for machine
|
|
6676
|
+
# learning, including privacy settings and column classification
|
|
6677
|
+
# details.
|
|
6678
|
+
#
|
|
6679
|
+
# @!attribute [rw] epsilon
|
|
6680
|
+
# The epsilon value for differential privacy when generating synthetic
|
|
6681
|
+
# data. Lower values provide stronger privacy guarantees but may
|
|
6682
|
+
# reduce data utility.
|
|
6683
|
+
# @return [Float]
|
|
6684
|
+
#
|
|
6685
|
+
# @!attribute [rw] max_membership_inference_attack_score
|
|
6686
|
+
# The maximum acceptable score for membership inference attack
|
|
6687
|
+
# vulnerability. Synthetic data generation fails if the score for the
|
|
6688
|
+
# resulting data exceeds this threshold.
|
|
6689
|
+
# @return [Float]
|
|
6690
|
+
#
|
|
6691
|
+
# @!attribute [rw] column_classification
|
|
6692
|
+
# Classification details for data columns that specify how each column
|
|
6693
|
+
# should be treated during synthetic data generation.
|
|
6694
|
+
# @return [Types::ColumnClassificationDetails]
|
|
6695
|
+
#
|
|
6696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLSyntheticDataParameters AWS API Documentation
|
|
6697
|
+
#
|
|
6698
|
+
class MLSyntheticDataParameters < Struct.new(
|
|
6699
|
+
:epsilon,
|
|
6700
|
+
:max_membership_inference_attack_score,
|
|
6701
|
+
:column_classification)
|
|
6564
6702
|
SENSITIVE = []
|
|
6565
6703
|
include Aws::Structure
|
|
6566
6704
|
end
|
|
@@ -6851,11 +6989,17 @@ module Aws::CleanRooms
|
|
|
6851
6989
|
# inference.
|
|
6852
6990
|
# @return [Types::MembershipModelInferencePaymentConfig]
|
|
6853
6991
|
#
|
|
6992
|
+
# @!attribute [rw] synthetic_data_generation
|
|
6993
|
+
# The payment configuration for synthetic data generation for this
|
|
6994
|
+
# machine learning membership.
|
|
6995
|
+
# @return [Types::MembershipSyntheticDataGenerationPaymentConfig]
|
|
6996
|
+
#
|
|
6854
6997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipMLPaymentConfig AWS API Documentation
|
|
6855
6998
|
#
|
|
6856
6999
|
class MembershipMLPaymentConfig < Struct.new(
|
|
6857
7000
|
:model_training,
|
|
6858
|
-
:model_inference
|
|
7001
|
+
:model_inference,
|
|
7002
|
+
:synthetic_data_generation)
|
|
6859
7003
|
SENSITIVE = []
|
|
6860
7004
|
include Aws::Structure
|
|
6861
7005
|
end
|
|
@@ -7139,6 +7283,22 @@ module Aws::CleanRooms
|
|
|
7139
7283
|
include Aws::Structure
|
|
7140
7284
|
end
|
|
7141
7285
|
|
|
7286
|
+
# Configuration for payment for synthetic data generation in a
|
|
7287
|
+
# membership.
|
|
7288
|
+
#
|
|
7289
|
+
# @!attribute [rw] is_responsible
|
|
7290
|
+
# Indicates if this membership is responsible for paying for synthetic
|
|
7291
|
+
# data generation.
|
|
7292
|
+
# @return [Boolean]
|
|
7293
|
+
#
|
|
7294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipSyntheticDataGenerationPaymentConfig AWS API Documentation
|
|
7295
|
+
#
|
|
7296
|
+
class MembershipSyntheticDataGenerationPaymentConfig < Struct.new(
|
|
7297
|
+
:is_responsible)
|
|
7298
|
+
SENSITIVE = []
|
|
7299
|
+
include Aws::Structure
|
|
7300
|
+
end
|
|
7301
|
+
|
|
7142
7302
|
# An object representing the collaboration member's model inference
|
|
7143
7303
|
# payment responsibilities set by the collaboration creator.
|
|
7144
7304
|
#
|
|
@@ -9192,6 +9352,78 @@ module Aws::CleanRooms
|
|
|
9192
9352
|
include Aws::Structure
|
|
9193
9353
|
end
|
|
9194
9354
|
|
|
9355
|
+
# Properties that define how a specific data column should be handled
|
|
9356
|
+
# during synthetic data generation, including its name, type, and role
|
|
9357
|
+
# in predictive modeling.
|
|
9358
|
+
#
|
|
9359
|
+
# @!attribute [rw] column_name
|
|
9360
|
+
# The name of the data column as it appears in the dataset.
|
|
9361
|
+
# @return [String]
|
|
9362
|
+
#
|
|
9363
|
+
# @!attribute [rw] column_type
|
|
9364
|
+
# The data type of the column, which determines how the synthetic data
|
|
9365
|
+
# generation algorithm processes and synthesizes values for this
|
|
9366
|
+
# column.
|
|
9367
|
+
# @return [String]
|
|
9368
|
+
#
|
|
9369
|
+
# @!attribute [rw] is_predictive_value
|
|
9370
|
+
# Indicates if this column contains predictive values that should be
|
|
9371
|
+
# treated as target variables in machine learning models. This affects
|
|
9372
|
+
# how the synthetic data generation preserves statistical
|
|
9373
|
+
# relationships.
|
|
9374
|
+
# @return [Boolean]
|
|
9375
|
+
#
|
|
9376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SyntheticDataColumnProperties AWS API Documentation
|
|
9377
|
+
#
|
|
9378
|
+
class SyntheticDataColumnProperties < Struct.new(
|
|
9379
|
+
:column_name,
|
|
9380
|
+
:column_type,
|
|
9381
|
+
:is_predictive_value)
|
|
9382
|
+
SENSITIVE = []
|
|
9383
|
+
include Aws::Structure
|
|
9384
|
+
end
|
|
9385
|
+
|
|
9386
|
+
# Payment configuration for synthetic data generation.
|
|
9387
|
+
#
|
|
9388
|
+
# @!attribute [rw] is_responsible
|
|
9389
|
+
# Indicates who is responsible for paying for synthetic data
|
|
9390
|
+
# generation.
|
|
9391
|
+
# @return [Boolean]
|
|
9392
|
+
#
|
|
9393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SyntheticDataGenerationPaymentConfig AWS API Documentation
|
|
9394
|
+
#
|
|
9395
|
+
class SyntheticDataGenerationPaymentConfig < Struct.new(
|
|
9396
|
+
:is_responsible)
|
|
9397
|
+
SENSITIVE = []
|
|
9398
|
+
include Aws::Structure
|
|
9399
|
+
end
|
|
9400
|
+
|
|
9401
|
+
# The parameters that control how synthetic data is generated, including
|
|
9402
|
+
# privacy settings, column classifications, and other configuration
|
|
9403
|
+
# options that affect the data synthesis process.
|
|
9404
|
+
#
|
|
9405
|
+
# @note SyntheticDataParameters is a union - when making an API calls you must set exactly one of the members.
|
|
9406
|
+
#
|
|
9407
|
+
# @note SyntheticDataParameters is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SyntheticDataParameters corresponding to the set member.
|
|
9408
|
+
#
|
|
9409
|
+
# @!attribute [rw] ml_synthetic_data_parameters
|
|
9410
|
+
# The machine learning-specific parameters for synthetic data
|
|
9411
|
+
# generation.
|
|
9412
|
+
# @return [Types::MLSyntheticDataParameters]
|
|
9413
|
+
#
|
|
9414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SyntheticDataParameters AWS API Documentation
|
|
9415
|
+
#
|
|
9416
|
+
class SyntheticDataParameters < Struct.new(
|
|
9417
|
+
:ml_synthetic_data_parameters,
|
|
9418
|
+
:unknown)
|
|
9419
|
+
SENSITIVE = []
|
|
9420
|
+
include Aws::Structure
|
|
9421
|
+
include Aws::Structure::Union
|
|
9422
|
+
|
|
9423
|
+
class MlSyntheticDataParameters < SyntheticDataParameters; end
|
|
9424
|
+
class Unknown < SyntheticDataParameters; end
|
|
9425
|
+
end
|
|
9426
|
+
|
|
9195
9427
|
# A pointer to the dataset that underlies this table.
|
|
9196
9428
|
#
|
|
9197
9429
|
# @note TableReference is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -9321,6 +9553,51 @@ module Aws::CleanRooms
|
|
|
9321
9553
|
include Aws::Structure
|
|
9322
9554
|
end
|
|
9323
9555
|
|
|
9556
|
+
# @!attribute [rw] collaboration_identifier
|
|
9557
|
+
# The unique identifier of the collaboration that contains the change
|
|
9558
|
+
# request to be updated.
|
|
9559
|
+
# @return [String]
|
|
9560
|
+
#
|
|
9561
|
+
# @!attribute [rw] change_request_identifier
|
|
9562
|
+
# The unique identifier of the specific change request to be updated
|
|
9563
|
+
# within the collaboration.
|
|
9564
|
+
# @return [String]
|
|
9565
|
+
#
|
|
9566
|
+
# @!attribute [rw] action
|
|
9567
|
+
# The action to perform on the change request. Valid values include
|
|
9568
|
+
# APPROVE (approve the change), DENY (reject the change), CANCEL
|
|
9569
|
+
# (cancel the request), and COMMIT (commit after the request is
|
|
9570
|
+
# approved).
|
|
9571
|
+
#
|
|
9572
|
+
# For change requests without automatic approval, a member in the
|
|
9573
|
+
# collaboration can manually APPROVE or DENY a change request. The
|
|
9574
|
+
# collaboration owner can manually CANCEL or COMMIT a change request.
|
|
9575
|
+
# @return [String]
|
|
9576
|
+
#
|
|
9577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequestInput AWS API Documentation
|
|
9578
|
+
#
|
|
9579
|
+
class UpdateCollaborationChangeRequestInput < Struct.new(
|
|
9580
|
+
:collaboration_identifier,
|
|
9581
|
+
:change_request_identifier,
|
|
9582
|
+
:action)
|
|
9583
|
+
SENSITIVE = []
|
|
9584
|
+
include Aws::Structure
|
|
9585
|
+
end
|
|
9586
|
+
|
|
9587
|
+
# @!attribute [rw] collaboration_change_request
|
|
9588
|
+
# Represents a request to modify a collaboration. Change requests
|
|
9589
|
+
# enable structured modifications to collaborations after they have
|
|
9590
|
+
# been created.
|
|
9591
|
+
# @return [Types::CollaborationChangeRequest]
|
|
9592
|
+
#
|
|
9593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationChangeRequestOutput AWS API Documentation
|
|
9594
|
+
#
|
|
9595
|
+
class UpdateCollaborationChangeRequestOutput < Struct.new(
|
|
9596
|
+
:collaboration_change_request)
|
|
9597
|
+
SENSITIVE = []
|
|
9598
|
+
include Aws::Structure
|
|
9599
|
+
end
|
|
9600
|
+
|
|
9324
9601
|
# @!attribute [rw] collaboration_identifier
|
|
9325
9602
|
# The identifier for the collaboration.
|
|
9326
9603
|
# @return [String]
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -162,6 +162,21 @@ module Aws
|
|
|
162
162
|
},
|
|
163
163
|
?error_message_configuration: {
|
|
164
164
|
type: ("DETAILED")
|
|
165
|
+
},
|
|
166
|
+
?synthetic_data_parameters: {
|
|
167
|
+
ml_synthetic_data_parameters: {
|
|
168
|
+
epsilon: ::Float,
|
|
169
|
+
max_membership_inference_attack_score: ::Float,
|
|
170
|
+
column_classification: {
|
|
171
|
+
column_mapping: Array[
|
|
172
|
+
{
|
|
173
|
+
column_name: ::String,
|
|
174
|
+
column_type: ("CATEGORICAL" | "NUMERICAL"),
|
|
175
|
+
is_predictive_value: bool
|
|
176
|
+
},
|
|
177
|
+
]
|
|
178
|
+
}
|
|
179
|
+
}?
|
|
165
180
|
}
|
|
166
181
|
) -> _CreateAnalysisTemplateResponseSuccess
|
|
167
182
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnalysisTemplateResponseSuccess
|
|
@@ -190,6 +205,9 @@ module Aws
|
|
|
190
205
|
}?,
|
|
191
206
|
model_inference: {
|
|
192
207
|
is_responsible: bool
|
|
208
|
+
}?,
|
|
209
|
+
synthetic_data_generation: {
|
|
210
|
+
is_responsible: bool
|
|
193
211
|
}?
|
|
194
212
|
}?,
|
|
195
213
|
job_compute: {
|
|
@@ -224,6 +242,9 @@ module Aws
|
|
|
224
242
|
}?,
|
|
225
243
|
model_inference: {
|
|
226
244
|
is_responsible: bool
|
|
245
|
+
}?,
|
|
246
|
+
synthetic_data_generation: {
|
|
247
|
+
is_responsible: bool
|
|
227
248
|
}?
|
|
228
249
|
}?,
|
|
229
250
|
job_compute: {
|
|
@@ -231,7 +252,7 @@ module Aws
|
|
|
231
252
|
}?
|
|
232
253
|
},
|
|
233
254
|
?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL"),
|
|
234
|
-
?auto_approved_change_request_types: Array[("ADD_MEMBER")],
|
|
255
|
+
?auto_approved_change_request_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")],
|
|
235
256
|
?allowed_result_regions: Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
|
|
236
257
|
) -> _CreateCollaborationResponseSuccess
|
|
237
258
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
|
|
@@ -245,12 +266,15 @@ module Aws
|
|
|
245
266
|
collaboration_identifier: ::String,
|
|
246
267
|
changes: Array[
|
|
247
268
|
{
|
|
248
|
-
specification_type: ("MEMBER"),
|
|
269
|
+
specification_type: ("MEMBER" | "COLLABORATION"),
|
|
249
270
|
specification: {
|
|
250
271
|
member: {
|
|
251
272
|
account_id: ::String,
|
|
252
273
|
member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")],
|
|
253
274
|
display_name: ::String?
|
|
275
|
+
}?,
|
|
276
|
+
collaboration: {
|
|
277
|
+
auto_approved_change_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]?
|
|
254
278
|
}?
|
|
255
279
|
}
|
|
256
280
|
},
|
|
@@ -493,6 +517,9 @@ module Aws
|
|
|
493
517
|
}?,
|
|
494
518
|
model_inference: {
|
|
495
519
|
is_responsible: bool
|
|
520
|
+
}?,
|
|
521
|
+
synthetic_data_generation: {
|
|
522
|
+
is_responsible: bool
|
|
496
523
|
}?
|
|
497
524
|
}?,
|
|
498
525
|
job_compute: {
|
|
@@ -1182,7 +1209,7 @@ module Aws
|
|
|
1182
1209
|
type: ("PYSPARK"),
|
|
1183
1210
|
membership_identifier: ::String,
|
|
1184
1211
|
job_parameters: {
|
|
1185
|
-
analysis_template_arn: ::String
|
|
1212
|
+
analysis_template_arn: ::String
|
|
1186
1213
|
},
|
|
1187
1214
|
?result_configuration: {
|
|
1188
1215
|
output_configuration: {
|
|
@@ -1298,6 +1325,18 @@ module Aws
|
|
|
1298
1325
|
) -> _UpdateCollaborationResponseSuccess
|
|
1299
1326
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationResponseSuccess
|
|
1300
1327
|
|
|
1328
|
+
interface _UpdateCollaborationChangeRequestResponseSuccess
|
|
1329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCollaborationChangeRequestOutput]
|
|
1330
|
+
def collaboration_change_request: () -> Types::CollaborationChangeRequest
|
|
1331
|
+
end
|
|
1332
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#update_collaboration_change_request-instance_method
|
|
1333
|
+
def update_collaboration_change_request: (
|
|
1334
|
+
collaboration_identifier: ::String,
|
|
1335
|
+
change_request_identifier: ::String,
|
|
1336
|
+
action: ("APPROVE" | "DENY" | "CANCEL" | "COMMIT")
|
|
1337
|
+
) -> _UpdateCollaborationChangeRequestResponseSuccess
|
|
1338
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationChangeRequestResponseSuccess
|
|
1339
|
+
|
|
1301
1340
|
interface _UpdateConfiguredAudienceModelAssociationResponseSuccess
|
|
1302
1341
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredAudienceModelAssociationOutput]
|
|
1303
1342
|
def configured_audience_model_association: () -> Types::ConfiguredAudienceModelAssociation
|