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.
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
 
@@ -242,6 +244,11 @@ module Aws::CleanRooms
242
244
  SENSITIVE: []
243
245
  end
244
246
 
247
+ class ApprovalStatusDetails
248
+ attr_accessor status: ("APPROVED" | "DENIED" | "PENDING")
249
+ SENSITIVE: []
250
+ end
251
+
245
252
  class AthenaTableReference
246
253
  attr_accessor region: ("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "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" | "ap-east-2")
247
254
  attr_accessor work_group: ::String
@@ -327,25 +334,28 @@ module Aws::CleanRooms
327
334
  end
328
335
 
329
336
  class Change
330
- attr_accessor specification_type: ("MEMBER")
337
+ attr_accessor specification_type: ("MEMBER" | "COLLABORATION")
331
338
  attr_accessor specification: Types::ChangeSpecification
332
- attr_accessor types: ::Array[("ADD_MEMBER")]
339
+ attr_accessor types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY" | "EDIT_AUTO_APPROVED_CHANGE_TYPES")]
333
340
  SENSITIVE: []
334
341
  end
335
342
 
336
343
  class ChangeInput
337
- attr_accessor specification_type: ("MEMBER")
344
+ attr_accessor specification_type: ("MEMBER" | "COLLABORATION")
338
345
  attr_accessor specification: Types::ChangeSpecification
339
346
  SENSITIVE: []
340
347
  end
341
348
 
342
349
  class ChangeSpecification
343
350
  attr_accessor member: Types::MemberChangeSpecification
351
+ attr_accessor collaboration: Types::CollaborationChangeSpecification
344
352
  attr_accessor unknown: untyped
345
353
  SENSITIVE: []
346
354
 
347
355
  class Member < ChangeSpecification
348
356
  end
357
+ class Collaboration < ChangeSpecification
358
+ end
349
359
  class Unknown < ChangeSpecification
350
360
  end
351
361
  end
@@ -366,7 +376,7 @@ module Aws::CleanRooms
366
376
  attr_accessor query_log_status: ("ENABLED" | "DISABLED")
367
377
  attr_accessor job_log_status: ("ENABLED" | "DISABLED")
368
378
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
369
- attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER")]
379
+ attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
370
380
  attr_accessor 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")]
371
381
  SENSITIVE: []
372
382
  end
@@ -388,6 +398,7 @@ module Aws::CleanRooms
388
398
  attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
389
399
  attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
390
400
  attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
401
+ attr_accessor synthetic_data_parameters: Types::SyntheticDataParameters
391
402
  SENSITIVE: []
392
403
  end
393
404
 
@@ -401,6 +412,7 @@ module Aws::CleanRooms
401
412
  attr_accessor collaboration_id: ::String
402
413
  attr_accessor creator_account_id: ::String
403
414
  attr_accessor description: ::String
415
+ attr_accessor is_synthetic_data: bool
404
416
  SENSITIVE: []
405
417
  end
406
418
 
@@ -412,6 +424,7 @@ module Aws::CleanRooms
412
424
  attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
413
425
  attr_accessor is_auto_approved: bool
414
426
  attr_accessor changes: ::Array[Types::Change]
427
+ attr_accessor approvals: ::Hash[::String, Types::ApprovalStatusDetails]
415
428
  SENSITIVE: []
416
429
  end
417
430
 
@@ -423,6 +436,12 @@ module Aws::CleanRooms
423
436
  attr_accessor status: ("PENDING" | "APPROVED" | "CANCELLED" | "DENIED" | "COMMITTED")
424
437
  attr_accessor is_auto_approved: bool
425
438
  attr_accessor changes: ::Array[Types::Change]
439
+ attr_accessor approvals: ::Hash[::String, Types::ApprovalStatusDetails]
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class CollaborationChangeSpecification
444
+ attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
426
445
  SENSITIVE: []
427
446
  end
428
447
 
@@ -545,6 +564,11 @@ module Aws::CleanRooms
545
564
  SENSITIVE: []
546
565
  end
547
566
 
567
+ class ColumnClassificationDetails
568
+ attr_accessor column_mapping: ::Array[Types::SyntheticDataColumnProperties]
569
+ SENSITIVE: []
570
+ end
571
+
548
572
  class ComputeConfiguration
549
573
  attr_accessor worker: Types::WorkerComputeConfiguration
550
574
  attr_accessor unknown: untyped
@@ -830,6 +854,7 @@ module Aws::CleanRooms
830
854
  attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
831
855
  attr_accessor schema: Types::AnalysisSchema
832
856
  attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
857
+ attr_accessor synthetic_data_parameters: Types::SyntheticDataParameters
833
858
  SENSITIVE: []
834
859
  end
835
860
 
@@ -862,7 +887,7 @@ module Aws::CleanRooms
862
887
  attr_accessor tags: ::Hash[::String, ::String]
863
888
  attr_accessor creator_payment_configuration: Types::PaymentConfiguration
864
889
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
865
- attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER")]
890
+ attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
866
891
  attr_accessor 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")]
867
892
  SENSITIVE: []
868
893
  end
@@ -1834,6 +1859,14 @@ module Aws::CleanRooms
1834
1859
  class MLPaymentConfig
1835
1860
  attr_accessor model_training: Types::ModelTrainingPaymentConfig
1836
1861
  attr_accessor model_inference: Types::ModelInferencePaymentConfig
1862
+ attr_accessor synthetic_data_generation: Types::SyntheticDataGenerationPaymentConfig
1863
+ SENSITIVE: []
1864
+ end
1865
+
1866
+ class MLSyntheticDataParameters
1867
+ attr_accessor epsilon: ::Float
1868
+ attr_accessor max_membership_inference_attack_score: ::Float
1869
+ attr_accessor column_classification: Types::ColumnClassificationDetails
1837
1870
  SENSITIVE: []
1838
1871
  end
1839
1872
 
@@ -1896,6 +1929,7 @@ module Aws::CleanRooms
1896
1929
  class MembershipMLPaymentConfig
1897
1930
  attr_accessor model_training: Types::MembershipModelTrainingPaymentConfig
1898
1931
  attr_accessor model_inference: Types::MembershipModelInferencePaymentConfig
1932
+ attr_accessor synthetic_data_generation: Types::MembershipSyntheticDataGenerationPaymentConfig
1899
1933
  SENSITIVE: []
1900
1934
  end
1901
1935
 
@@ -1972,6 +2006,11 @@ module Aws::CleanRooms
1972
2006
  SENSITIVE: []
1973
2007
  end
1974
2008
 
2009
+ class MembershipSyntheticDataGenerationPaymentConfig
2010
+ attr_accessor is_responsible: bool
2011
+ SENSITIVE: []
2012
+ end
2013
+
1975
2014
  class ModelInferencePaymentConfig
1976
2015
  attr_accessor is_responsible: bool
1977
2016
  SENSITIVE: []
@@ -2606,6 +2645,29 @@ module Aws::CleanRooms
2606
2645
  SENSITIVE: []
2607
2646
  end
2608
2647
 
2648
+ class SyntheticDataColumnProperties
2649
+ attr_accessor column_name: ::String
2650
+ attr_accessor column_type: ("CATEGORICAL" | "NUMERICAL")
2651
+ attr_accessor is_predictive_value: bool
2652
+ SENSITIVE: []
2653
+ end
2654
+
2655
+ class SyntheticDataGenerationPaymentConfig
2656
+ attr_accessor is_responsible: bool
2657
+ SENSITIVE: []
2658
+ end
2659
+
2660
+ class SyntheticDataParameters
2661
+ attr_accessor ml_synthetic_data_parameters: Types::MLSyntheticDataParameters
2662
+ attr_accessor unknown: untyped
2663
+ SENSITIVE: []
2664
+
2665
+ class MlSyntheticDataParameters < SyntheticDataParameters
2666
+ end
2667
+ class Unknown < SyntheticDataParameters
2668
+ end
2669
+ end
2670
+
2609
2671
  class TableReference
2610
2672
  attr_accessor glue: Types::GlueTableReference
2611
2673
  attr_accessor snowflake: Types::SnowflakeTableReference
@@ -2658,6 +2720,18 @@ module Aws::CleanRooms
2658
2720
  SENSITIVE: []
2659
2721
  end
2660
2722
 
2723
+ class UpdateCollaborationChangeRequestInput
2724
+ attr_accessor collaboration_identifier: ::String
2725
+ attr_accessor change_request_identifier: ::String
2726
+ attr_accessor action: ("APPROVE" | "DENY" | "CANCEL" | "COMMIT")
2727
+ SENSITIVE: []
2728
+ end
2729
+
2730
+ class UpdateCollaborationChangeRequestOutput
2731
+ attr_accessor collaboration_change_request: Types::CollaborationChangeRequest
2732
+ SENSITIVE: []
2733
+ end
2734
+
2661
2735
  class UpdateCollaborationInput
2662
2736
  attr_accessor collaboration_identifier: ::String
2663
2737
  attr_accessor name: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services