aws-sdk-cleanrooms 1.60.0 → 1.61.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 +67 -2
- data/lib/aws-sdk-cleanrooms/client_api.rb +46 -1
- data/lib/aws-sdk-cleanrooms/types.rb +186 -7
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +25 -1
- data/sig/types.rbs +47 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af5090f5aa3c79fc387601a333f20abc021190bad6226baabc3dcc7f8716e1d9
|
|
4
|
+
data.tar.gz: 28866c9f3ff818f56a998e95083d90cf07ea9c30386aff9531b66731d8f415b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe45a4f20d25c7371703e19194955904b0082b6568895b5993dd720cf8c6e8af1649417b023bb057c96f30db1097e0ae26596a7409cf07d0e5f9e75228312414
|
|
7
|
+
data.tar.gz: 986eb29b70aa4144efd524711dae8a1bf4de0d51cb61911610f024e95dcffb335679a68e7fb73f360b27cf9505ea94f51c76471a8e9e5245ba103577b03dfa43
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.61.0
|
|
@@ -534,6 +534,12 @@ module Aws::CleanRooms
|
|
|
534
534
|
# resp.collaboration_analysis_templates[0].validations[0].reasons #=> Array
|
|
535
535
|
# resp.collaboration_analysis_templates[0].validations[0].reasons[0].message #=> String
|
|
536
536
|
# resp.collaboration_analysis_templates[0].error_message_configuration.type #=> String, one of "DETAILED"
|
|
537
|
+
# resp.collaboration_analysis_templates[0].synthetic_data_parameters.ml_synthetic_data_parameters.epsilon #=> Float
|
|
538
|
+
# resp.collaboration_analysis_templates[0].synthetic_data_parameters.ml_synthetic_data_parameters.max_membership_inference_attack_score #=> Float
|
|
539
|
+
# resp.collaboration_analysis_templates[0].synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping #=> Array
|
|
540
|
+
# resp.collaboration_analysis_templates[0].synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_name #=> String
|
|
541
|
+
# resp.collaboration_analysis_templates[0].synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_type #=> String, one of "CATEGORICAL", "NUMERICAL"
|
|
542
|
+
# resp.collaboration_analysis_templates[0].synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].is_predictive_value #=> Boolean
|
|
537
543
|
# resp.errors #=> Array
|
|
538
544
|
# resp.errors[0].arn #=> String
|
|
539
545
|
# resp.errors[0].code #=> String
|
|
@@ -803,6 +809,10 @@ module Aws::CleanRooms
|
|
|
803
809
|
# including sensitive information. Recommended for faster
|
|
804
810
|
# troubleshooting in development and testing environments.
|
|
805
811
|
#
|
|
812
|
+
# @option params [Types::SyntheticDataParameters] :synthetic_data_parameters
|
|
813
|
+
# The parameters for generating synthetic data when running the analysis
|
|
814
|
+
# template.
|
|
815
|
+
#
|
|
806
816
|
# @return [Types::CreateAnalysisTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
807
817
|
#
|
|
808
818
|
# * {Types::CreateAnalysisTemplateOutput#analysis_template #analysis_template} => Types::AnalysisTemplate
|
|
@@ -850,6 +860,21 @@ module Aws::CleanRooms
|
|
|
850
860
|
# error_message_configuration: {
|
|
851
861
|
# type: "DETAILED", # required, accepts DETAILED
|
|
852
862
|
# },
|
|
863
|
+
# synthetic_data_parameters: {
|
|
864
|
+
# ml_synthetic_data_parameters: {
|
|
865
|
+
# epsilon: 1.0, # required
|
|
866
|
+
# max_membership_inference_attack_score: 1.0, # required
|
|
867
|
+
# column_classification: { # required
|
|
868
|
+
# column_mapping: [ # required
|
|
869
|
+
# {
|
|
870
|
+
# column_name: "SyntheticDataColumnName", # required
|
|
871
|
+
# column_type: "CATEGORICAL", # required, accepts CATEGORICAL, NUMERICAL
|
|
872
|
+
# is_predictive_value: false, # required
|
|
873
|
+
# },
|
|
874
|
+
# ],
|
|
875
|
+
# },
|
|
876
|
+
# },
|
|
877
|
+
# },
|
|
853
878
|
# })
|
|
854
879
|
#
|
|
855
880
|
# @example Response structure
|
|
@@ -887,6 +912,12 @@ module Aws::CleanRooms
|
|
|
887
912
|
# resp.analysis_template.validations[0].reasons #=> Array
|
|
888
913
|
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
|
889
914
|
# resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
|
915
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.epsilon #=> Float
|
|
916
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.max_membership_inference_attack_score #=> Float
|
|
917
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping #=> Array
|
|
918
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_name #=> String
|
|
919
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_type #=> String, one of "CATEGORICAL", "NUMERICAL"
|
|
920
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].is_predictive_value #=> Boolean
|
|
890
921
|
#
|
|
891
922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplate AWS API Documentation
|
|
892
923
|
#
|
|
@@ -997,6 +1028,9 @@ module Aws::CleanRooms
|
|
|
997
1028
|
# model_inference: {
|
|
998
1029
|
# is_responsible: false, # required
|
|
999
1030
|
# },
|
|
1031
|
+
# synthetic_data_generation: {
|
|
1032
|
+
# is_responsible: false, # required
|
|
1033
|
+
# },
|
|
1000
1034
|
# },
|
|
1001
1035
|
# job_compute: {
|
|
1002
1036
|
# is_responsible: false, # required
|
|
@@ -1033,6 +1067,9 @@ module Aws::CleanRooms
|
|
|
1033
1067
|
# model_inference: {
|
|
1034
1068
|
# is_responsible: false, # required
|
|
1035
1069
|
# },
|
|
1070
|
+
# synthetic_data_generation: {
|
|
1071
|
+
# is_responsible: false, # required
|
|
1072
|
+
# },
|
|
1036
1073
|
# },
|
|
1037
1074
|
# job_compute: {
|
|
1038
1075
|
# is_responsible: false, # required
|
|
@@ -1844,6 +1881,9 @@ module Aws::CleanRooms
|
|
|
1844
1881
|
# model_inference: {
|
|
1845
1882
|
# is_responsible: false, # required
|
|
1846
1883
|
# },
|
|
1884
|
+
# synthetic_data_generation: {
|
|
1885
|
+
# is_responsible: false, # required
|
|
1886
|
+
# },
|
|
1847
1887
|
# },
|
|
1848
1888
|
# job_compute: {
|
|
1849
1889
|
# is_responsible: false, # required
|
|
@@ -1880,6 +1920,7 @@ module Aws::CleanRooms
|
|
|
1880
1920
|
# resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
|
|
1881
1921
|
# resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
|
|
1882
1922
|
# resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
1923
|
+
# resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
1883
1924
|
# resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
|
|
1884
1925
|
#
|
|
1885
1926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
|
|
@@ -2361,6 +2402,12 @@ module Aws::CleanRooms
|
|
|
2361
2402
|
# resp.analysis_template.validations[0].reasons #=> Array
|
|
2362
2403
|
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
|
2363
2404
|
# resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
|
2405
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.epsilon #=> Float
|
|
2406
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.max_membership_inference_attack_score #=> Float
|
|
2407
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping #=> Array
|
|
2408
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_name #=> String
|
|
2409
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_type #=> String, one of "CATEGORICAL", "NUMERICAL"
|
|
2410
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].is_predictive_value #=> Boolean
|
|
2364
2411
|
#
|
|
2365
2412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetAnalysisTemplate AWS API Documentation
|
|
2366
2413
|
#
|
|
@@ -2475,6 +2522,12 @@ module Aws::CleanRooms
|
|
|
2475
2522
|
# resp.collaboration_analysis_template.validations[0].reasons #=> Array
|
|
2476
2523
|
# resp.collaboration_analysis_template.validations[0].reasons[0].message #=> String
|
|
2477
2524
|
# resp.collaboration_analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
|
2525
|
+
# resp.collaboration_analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.epsilon #=> Float
|
|
2526
|
+
# resp.collaboration_analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.max_membership_inference_attack_score #=> Float
|
|
2527
|
+
# resp.collaboration_analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping #=> Array
|
|
2528
|
+
# resp.collaboration_analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_name #=> String
|
|
2529
|
+
# resp.collaboration_analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_type #=> String, one of "CATEGORICAL", "NUMERICAL"
|
|
2530
|
+
# resp.collaboration_analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].is_predictive_value #=> Boolean
|
|
2478
2531
|
#
|
|
2479
2532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationAnalysisTemplate AWS API Documentation
|
|
2480
2533
|
#
|
|
@@ -3086,6 +3139,7 @@ module Aws::CleanRooms
|
|
|
3086
3139
|
# resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
|
|
3087
3140
|
# resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
|
|
3088
3141
|
# resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
3142
|
+
# resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
3089
3143
|
# resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
|
|
3090
3144
|
#
|
|
3091
3145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
|
|
@@ -3516,6 +3570,7 @@ module Aws::CleanRooms
|
|
|
3516
3570
|
# resp.analysis_template_summaries[0].collaboration_arn #=> String
|
|
3517
3571
|
# resp.analysis_template_summaries[0].collaboration_id #=> String
|
|
3518
3572
|
# resp.analysis_template_summaries[0].description #=> String
|
|
3573
|
+
# resp.analysis_template_summaries[0].is_synthetic_data #=> Boolean
|
|
3519
3574
|
#
|
|
3520
3575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListAnalysisTemplates AWS API Documentation
|
|
3521
3576
|
#
|
|
@@ -3569,6 +3624,7 @@ module Aws::CleanRooms
|
|
|
3569
3624
|
# resp.collaboration_analysis_template_summaries[0].collaboration_id #=> String
|
|
3570
3625
|
# resp.collaboration_analysis_template_summaries[0].creator_account_id #=> String
|
|
3571
3626
|
# resp.collaboration_analysis_template_summaries[0].description #=> String
|
|
3627
|
+
# resp.collaboration_analysis_template_summaries[0].is_synthetic_data #=> Boolean
|
|
3572
3628
|
#
|
|
3573
3629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationAnalysisTemplates AWS API Documentation
|
|
3574
3630
|
#
|
|
@@ -4249,6 +4305,7 @@ module Aws::CleanRooms
|
|
|
4249
4305
|
# resp.member_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
|
|
4250
4306
|
# resp.member_summaries[0].payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
|
|
4251
4307
|
# resp.member_summaries[0].payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
4308
|
+
# resp.member_summaries[0].payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
4252
4309
|
# resp.member_summaries[0].payment_configuration.job_compute.is_responsible #=> Boolean
|
|
4253
4310
|
#
|
|
4254
4311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembers AWS API Documentation
|
|
@@ -4310,6 +4367,7 @@ module Aws::CleanRooms
|
|
|
4310
4367
|
# resp.membership_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
|
|
4311
4368
|
# resp.membership_summaries[0].payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
|
|
4312
4369
|
# resp.membership_summaries[0].payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
4370
|
+
# resp.membership_summaries[0].payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
4313
4371
|
# resp.membership_summaries[0].payment_configuration.job_compute.is_responsible #=> Boolean
|
|
4314
4372
|
#
|
|
4315
4373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMemberships AWS API Documentation
|
|
@@ -4785,7 +4843,7 @@ module Aws::CleanRooms
|
|
|
4785
4843
|
# type: "PYSPARK", # required, accepts PYSPARK
|
|
4786
4844
|
# membership_identifier: "MembershipIdentifier", # required
|
|
4787
4845
|
# job_parameters: { # required
|
|
4788
|
-
# analysis_template_arn: "AnalysisTemplateArn",
|
|
4846
|
+
# analysis_template_arn: "AnalysisTemplateArn", # required
|
|
4789
4847
|
# },
|
|
4790
4848
|
# result_configuration: {
|
|
4791
4849
|
# output_configuration: { # required
|
|
@@ -5073,6 +5131,12 @@ module Aws::CleanRooms
|
|
|
5073
5131
|
# resp.analysis_template.validations[0].reasons #=> Array
|
|
5074
5132
|
# resp.analysis_template.validations[0].reasons[0].message #=> String
|
|
5075
5133
|
# resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
|
|
5134
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.epsilon #=> Float
|
|
5135
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.max_membership_inference_attack_score #=> Float
|
|
5136
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping #=> Array
|
|
5137
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_name #=> String
|
|
5138
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].column_type #=> String, one of "CATEGORICAL", "NUMERICAL"
|
|
5139
|
+
# resp.analysis_template.synthetic_data_parameters.ml_synthetic_data_parameters.column_classification.column_mapping[0].is_predictive_value #=> Boolean
|
|
5076
5140
|
#
|
|
5077
5141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateAnalysisTemplate AWS API Documentation
|
|
5078
5142
|
#
|
|
@@ -5778,6 +5842,7 @@ module Aws::CleanRooms
|
|
|
5778
5842
|
# resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
|
|
5779
5843
|
# resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
|
|
5780
5844
|
# resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
|
|
5845
|
+
# resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
|
|
5781
5846
|
# resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
|
|
5782
5847
|
#
|
|
5783
5848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
|
|
@@ -6011,7 +6076,7 @@ module Aws::CleanRooms
|
|
|
6011
6076
|
tracer: tracer
|
|
6012
6077
|
)
|
|
6013
6078
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
|
6014
|
-
context[:gem_version] = '1.
|
|
6079
|
+
context[:gem_version] = '1.61.0'
|
|
6015
6080
|
Seahorse::Client::Request.new(handlers, context)
|
|
6016
6081
|
end
|
|
6017
6082
|
|
|
@@ -146,7 +146,9 @@ module Aws::CleanRooms
|
|
|
146
146
|
CollaborationSummary = Shapes::StructureShape.new(name: 'CollaborationSummary')
|
|
147
147
|
CollaborationSummaryList = Shapes::ListShape.new(name: 'CollaborationSummaryList')
|
|
148
148
|
Column = Shapes::StructureShape.new(name: 'Column')
|
|
149
|
+
ColumnClassificationDetails = Shapes::StructureShape.new(name: 'ColumnClassificationDetails')
|
|
149
150
|
ColumnList = Shapes::ListShape.new(name: 'ColumnList')
|
|
151
|
+
ColumnMappingList = Shapes::ListShape.new(name: 'ColumnMappingList')
|
|
150
152
|
ColumnName = Shapes::StringShape.new(name: 'ColumnName')
|
|
151
153
|
ColumnTypeString = Shapes::StringShape.new(name: 'ColumnTypeString')
|
|
152
154
|
CommercialRegion = Shapes::StringShape.new(name: 'CommercialRegion')
|
|
@@ -396,6 +398,9 @@ module Aws::CleanRooms
|
|
|
396
398
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
397
399
|
MLMemberAbilities = Shapes::StructureShape.new(name: 'MLMemberAbilities')
|
|
398
400
|
MLPaymentConfig = Shapes::StructureShape.new(name: 'MLPaymentConfig')
|
|
401
|
+
MLSyntheticDataParameters = Shapes::StructureShape.new(name: 'MLSyntheticDataParameters')
|
|
402
|
+
MLSyntheticDataParametersEpsilonDouble = Shapes::FloatShape.new(name: 'MLSyntheticDataParametersEpsilonDouble')
|
|
403
|
+
MaxMembershipInferenceAttackScore = Shapes::FloatShape.new(name: 'MaxMembershipInferenceAttackScore')
|
|
399
404
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
400
405
|
MemberAbilities = Shapes::ListShape.new(name: 'MemberAbilities')
|
|
401
406
|
MemberAbility = Shapes::StringShape.new(name: 'MemberAbility')
|
|
@@ -423,6 +428,7 @@ module Aws::CleanRooms
|
|
|
423
428
|
MembershipStatus = Shapes::StringShape.new(name: 'MembershipStatus')
|
|
424
429
|
MembershipSummary = Shapes::StructureShape.new(name: 'MembershipSummary')
|
|
425
430
|
MembershipSummaryList = Shapes::ListShape.new(name: 'MembershipSummaryList')
|
|
431
|
+
MembershipSyntheticDataGenerationPaymentConfig = Shapes::StructureShape.new(name: 'MembershipSyntheticDataGenerationPaymentConfig')
|
|
426
432
|
ModelInferencePaymentConfig = Shapes::StructureShape.new(name: 'ModelInferencePaymentConfig')
|
|
427
433
|
ModelTrainingPaymentConfig = Shapes::StructureShape.new(name: 'ModelTrainingPaymentConfig')
|
|
428
434
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
@@ -567,6 +573,11 @@ module Aws::CleanRooms
|
|
|
567
573
|
StartProtectedQueryOutput = Shapes::StructureShape.new(name: 'StartProtectedQueryOutput')
|
|
568
574
|
String = Shapes::StringShape.new(name: 'String')
|
|
569
575
|
SupportedS3Region = Shapes::StringShape.new(name: 'SupportedS3Region')
|
|
576
|
+
SyntheticDataColumnName = Shapes::StringShape.new(name: 'SyntheticDataColumnName')
|
|
577
|
+
SyntheticDataColumnProperties = Shapes::StructureShape.new(name: 'SyntheticDataColumnProperties')
|
|
578
|
+
SyntheticDataColumnType = Shapes::StringShape.new(name: 'SyntheticDataColumnType')
|
|
579
|
+
SyntheticDataGenerationPaymentConfig = Shapes::StructureShape.new(name: 'SyntheticDataGenerationPaymentConfig')
|
|
580
|
+
SyntheticDataParameters = Shapes::UnionShape.new(name: 'SyntheticDataParameters')
|
|
570
581
|
TableAlias = Shapes::StringShape.new(name: 'TableAlias')
|
|
571
582
|
TableAliasList = Shapes::ListShape.new(name: 'TableAliasList')
|
|
572
583
|
TableDescription = Shapes::StringShape.new(name: 'TableDescription')
|
|
@@ -782,6 +793,7 @@ module Aws::CleanRooms
|
|
|
782
793
|
AnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
|
783
794
|
AnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
|
|
784
795
|
AnalysisTemplate.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
|
|
796
|
+
AnalysisTemplate.add_member(:synthetic_data_parameters, Shapes::ShapeRef.new(shape: SyntheticDataParameters, location_name: "syntheticDataParameters"))
|
|
785
797
|
AnalysisTemplate.struct_class = Types::AnalysisTemplate
|
|
786
798
|
|
|
787
799
|
AnalysisTemplateArnList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateArn)
|
|
@@ -810,6 +822,7 @@ module Aws::CleanRooms
|
|
|
810
822
|
AnalysisTemplateSummary.add_member(:collaboration_arn, Shapes::ShapeRef.new(shape: CollaborationArn, required: true, location_name: "collaborationArn"))
|
|
811
823
|
AnalysisTemplateSummary.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
|
|
812
824
|
AnalysisTemplateSummary.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
825
|
+
AnalysisTemplateSummary.add_member(:is_synthetic_data, Shapes::ShapeRef.new(shape: Boolean, location_name: "isSyntheticData"))
|
|
813
826
|
AnalysisTemplateSummary.struct_class = Types::AnalysisTemplateSummary
|
|
814
827
|
|
|
815
828
|
AnalysisTemplateSummaryList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateSummary)
|
|
@@ -950,6 +963,7 @@ module Aws::CleanRooms
|
|
|
950
963
|
CollaborationAnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
|
951
964
|
CollaborationAnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
|
|
952
965
|
CollaborationAnalysisTemplate.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
|
|
966
|
+
CollaborationAnalysisTemplate.add_member(:synthetic_data_parameters, Shapes::ShapeRef.new(shape: SyntheticDataParameters, location_name: "syntheticDataParameters"))
|
|
953
967
|
CollaborationAnalysisTemplate.struct_class = Types::CollaborationAnalysisTemplate
|
|
954
968
|
|
|
955
969
|
CollaborationAnalysisTemplateList.member = Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplate)
|
|
@@ -963,6 +977,7 @@ module Aws::CleanRooms
|
|
|
963
977
|
CollaborationAnalysisTemplateSummary.add_member(:collaboration_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationId"))
|
|
964
978
|
CollaborationAnalysisTemplateSummary.add_member(:creator_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "creatorAccountId"))
|
|
965
979
|
CollaborationAnalysisTemplateSummary.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
980
|
+
CollaborationAnalysisTemplateSummary.add_member(:is_synthetic_data, Shapes::ShapeRef.new(shape: Boolean, location_name: "isSyntheticData"))
|
|
966
981
|
CollaborationAnalysisTemplateSummary.struct_class = Types::CollaborationAnalysisTemplateSummary
|
|
967
982
|
|
|
968
983
|
CollaborationAnalysisTemplateSummaryList.member = Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplateSummary)
|
|
@@ -1098,8 +1113,13 @@ module Aws::CleanRooms
|
|
|
1098
1113
|
Column.add_member(:type, Shapes::ShapeRef.new(shape: ColumnTypeString, required: true, location_name: "type"))
|
|
1099
1114
|
Column.struct_class = Types::Column
|
|
1100
1115
|
|
|
1116
|
+
ColumnClassificationDetails.add_member(:column_mapping, Shapes::ShapeRef.new(shape: ColumnMappingList, required: true, location_name: "columnMapping"))
|
|
1117
|
+
ColumnClassificationDetails.struct_class = Types::ColumnClassificationDetails
|
|
1118
|
+
|
|
1101
1119
|
ColumnList.member = Shapes::ShapeRef.new(shape: Column)
|
|
1102
1120
|
|
|
1121
|
+
ColumnMappingList.member = Shapes::ShapeRef.new(shape: SyntheticDataColumnProperties)
|
|
1122
|
+
|
|
1103
1123
|
ComputeConfiguration.add_member(:worker, Shapes::ShapeRef.new(shape: WorkerComputeConfiguration, location_name: "worker"))
|
|
1104
1124
|
ComputeConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1105
1125
|
ComputeConfiguration.add_member_subclass(:worker, Types::ComputeConfiguration::Worker)
|
|
@@ -1326,6 +1346,7 @@ module Aws::CleanRooms
|
|
|
1326
1346
|
CreateAnalysisTemplateInput.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
|
|
1327
1347
|
CreateAnalysisTemplateInput.add_member(:schema, Shapes::ShapeRef.new(shape: AnalysisSchema, location_name: "schema"))
|
|
1328
1348
|
CreateAnalysisTemplateInput.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
|
|
1349
|
+
CreateAnalysisTemplateInput.add_member(:synthetic_data_parameters, Shapes::ShapeRef.new(shape: SyntheticDataParameters, location_name: "syntheticDataParameters"))
|
|
1329
1350
|
CreateAnalysisTemplateInput.struct_class = Types::CreateAnalysisTemplateInput
|
|
1330
1351
|
|
|
1331
1352
|
CreateAnalysisTemplateOutput.add_member(:analysis_template, Shapes::ShapeRef.new(shape: AnalysisTemplate, required: true, location_name: "analysisTemplate"))
|
|
@@ -2040,8 +2061,14 @@ module Aws::CleanRooms
|
|
|
2040
2061
|
|
|
2041
2062
|
MLPaymentConfig.add_member(:model_training, Shapes::ShapeRef.new(shape: ModelTrainingPaymentConfig, location_name: "modelTraining"))
|
|
2042
2063
|
MLPaymentConfig.add_member(:model_inference, Shapes::ShapeRef.new(shape: ModelInferencePaymentConfig, location_name: "modelInference"))
|
|
2064
|
+
MLPaymentConfig.add_member(:synthetic_data_generation, Shapes::ShapeRef.new(shape: SyntheticDataGenerationPaymentConfig, location_name: "syntheticDataGeneration"))
|
|
2043
2065
|
MLPaymentConfig.struct_class = Types::MLPaymentConfig
|
|
2044
2066
|
|
|
2067
|
+
MLSyntheticDataParameters.add_member(:epsilon, Shapes::ShapeRef.new(shape: MLSyntheticDataParametersEpsilonDouble, required: true, location_name: "epsilon"))
|
|
2068
|
+
MLSyntheticDataParameters.add_member(:max_membership_inference_attack_score, Shapes::ShapeRef.new(shape: MaxMembershipInferenceAttackScore, required: true, location_name: "maxMembershipInferenceAttackScore"))
|
|
2069
|
+
MLSyntheticDataParameters.add_member(:column_classification, Shapes::ShapeRef.new(shape: ColumnClassificationDetails, required: true, location_name: "columnClassification"))
|
|
2070
|
+
MLSyntheticDataParameters.struct_class = Types::MLSyntheticDataParameters
|
|
2071
|
+
|
|
2045
2072
|
MemberAbilities.member = Shapes::ShapeRef.new(shape: MemberAbility)
|
|
2046
2073
|
|
|
2047
2074
|
MemberChangeSpecification.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
|
|
@@ -2096,6 +2123,7 @@ module Aws::CleanRooms
|
|
|
2096
2123
|
|
|
2097
2124
|
MembershipMLPaymentConfig.add_member(:model_training, Shapes::ShapeRef.new(shape: MembershipModelTrainingPaymentConfig, location_name: "modelTraining"))
|
|
2098
2125
|
MembershipMLPaymentConfig.add_member(:model_inference, Shapes::ShapeRef.new(shape: MembershipModelInferencePaymentConfig, location_name: "modelInference"))
|
|
2126
|
+
MembershipMLPaymentConfig.add_member(:synthetic_data_generation, Shapes::ShapeRef.new(shape: MembershipSyntheticDataGenerationPaymentConfig, location_name: "syntheticDataGeneration"))
|
|
2099
2127
|
MembershipMLPaymentConfig.struct_class = Types::MembershipMLPaymentConfig
|
|
2100
2128
|
|
|
2101
2129
|
MembershipModelInferencePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
|
|
@@ -2149,6 +2177,9 @@ module Aws::CleanRooms
|
|
|
2149
2177
|
|
|
2150
2178
|
MembershipSummaryList.member = Shapes::ShapeRef.new(shape: MembershipSummary)
|
|
2151
2179
|
|
|
2180
|
+
MembershipSyntheticDataGenerationPaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
|
|
2181
|
+
MembershipSyntheticDataGenerationPaymentConfig.struct_class = Types::MembershipSyntheticDataGenerationPaymentConfig
|
|
2182
|
+
|
|
2152
2183
|
ModelInferencePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
|
|
2153
2184
|
ModelInferencePaymentConfig.struct_class = Types::ModelInferencePaymentConfig
|
|
2154
2185
|
|
|
@@ -2325,7 +2356,7 @@ module Aws::CleanRooms
|
|
|
2325
2356
|
ProtectedJobOutputConfigurationOutput.add_member_subclass(:unknown, Types::ProtectedJobOutputConfigurationOutput::Unknown)
|
|
2326
2357
|
ProtectedJobOutputConfigurationOutput.struct_class = Types::ProtectedJobOutputConfigurationOutput
|
|
2327
2358
|
|
|
2328
|
-
ProtectedJobParameters.add_member(:analysis_template_arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, location_name: "analysisTemplateArn"))
|
|
2359
|
+
ProtectedJobParameters.add_member(:analysis_template_arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, required: true, location_name: "analysisTemplateArn"))
|
|
2329
2360
|
ProtectedJobParameters.struct_class = Types::ProtectedJobParameters
|
|
2330
2361
|
|
|
2331
2362
|
ProtectedJobReceiverAccountIds.member = Shapes::ShapeRef.new(shape: AccountId)
|
|
@@ -2625,6 +2656,20 @@ module Aws::CleanRooms
|
|
|
2625
2656
|
StartProtectedQueryOutput.add_member(:protected_query, Shapes::ShapeRef.new(shape: ProtectedQuery, required: true, location_name: "protectedQuery"))
|
|
2626
2657
|
StartProtectedQueryOutput.struct_class = Types::StartProtectedQueryOutput
|
|
2627
2658
|
|
|
2659
|
+
SyntheticDataColumnProperties.add_member(:column_name, Shapes::ShapeRef.new(shape: SyntheticDataColumnName, required: true, location_name: "columnName"))
|
|
2660
|
+
SyntheticDataColumnProperties.add_member(:column_type, Shapes::ShapeRef.new(shape: SyntheticDataColumnType, required: true, location_name: "columnType"))
|
|
2661
|
+
SyntheticDataColumnProperties.add_member(:is_predictive_value, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isPredictiveValue"))
|
|
2662
|
+
SyntheticDataColumnProperties.struct_class = Types::SyntheticDataColumnProperties
|
|
2663
|
+
|
|
2664
|
+
SyntheticDataGenerationPaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
|
|
2665
|
+
SyntheticDataGenerationPaymentConfig.struct_class = Types::SyntheticDataGenerationPaymentConfig
|
|
2666
|
+
|
|
2667
|
+
SyntheticDataParameters.add_member(:ml_synthetic_data_parameters, Shapes::ShapeRef.new(shape: MLSyntheticDataParameters, location_name: "mlSyntheticDataParameters"))
|
|
2668
|
+
SyntheticDataParameters.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2669
|
+
SyntheticDataParameters.add_member_subclass(:ml_synthetic_data_parameters, Types::SyntheticDataParameters::MlSyntheticDataParameters)
|
|
2670
|
+
SyntheticDataParameters.add_member_subclass(:unknown, Types::SyntheticDataParameters::Unknown)
|
|
2671
|
+
SyntheticDataParameters.struct_class = Types::SyntheticDataParameters
|
|
2672
|
+
|
|
2628
2673
|
TableAliasList.member = Shapes::ShapeRef.new(shape: TableAlias)
|
|
2629
2674
|
|
|
2630
2675
|
TableReference.add_member(:glue, Shapes::ShapeRef.new(shape: GlueTableReference, location_name: "glue"))
|
|
@@ -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
|
|
@@ -1428,6 +1440,11 @@ module Aws::CleanRooms
|
|
|
1428
1440
|
# for faster troubleshooting in development and testing environments.
|
|
1429
1441
|
# @return [Types::ErrorMessageConfiguration]
|
|
1430
1442
|
#
|
|
1443
|
+
# @!attribute [rw] synthetic_data_parameters
|
|
1444
|
+
# The synthetic data generation parameters configured for this
|
|
1445
|
+
# collaboration analysis template.
|
|
1446
|
+
# @return [Types::SyntheticDataParameters]
|
|
1447
|
+
#
|
|
1431
1448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplate AWS API Documentation
|
|
1432
1449
|
#
|
|
1433
1450
|
class CollaborationAnalysisTemplate < Struct.new(
|
|
@@ -1446,7 +1463,8 @@ module Aws::CleanRooms
|
|
|
1446
1463
|
:source_metadata,
|
|
1447
1464
|
:analysis_parameters,
|
|
1448
1465
|
:validations,
|
|
1449
|
-
:error_message_configuration
|
|
1466
|
+
:error_message_configuration,
|
|
1467
|
+
:synthetic_data_parameters)
|
|
1450
1468
|
SENSITIVE = [:analysis_parameters]
|
|
1451
1469
|
include Aws::Structure
|
|
1452
1470
|
end
|
|
@@ -1493,6 +1511,11 @@ module Aws::CleanRooms
|
|
|
1493
1511
|
# The description of the analysis template.
|
|
1494
1512
|
# @return [String]
|
|
1495
1513
|
#
|
|
1514
|
+
# @!attribute [rw] is_synthetic_data
|
|
1515
|
+
# Indicates if this collaboration analysis template uses synthetic
|
|
1516
|
+
# data generation.
|
|
1517
|
+
# @return [Boolean]
|
|
1518
|
+
#
|
|
1496
1519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplateSummary AWS API Documentation
|
|
1497
1520
|
#
|
|
1498
1521
|
class CollaborationAnalysisTemplateSummary < Struct.new(
|
|
@@ -1504,7 +1527,8 @@ module Aws::CleanRooms
|
|
|
1504
1527
|
:collaboration_arn,
|
|
1505
1528
|
:collaboration_id,
|
|
1506
1529
|
:creator_account_id,
|
|
1507
|
-
:description
|
|
1530
|
+
:description,
|
|
1531
|
+
:is_synthetic_data)
|
|
1508
1532
|
SENSITIVE = []
|
|
1509
1533
|
include Aws::Structure
|
|
1510
1534
|
end
|
|
@@ -2160,6 +2184,24 @@ module Aws::CleanRooms
|
|
|
2160
2184
|
include Aws::Structure
|
|
2161
2185
|
end
|
|
2162
2186
|
|
|
2187
|
+
# Contains classification information for data columns, including
|
|
2188
|
+
# mappings that specify how columns should be handled during synthetic
|
|
2189
|
+
# data generation and privacy analysis.
|
|
2190
|
+
#
|
|
2191
|
+
# @!attribute [rw] column_mapping
|
|
2192
|
+
# A mapping that defines the classification of data columns for
|
|
2193
|
+
# synthetic data generation and specifies how each column should be
|
|
2194
|
+
# handled during the privacy-preserving data synthesis process.
|
|
2195
|
+
# @return [Array<Types::SyntheticDataColumnProperties>]
|
|
2196
|
+
#
|
|
2197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ColumnClassificationDetails AWS API Documentation
|
|
2198
|
+
#
|
|
2199
|
+
class ColumnClassificationDetails < Struct.new(
|
|
2200
|
+
:column_mapping)
|
|
2201
|
+
SENSITIVE = []
|
|
2202
|
+
include Aws::Structure
|
|
2203
|
+
end
|
|
2204
|
+
|
|
2163
2205
|
# The configuration of the compute resources for an analysis with the
|
|
2164
2206
|
# Spark analytics engine.
|
|
2165
2207
|
#
|
|
@@ -3188,6 +3230,11 @@ module Aws::CleanRooms
|
|
|
3188
3230
|
# for faster troubleshooting in development and testing environments.
|
|
3189
3231
|
# @return [Types::ErrorMessageConfiguration]
|
|
3190
3232
|
#
|
|
3233
|
+
# @!attribute [rw] synthetic_data_parameters
|
|
3234
|
+
# The parameters for generating synthetic data when running the
|
|
3235
|
+
# analysis template.
|
|
3236
|
+
# @return [Types::SyntheticDataParameters]
|
|
3237
|
+
#
|
|
3191
3238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplateInput AWS API Documentation
|
|
3192
3239
|
#
|
|
3193
3240
|
class CreateAnalysisTemplateInput < Struct.new(
|
|
@@ -3199,7 +3246,8 @@ module Aws::CleanRooms
|
|
|
3199
3246
|
:tags,
|
|
3200
3247
|
:analysis_parameters,
|
|
3201
3248
|
:schema,
|
|
3202
|
-
:error_message_configuration
|
|
3249
|
+
:error_message_configuration,
|
|
3250
|
+
:synthetic_data_parameters)
|
|
3203
3251
|
SENSITIVE = [:analysis_parameters]
|
|
3204
3252
|
include Aws::Structure
|
|
3205
3253
|
end
|
|
@@ -6556,11 +6604,48 @@ module Aws::CleanRooms
|
|
|
6556
6604
|
# inference.
|
|
6557
6605
|
# @return [Types::ModelInferencePaymentConfig]
|
|
6558
6606
|
#
|
|
6607
|
+
# @!attribute [rw] synthetic_data_generation
|
|
6608
|
+
# The payment configuration for machine learning synthetic data
|
|
6609
|
+
# generation.
|
|
6610
|
+
# @return [Types::SyntheticDataGenerationPaymentConfig]
|
|
6611
|
+
#
|
|
6559
6612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLPaymentConfig AWS API Documentation
|
|
6560
6613
|
#
|
|
6561
6614
|
class MLPaymentConfig < Struct.new(
|
|
6562
6615
|
:model_training,
|
|
6563
|
-
:model_inference
|
|
6616
|
+
:model_inference,
|
|
6617
|
+
:synthetic_data_generation)
|
|
6618
|
+
SENSITIVE = []
|
|
6619
|
+
include Aws::Structure
|
|
6620
|
+
end
|
|
6621
|
+
|
|
6622
|
+
# Parameters that control the generation of synthetic data for machine
|
|
6623
|
+
# learning, including privacy settings and column classification
|
|
6624
|
+
# details.
|
|
6625
|
+
#
|
|
6626
|
+
# @!attribute [rw] epsilon
|
|
6627
|
+
# The epsilon value for differential privacy when generating synthetic
|
|
6628
|
+
# data. Lower values provide stronger privacy guarantees but may
|
|
6629
|
+
# reduce data utility.
|
|
6630
|
+
# @return [Float]
|
|
6631
|
+
#
|
|
6632
|
+
# @!attribute [rw] max_membership_inference_attack_score
|
|
6633
|
+
# The maximum acceptable score for membership inference attack
|
|
6634
|
+
# vulnerability. Synthetic data generation fails if the score for the
|
|
6635
|
+
# resulting data exceeds this threshold.
|
|
6636
|
+
# @return [Float]
|
|
6637
|
+
#
|
|
6638
|
+
# @!attribute [rw] column_classification
|
|
6639
|
+
# Classification details for data columns that specify how each column
|
|
6640
|
+
# should be treated during synthetic data generation.
|
|
6641
|
+
# @return [Types::ColumnClassificationDetails]
|
|
6642
|
+
#
|
|
6643
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLSyntheticDataParameters AWS API Documentation
|
|
6644
|
+
#
|
|
6645
|
+
class MLSyntheticDataParameters < Struct.new(
|
|
6646
|
+
:epsilon,
|
|
6647
|
+
:max_membership_inference_attack_score,
|
|
6648
|
+
:column_classification)
|
|
6564
6649
|
SENSITIVE = []
|
|
6565
6650
|
include Aws::Structure
|
|
6566
6651
|
end
|
|
@@ -6851,11 +6936,17 @@ module Aws::CleanRooms
|
|
|
6851
6936
|
# inference.
|
|
6852
6937
|
# @return [Types::MembershipModelInferencePaymentConfig]
|
|
6853
6938
|
#
|
|
6939
|
+
# @!attribute [rw] synthetic_data_generation
|
|
6940
|
+
# The payment configuration for synthetic data generation for this
|
|
6941
|
+
# machine learning membership.
|
|
6942
|
+
# @return [Types::MembershipSyntheticDataGenerationPaymentConfig]
|
|
6943
|
+
#
|
|
6854
6944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipMLPaymentConfig AWS API Documentation
|
|
6855
6945
|
#
|
|
6856
6946
|
class MembershipMLPaymentConfig < Struct.new(
|
|
6857
6947
|
:model_training,
|
|
6858
|
-
:model_inference
|
|
6948
|
+
:model_inference,
|
|
6949
|
+
:synthetic_data_generation)
|
|
6859
6950
|
SENSITIVE = []
|
|
6860
6951
|
include Aws::Structure
|
|
6861
6952
|
end
|
|
@@ -7139,6 +7230,22 @@ module Aws::CleanRooms
|
|
|
7139
7230
|
include Aws::Structure
|
|
7140
7231
|
end
|
|
7141
7232
|
|
|
7233
|
+
# Configuration for payment for synthetic data generation in a
|
|
7234
|
+
# membership.
|
|
7235
|
+
#
|
|
7236
|
+
# @!attribute [rw] is_responsible
|
|
7237
|
+
# Indicates if this membership is responsible for paying for synthetic
|
|
7238
|
+
# data generation.
|
|
7239
|
+
# @return [Boolean]
|
|
7240
|
+
#
|
|
7241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipSyntheticDataGenerationPaymentConfig AWS API Documentation
|
|
7242
|
+
#
|
|
7243
|
+
class MembershipSyntheticDataGenerationPaymentConfig < Struct.new(
|
|
7244
|
+
:is_responsible)
|
|
7245
|
+
SENSITIVE = []
|
|
7246
|
+
include Aws::Structure
|
|
7247
|
+
end
|
|
7248
|
+
|
|
7142
7249
|
# An object representing the collaboration member's model inference
|
|
7143
7250
|
# payment responsibilities set by the collaboration creator.
|
|
7144
7251
|
#
|
|
@@ -9192,6 +9299,78 @@ module Aws::CleanRooms
|
|
|
9192
9299
|
include Aws::Structure
|
|
9193
9300
|
end
|
|
9194
9301
|
|
|
9302
|
+
# Properties that define how a specific data column should be handled
|
|
9303
|
+
# during synthetic data generation, including its name, type, and role
|
|
9304
|
+
# in predictive modeling.
|
|
9305
|
+
#
|
|
9306
|
+
# @!attribute [rw] column_name
|
|
9307
|
+
# The name of the data column as it appears in the dataset.
|
|
9308
|
+
# @return [String]
|
|
9309
|
+
#
|
|
9310
|
+
# @!attribute [rw] column_type
|
|
9311
|
+
# The data type of the column, which determines how the synthetic data
|
|
9312
|
+
# generation algorithm processes and synthesizes values for this
|
|
9313
|
+
# column.
|
|
9314
|
+
# @return [String]
|
|
9315
|
+
#
|
|
9316
|
+
# @!attribute [rw] is_predictive_value
|
|
9317
|
+
# Indicates if this column contains predictive values that should be
|
|
9318
|
+
# treated as target variables in machine learning models. This affects
|
|
9319
|
+
# how the synthetic data generation preserves statistical
|
|
9320
|
+
# relationships.
|
|
9321
|
+
# @return [Boolean]
|
|
9322
|
+
#
|
|
9323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SyntheticDataColumnProperties AWS API Documentation
|
|
9324
|
+
#
|
|
9325
|
+
class SyntheticDataColumnProperties < Struct.new(
|
|
9326
|
+
:column_name,
|
|
9327
|
+
:column_type,
|
|
9328
|
+
:is_predictive_value)
|
|
9329
|
+
SENSITIVE = []
|
|
9330
|
+
include Aws::Structure
|
|
9331
|
+
end
|
|
9332
|
+
|
|
9333
|
+
# Payment configuration for synthetic data generation.
|
|
9334
|
+
#
|
|
9335
|
+
# @!attribute [rw] is_responsible
|
|
9336
|
+
# Indicates who is responsible for paying for synthetic data
|
|
9337
|
+
# generation.
|
|
9338
|
+
# @return [Boolean]
|
|
9339
|
+
#
|
|
9340
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SyntheticDataGenerationPaymentConfig AWS API Documentation
|
|
9341
|
+
#
|
|
9342
|
+
class SyntheticDataGenerationPaymentConfig < Struct.new(
|
|
9343
|
+
:is_responsible)
|
|
9344
|
+
SENSITIVE = []
|
|
9345
|
+
include Aws::Structure
|
|
9346
|
+
end
|
|
9347
|
+
|
|
9348
|
+
# The parameters that control how synthetic data is generated, including
|
|
9349
|
+
# privacy settings, column classifications, and other configuration
|
|
9350
|
+
# options that affect the data synthesis process.
|
|
9351
|
+
#
|
|
9352
|
+
# @note SyntheticDataParameters is a union - when making an API calls you must set exactly one of the members.
|
|
9353
|
+
#
|
|
9354
|
+
# @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.
|
|
9355
|
+
#
|
|
9356
|
+
# @!attribute [rw] ml_synthetic_data_parameters
|
|
9357
|
+
# The machine learning-specific parameters for synthetic data
|
|
9358
|
+
# generation.
|
|
9359
|
+
# @return [Types::MLSyntheticDataParameters]
|
|
9360
|
+
#
|
|
9361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SyntheticDataParameters AWS API Documentation
|
|
9362
|
+
#
|
|
9363
|
+
class SyntheticDataParameters < Struct.new(
|
|
9364
|
+
:ml_synthetic_data_parameters,
|
|
9365
|
+
:unknown)
|
|
9366
|
+
SENSITIVE = []
|
|
9367
|
+
include Aws::Structure
|
|
9368
|
+
include Aws::Structure::Union
|
|
9369
|
+
|
|
9370
|
+
class MlSyntheticDataParameters < SyntheticDataParameters; end
|
|
9371
|
+
class Unknown < SyntheticDataParameters; end
|
|
9372
|
+
end
|
|
9373
|
+
|
|
9195
9374
|
# A pointer to the dataset that underlies this table.
|
|
9196
9375
|
#
|
|
9197
9376
|
# @note TableReference is a union - when making an API calls you must set exactly one of the members.
|
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: {
|
|
@@ -493,6 +514,9 @@ module Aws
|
|
|
493
514
|
}?,
|
|
494
515
|
model_inference: {
|
|
495
516
|
is_responsible: bool
|
|
517
|
+
}?,
|
|
518
|
+
synthetic_data_generation: {
|
|
519
|
+
is_responsible: bool
|
|
496
520
|
}?
|
|
497
521
|
}?,
|
|
498
522
|
job_compute: {
|
|
@@ -1182,7 +1206,7 @@ module Aws
|
|
|
1182
1206
|
type: ("PYSPARK"),
|
|
1183
1207
|
membership_identifier: ::String,
|
|
1184
1208
|
job_parameters: {
|
|
1185
|
-
analysis_template_arn: ::String
|
|
1209
|
+
analysis_template_arn: ::String
|
|
1186
1210
|
},
|
|
1187
1211
|
?result_configuration: {
|
|
1188
1212
|
output_configuration: {
|
data/sig/types.rbs
CHANGED
|
@@ -195,6 +195,7 @@ module Aws::CleanRooms
|
|
|
195
195
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
|
196
196
|
attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
|
|
197
197
|
attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
|
|
198
|
+
attr_accessor synthetic_data_parameters: Types::SyntheticDataParameters
|
|
198
199
|
SENSITIVE: []
|
|
199
200
|
end
|
|
200
201
|
|
|
@@ -227,6 +228,7 @@ module Aws::CleanRooms
|
|
|
227
228
|
attr_accessor collaboration_arn: ::String
|
|
228
229
|
attr_accessor collaboration_id: ::String
|
|
229
230
|
attr_accessor description: ::String
|
|
231
|
+
attr_accessor is_synthetic_data: bool
|
|
230
232
|
SENSITIVE: []
|
|
231
233
|
end
|
|
232
234
|
|
|
@@ -388,6 +390,7 @@ module Aws::CleanRooms
|
|
|
388
390
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
|
389
391
|
attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
|
|
390
392
|
attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
|
|
393
|
+
attr_accessor synthetic_data_parameters: Types::SyntheticDataParameters
|
|
391
394
|
SENSITIVE: []
|
|
392
395
|
end
|
|
393
396
|
|
|
@@ -401,6 +404,7 @@ module Aws::CleanRooms
|
|
|
401
404
|
attr_accessor collaboration_id: ::String
|
|
402
405
|
attr_accessor creator_account_id: ::String
|
|
403
406
|
attr_accessor description: ::String
|
|
407
|
+
attr_accessor is_synthetic_data: bool
|
|
404
408
|
SENSITIVE: []
|
|
405
409
|
end
|
|
406
410
|
|
|
@@ -545,6 +549,11 @@ module Aws::CleanRooms
|
|
|
545
549
|
SENSITIVE: []
|
|
546
550
|
end
|
|
547
551
|
|
|
552
|
+
class ColumnClassificationDetails
|
|
553
|
+
attr_accessor column_mapping: ::Array[Types::SyntheticDataColumnProperties]
|
|
554
|
+
SENSITIVE: []
|
|
555
|
+
end
|
|
556
|
+
|
|
548
557
|
class ComputeConfiguration
|
|
549
558
|
attr_accessor worker: Types::WorkerComputeConfiguration
|
|
550
559
|
attr_accessor unknown: untyped
|
|
@@ -830,6 +839,7 @@ module Aws::CleanRooms
|
|
|
830
839
|
attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
|
|
831
840
|
attr_accessor schema: Types::AnalysisSchema
|
|
832
841
|
attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
|
|
842
|
+
attr_accessor synthetic_data_parameters: Types::SyntheticDataParameters
|
|
833
843
|
SENSITIVE: []
|
|
834
844
|
end
|
|
835
845
|
|
|
@@ -1834,6 +1844,14 @@ module Aws::CleanRooms
|
|
|
1834
1844
|
class MLPaymentConfig
|
|
1835
1845
|
attr_accessor model_training: Types::ModelTrainingPaymentConfig
|
|
1836
1846
|
attr_accessor model_inference: Types::ModelInferencePaymentConfig
|
|
1847
|
+
attr_accessor synthetic_data_generation: Types::SyntheticDataGenerationPaymentConfig
|
|
1848
|
+
SENSITIVE: []
|
|
1849
|
+
end
|
|
1850
|
+
|
|
1851
|
+
class MLSyntheticDataParameters
|
|
1852
|
+
attr_accessor epsilon: ::Float
|
|
1853
|
+
attr_accessor max_membership_inference_attack_score: ::Float
|
|
1854
|
+
attr_accessor column_classification: Types::ColumnClassificationDetails
|
|
1837
1855
|
SENSITIVE: []
|
|
1838
1856
|
end
|
|
1839
1857
|
|
|
@@ -1896,6 +1914,7 @@ module Aws::CleanRooms
|
|
|
1896
1914
|
class MembershipMLPaymentConfig
|
|
1897
1915
|
attr_accessor model_training: Types::MembershipModelTrainingPaymentConfig
|
|
1898
1916
|
attr_accessor model_inference: Types::MembershipModelInferencePaymentConfig
|
|
1917
|
+
attr_accessor synthetic_data_generation: Types::MembershipSyntheticDataGenerationPaymentConfig
|
|
1899
1918
|
SENSITIVE: []
|
|
1900
1919
|
end
|
|
1901
1920
|
|
|
@@ -1972,6 +1991,11 @@ module Aws::CleanRooms
|
|
|
1972
1991
|
SENSITIVE: []
|
|
1973
1992
|
end
|
|
1974
1993
|
|
|
1994
|
+
class MembershipSyntheticDataGenerationPaymentConfig
|
|
1995
|
+
attr_accessor is_responsible: bool
|
|
1996
|
+
SENSITIVE: []
|
|
1997
|
+
end
|
|
1998
|
+
|
|
1975
1999
|
class ModelInferencePaymentConfig
|
|
1976
2000
|
attr_accessor is_responsible: bool
|
|
1977
2001
|
SENSITIVE: []
|
|
@@ -2606,6 +2630,29 @@ module Aws::CleanRooms
|
|
|
2606
2630
|
SENSITIVE: []
|
|
2607
2631
|
end
|
|
2608
2632
|
|
|
2633
|
+
class SyntheticDataColumnProperties
|
|
2634
|
+
attr_accessor column_name: ::String
|
|
2635
|
+
attr_accessor column_type: ("CATEGORICAL" | "NUMERICAL")
|
|
2636
|
+
attr_accessor is_predictive_value: bool
|
|
2637
|
+
SENSITIVE: []
|
|
2638
|
+
end
|
|
2639
|
+
|
|
2640
|
+
class SyntheticDataGenerationPaymentConfig
|
|
2641
|
+
attr_accessor is_responsible: bool
|
|
2642
|
+
SENSITIVE: []
|
|
2643
|
+
end
|
|
2644
|
+
|
|
2645
|
+
class SyntheticDataParameters
|
|
2646
|
+
attr_accessor ml_synthetic_data_parameters: Types::MLSyntheticDataParameters
|
|
2647
|
+
attr_accessor unknown: untyped
|
|
2648
|
+
SENSITIVE: []
|
|
2649
|
+
|
|
2650
|
+
class MlSyntheticDataParameters < SyntheticDataParameters
|
|
2651
|
+
end
|
|
2652
|
+
class Unknown < SyntheticDataParameters
|
|
2653
|
+
end
|
|
2654
|
+
end
|
|
2655
|
+
|
|
2609
2656
|
class TableReference
|
|
2610
2657
|
attr_accessor glue: Types::GlueTableReference
|
|
2611
2658
|
attr_accessor snowflake: Types::SnowflakeTableReference
|