aws-sdk-cleanrooms 1.34.0 → 1.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +179 -68
- data/lib/aws-sdk-cleanrooms/client_api.rb +68 -0
- data/lib/aws-sdk-cleanrooms/types.rb +474 -113
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +48 -8
- data/sig/types.rbs +74 -1
- metadata +2 -2
@@ -804,6 +804,22 @@ module Aws::CleanRooms
|
|
804
804
|
include Aws::Structure
|
805
805
|
end
|
806
806
|
|
807
|
+
# Information related to the utilization of resources that have been
|
808
|
+
# billed or charged for in a given context, such as a protected query.
|
809
|
+
#
|
810
|
+
# @!attribute [rw] units
|
811
|
+
# The number of Clean Rooms Processing Unit (CRPU) hours that have
|
812
|
+
# been billed.
|
813
|
+
# @return [Float]
|
814
|
+
#
|
815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/BilledResourceUtilization AWS API Documentation
|
816
|
+
#
|
817
|
+
class BilledResourceUtilization < Struct.new(
|
818
|
+
:units)
|
819
|
+
SENSITIVE = []
|
820
|
+
include Aws::Structure
|
821
|
+
end
|
822
|
+
|
807
823
|
# The multi-party data share environment. The collaboration contains
|
808
824
|
# metadata about its purpose and participants.
|
809
825
|
#
|
@@ -863,6 +879,10 @@ module Aws::CleanRooms
|
|
863
879
|
# disabled for the collaboration.
|
864
880
|
# @return [String]
|
865
881
|
#
|
882
|
+
# @!attribute [rw] analytics_engine
|
883
|
+
# The analytics engine for the collaboration.
|
884
|
+
# @return [String]
|
885
|
+
#
|
866
886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Collaboration AWS API Documentation
|
867
887
|
#
|
868
888
|
class Collaboration < Struct.new(
|
@@ -878,7 +898,8 @@ module Aws::CleanRooms
|
|
878
898
|
:membership_id,
|
879
899
|
:membership_arn,
|
880
900
|
:data_encryption_metadata,
|
881
|
-
:query_log_status
|
901
|
+
:query_log_status,
|
902
|
+
:analytics_engine)
|
882
903
|
SENSITIVE = []
|
883
904
|
include Aws::Structure
|
884
905
|
end
|
@@ -1060,7 +1081,7 @@ module Aws::CleanRooms
|
|
1060
1081
|
#
|
1061
1082
|
# @!attribute [rw] creator_account_id
|
1062
1083
|
# The identifier used to reference members of the collaboration. Only
|
1063
|
-
# supports
|
1084
|
+
# supports Amazon Web Services account ID.
|
1064
1085
|
# @return [String]
|
1065
1086
|
#
|
1066
1087
|
# @!attribute [rw] create_time
|
@@ -1128,7 +1149,7 @@ module Aws::CleanRooms
|
|
1128
1149
|
#
|
1129
1150
|
# @!attribute [rw] creator_account_id
|
1130
1151
|
# The identifier used to reference members of the collaboration. Only
|
1131
|
-
# supports
|
1152
|
+
# supports Amazon Web Services account ID.
|
1132
1153
|
# @return [String]
|
1133
1154
|
#
|
1134
1155
|
# @!attribute [rw] description
|
@@ -1538,6 +1559,10 @@ module Aws::CleanRooms
|
|
1538
1559
|
# The ARN of a member in a collaboration.
|
1539
1560
|
# @return [String]
|
1540
1561
|
#
|
1562
|
+
# @!attribute [rw] analytics_engine
|
1563
|
+
# The analytics engine.
|
1564
|
+
# @return [String]
|
1565
|
+
#
|
1541
1566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationSummary AWS API Documentation
|
1542
1567
|
#
|
1543
1568
|
class CollaborationSummary < Struct.new(
|
@@ -1550,7 +1575,8 @@ module Aws::CleanRooms
|
|
1550
1575
|
:update_time,
|
1551
1576
|
:member_status,
|
1552
1577
|
:membership_id,
|
1553
|
-
:membership_arn
|
1578
|
+
:membership_arn,
|
1579
|
+
:analytics_engine)
|
1554
1580
|
SENSITIVE = []
|
1555
1581
|
include Aws::Structure
|
1556
1582
|
end
|
@@ -1575,6 +1601,30 @@ module Aws::CleanRooms
|
|
1575
1601
|
include Aws::Structure
|
1576
1602
|
end
|
1577
1603
|
|
1604
|
+
# The configuration of the compute resources for an analysis with the
|
1605
|
+
# Spark analytics engine.
|
1606
|
+
#
|
1607
|
+
# @note ComputeConfiguration is a union - when making an API calls you must set exactly one of the members.
|
1608
|
+
#
|
1609
|
+
# @note ComputeConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ComputeConfiguration corresponding to the set member.
|
1610
|
+
#
|
1611
|
+
# @!attribute [rw] worker
|
1612
|
+
# The worker configuration for the compute environment.
|
1613
|
+
# @return [Types::WorkerComputeConfiguration]
|
1614
|
+
#
|
1615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ComputeConfiguration AWS API Documentation
|
1616
|
+
#
|
1617
|
+
class ComputeConfiguration < Struct.new(
|
1618
|
+
:worker,
|
1619
|
+
:unknown)
|
1620
|
+
SENSITIVE = []
|
1621
|
+
include Aws::Structure
|
1622
|
+
include Aws::Structure::Union
|
1623
|
+
|
1624
|
+
class Worker < ComputeConfiguration; end
|
1625
|
+
class Unknown < ComputeConfiguration; end
|
1626
|
+
end
|
1627
|
+
|
1578
1628
|
# The configuration details.
|
1579
1629
|
#
|
1580
1630
|
# @note ConfigurationDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigurationDetails corresponding to the set member.
|
@@ -2381,6 +2431,18 @@ module Aws::CleanRooms
|
|
2381
2431
|
# The abilities granted to the collaboration creator.
|
2382
2432
|
# @return [Array<String>]
|
2383
2433
|
#
|
2434
|
+
# @!attribute [rw] creator_ml_member_abilities
|
2435
|
+
# The ML abilities granted to the collaboration creator.
|
2436
|
+
#
|
2437
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
2438
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon
|
2439
|
+
# Web Services Service Terms][1].
|
2440
|
+
#
|
2441
|
+
#
|
2442
|
+
#
|
2443
|
+
# [1]: https://aws.amazon.com/service-terms/
|
2444
|
+
# @return [Types::MLMemberAbilities]
|
2445
|
+
#
|
2384
2446
|
# @!attribute [rw] creator_display_name
|
2385
2447
|
# The display name of the collaboration creator.
|
2386
2448
|
# @return [String]
|
@@ -2411,6 +2473,10 @@ module Aws::CleanRooms
|
|
2411
2473
|
# default payer.
|
2412
2474
|
# @return [Types::PaymentConfiguration]
|
2413
2475
|
#
|
2476
|
+
# @!attribute [rw] analytics_engine
|
2477
|
+
# The analytics engine.
|
2478
|
+
# @return [String]
|
2479
|
+
#
|
2414
2480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
|
2415
2481
|
#
|
2416
2482
|
class CreateCollaborationInput < Struct.new(
|
@@ -2418,11 +2484,13 @@ module Aws::CleanRooms
|
|
2418
2484
|
:name,
|
2419
2485
|
:description,
|
2420
2486
|
:creator_member_abilities,
|
2487
|
+
:creator_ml_member_abilities,
|
2421
2488
|
:creator_display_name,
|
2422
2489
|
:data_encryption_metadata,
|
2423
2490
|
:query_log_status,
|
2424
2491
|
:tags,
|
2425
|
-
:creator_payment_configuration
|
2492
|
+
:creator_payment_configuration,
|
2493
|
+
:analytics_engine)
|
2426
2494
|
SENSITIVE = []
|
2427
2495
|
include Aws::Structure
|
2428
2496
|
end
|
@@ -4523,12 +4591,14 @@ module Aws::CleanRooms
|
|
4523
4591
|
# @return [String]
|
4524
4592
|
#
|
4525
4593
|
# @!attribute [rw] next_token
|
4526
|
-
# The token
|
4527
|
-
# page of results.
|
4594
|
+
# The pagination token that's used to fetch the next set of results.
|
4528
4595
|
# @return [String]
|
4529
4596
|
#
|
4530
4597
|
# @!attribute [rw] max_results
|
4531
|
-
# The maximum
|
4598
|
+
# The maximum number of results that are returned for an API request
|
4599
|
+
# call. The service chooses a default number if you don't set one.
|
4600
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4601
|
+
# value has not been met.
|
4532
4602
|
# @return [Integer]
|
4533
4603
|
#
|
4534
4604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListAnalysisTemplatesInput AWS API Documentation
|
@@ -4542,8 +4612,7 @@ module Aws::CleanRooms
|
|
4542
4612
|
end
|
4543
4613
|
|
4544
4614
|
# @!attribute [rw] next_token
|
4545
|
-
# The token
|
4546
|
-
# page of results.
|
4615
|
+
# The pagination token that's used to fetch the next set of results.
|
4547
4616
|
# @return [String]
|
4548
4617
|
#
|
4549
4618
|
# @!attribute [rw] analysis_template_summaries
|
@@ -4565,12 +4634,14 @@ module Aws::CleanRooms
|
|
4565
4634
|
# @return [String]
|
4566
4635
|
#
|
4567
4636
|
# @!attribute [rw] next_token
|
4568
|
-
# The token
|
4569
|
-
# page of results.
|
4637
|
+
# The pagination token that's used to fetch the next set of results.
|
4570
4638
|
# @return [String]
|
4571
4639
|
#
|
4572
4640
|
# @!attribute [rw] max_results
|
4573
|
-
# The maximum
|
4641
|
+
# The maximum number of results that are returned for an API request
|
4642
|
+
# call. The service chooses a default number if you don't set one.
|
4643
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4644
|
+
# value has not been met.
|
4574
4645
|
# @return [Integer]
|
4575
4646
|
#
|
4576
4647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationAnalysisTemplatesInput AWS API Documentation
|
@@ -4584,8 +4655,7 @@ module Aws::CleanRooms
|
|
4584
4655
|
end
|
4585
4656
|
|
4586
4657
|
# @!attribute [rw] next_token
|
4587
|
-
# The token
|
4588
|
-
# page of results.
|
4658
|
+
# The pagination token that's used to fetch the next set of results.
|
4589
4659
|
# @return [String]
|
4590
4660
|
#
|
4591
4661
|
# @!attribute [rw] collaboration_analysis_template_summaries
|
@@ -4607,12 +4677,14 @@ module Aws::CleanRooms
|
|
4607
4677
|
# @return [String]
|
4608
4678
|
#
|
4609
4679
|
# @!attribute [rw] next_token
|
4610
|
-
# The token
|
4611
|
-
# page of results.
|
4680
|
+
# The pagination token that's used to fetch the next set of results.
|
4612
4681
|
# @return [String]
|
4613
4682
|
#
|
4614
4683
|
# @!attribute [rw] max_results
|
4615
|
-
# The maximum
|
4684
|
+
# The maximum number of results that are returned for an API request
|
4685
|
+
# call. The service chooses a default number if you don't set one.
|
4686
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4687
|
+
# value has not been met.
|
4616
4688
|
# @return [Integer]
|
4617
4689
|
#
|
4618
4690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsInput AWS API Documentation
|
@@ -4631,8 +4703,7 @@ module Aws::CleanRooms
|
|
4631
4703
|
# @return [Array<Types::CollaborationConfiguredAudienceModelAssociationSummary>]
|
4632
4704
|
#
|
4633
4705
|
# @!attribute [rw] next_token
|
4634
|
-
# The token
|
4635
|
-
# page of results.
|
4706
|
+
# The pagination token that's used to fetch the next set of results.
|
4636
4707
|
# @return [String]
|
4637
4708
|
#
|
4638
4709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsOutput AWS API Documentation
|
@@ -4692,14 +4763,14 @@ module Aws::CleanRooms
|
|
4692
4763
|
# @return [String]
|
4693
4764
|
#
|
4694
4765
|
# @!attribute [rw] next_token
|
4695
|
-
# The token
|
4696
|
-
# page of results.
|
4766
|
+
# The pagination token that's used to fetch the next set of results.
|
4697
4767
|
# @return [String]
|
4698
4768
|
#
|
4699
4769
|
# @!attribute [rw] max_results
|
4700
|
-
# The maximum
|
4701
|
-
# chooses a default if
|
4702
|
-
#
|
4770
|
+
# The maximum number of results that are returned for an API request
|
4771
|
+
# call. The service chooses a default number if you don't set one.
|
4772
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4773
|
+
# value has not been met.
|
4703
4774
|
# @return [Integer]
|
4704
4775
|
#
|
4705
4776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetTemplatesInput AWS API Documentation
|
@@ -4713,8 +4784,7 @@ module Aws::CleanRooms
|
|
4713
4784
|
end
|
4714
4785
|
|
4715
4786
|
# @!attribute [rw] next_token
|
4716
|
-
# The token
|
4717
|
-
# page of results.
|
4787
|
+
# The pagination token that's used to fetch the next set of results.
|
4718
4788
|
# @return [String]
|
4719
4789
|
#
|
4720
4790
|
# @!attribute [rw] collaboration_privacy_budget_template_summaries
|
@@ -4741,14 +4811,14 @@ module Aws::CleanRooms
|
|
4741
4811
|
# @return [String]
|
4742
4812
|
#
|
4743
4813
|
# @!attribute [rw] max_results
|
4744
|
-
# The maximum
|
4745
|
-
# chooses a default if
|
4746
|
-
#
|
4814
|
+
# The maximum number of results that are returned for an API request
|
4815
|
+
# call. The service chooses a default number if you don't set one.
|
4816
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4817
|
+
# value has not been met.
|
4747
4818
|
# @return [Integer]
|
4748
4819
|
#
|
4749
4820
|
# @!attribute [rw] next_token
|
4750
|
-
# The token
|
4751
|
-
# page of results.
|
4821
|
+
# The pagination token that's used to fetch the next set of results.
|
4752
4822
|
# @return [String]
|
4753
4823
|
#
|
4754
4824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsInput AWS API Documentation
|
@@ -4767,8 +4837,7 @@ module Aws::CleanRooms
|
|
4767
4837
|
# @return [Array<Types::CollaborationPrivacyBudgetSummary>]
|
4768
4838
|
#
|
4769
4839
|
# @!attribute [rw] next_token
|
4770
|
-
# The token
|
4771
|
-
# page of results.
|
4840
|
+
# The pagination token that's used to fetch the next set of results.
|
4772
4841
|
# @return [String]
|
4773
4842
|
#
|
4774
4843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsOutput AWS API Documentation
|
@@ -4781,14 +4850,14 @@ module Aws::CleanRooms
|
|
4781
4850
|
end
|
4782
4851
|
|
4783
4852
|
# @!attribute [rw] next_token
|
4784
|
-
# The token
|
4785
|
-
# page of results.
|
4853
|
+
# The pagination token that's used to fetch the next set of results.
|
4786
4854
|
# @return [String]
|
4787
4855
|
#
|
4788
4856
|
# @!attribute [rw] max_results
|
4789
|
-
# The maximum
|
4790
|
-
# chooses a default if
|
4791
|
-
#
|
4857
|
+
# The maximum number of results that are returned for an API request
|
4858
|
+
# call. The service chooses a default number if you don't set one.
|
4859
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4860
|
+
# value has not been met.
|
4792
4861
|
# @return [Integer]
|
4793
4862
|
#
|
4794
4863
|
# @!attribute [rw] member_status
|
@@ -4806,8 +4875,7 @@ module Aws::CleanRooms
|
|
4806
4875
|
end
|
4807
4876
|
|
4808
4877
|
# @!attribute [rw] next_token
|
4809
|
-
# The token
|
4810
|
-
# page of results.
|
4878
|
+
# The pagination token that's used to fetch the next set of results.
|
4811
4879
|
# @return [String]
|
4812
4880
|
#
|
4813
4881
|
# @!attribute [rw] collaboration_list
|
@@ -4829,14 +4897,14 @@ module Aws::CleanRooms
|
|
4829
4897
|
# @return [String]
|
4830
4898
|
#
|
4831
4899
|
# @!attribute [rw] next_token
|
4832
|
-
# The token
|
4833
|
-
# page of results.
|
4900
|
+
# The pagination token that's used to fetch the next set of results.
|
4834
4901
|
# @return [String]
|
4835
4902
|
#
|
4836
4903
|
# @!attribute [rw] max_results
|
4837
|
-
# The maximum
|
4838
|
-
# chooses a default if
|
4839
|
-
#
|
4904
|
+
# The maximum number of results that are returned for an API request
|
4905
|
+
# call. The service chooses a default number if you don't set one.
|
4906
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4907
|
+
# value has not been met.
|
4840
4908
|
# @return [Integer]
|
4841
4909
|
#
|
4842
4910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredAudienceModelAssociationsInput AWS API Documentation
|
@@ -4873,12 +4941,14 @@ module Aws::CleanRooms
|
|
4873
4941
|
# @return [String]
|
4874
4942
|
#
|
4875
4943
|
# @!attribute [rw] next_token
|
4876
|
-
# The token
|
4877
|
-
# page of results.
|
4944
|
+
# The pagination token that's used to fetch the next set of results.
|
4878
4945
|
# @return [String]
|
4879
4946
|
#
|
4880
4947
|
# @!attribute [rw] max_results
|
4881
|
-
# The maximum
|
4948
|
+
# The maximum number of results that are returned for an API request
|
4949
|
+
# call. The service chooses a default number if you don't set one.
|
4950
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4951
|
+
# value has not been met.
|
4882
4952
|
# @return [Integer]
|
4883
4953
|
#
|
4884
4954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsInput AWS API Documentation
|
@@ -4896,8 +4966,7 @@ module Aws::CleanRooms
|
|
4896
4966
|
# @return [Array<Types::ConfiguredTableAssociationSummary>]
|
4897
4967
|
#
|
4898
4968
|
# @!attribute [rw] next_token
|
4899
|
-
# The token
|
4900
|
-
# page of results.
|
4969
|
+
# The pagination token that's used to fetch the next set of results.
|
4901
4970
|
# @return [String]
|
4902
4971
|
#
|
4903
4972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsOutput AWS API Documentation
|
@@ -4910,12 +4979,14 @@ module Aws::CleanRooms
|
|
4910
4979
|
end
|
4911
4980
|
|
4912
4981
|
# @!attribute [rw] next_token
|
4913
|
-
# The token
|
4914
|
-
# page of results.
|
4982
|
+
# The pagination token that's used to fetch the next set of results.
|
4915
4983
|
# @return [String]
|
4916
4984
|
#
|
4917
4985
|
# @!attribute [rw] max_results
|
4918
|
-
# The maximum
|
4986
|
+
# The maximum number of results that are returned for an API request
|
4987
|
+
# call. The service chooses a default number if you don't set one.
|
4988
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4989
|
+
# value has not been met.
|
4919
4990
|
# @return [Integer]
|
4920
4991
|
#
|
4921
4992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesInput AWS API Documentation
|
@@ -4932,8 +5003,7 @@ module Aws::CleanRooms
|
|
4932
5003
|
# @return [Array<Types::ConfiguredTableSummary>]
|
4933
5004
|
#
|
4934
5005
|
# @!attribute [rw] next_token
|
4935
|
-
# The token
|
4936
|
-
# page of results.
|
5006
|
+
# The pagination token that's used to fetch the next set of results.
|
4937
5007
|
# @return [String]
|
4938
5008
|
#
|
4939
5009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesOutput AWS API Documentation
|
@@ -5035,12 +5105,14 @@ module Aws::CleanRooms
|
|
5035
5105
|
# @return [String]
|
5036
5106
|
#
|
5037
5107
|
# @!attribute [rw] next_token
|
5038
|
-
# The token
|
5039
|
-
# page of results.
|
5108
|
+
# The pagination token that's used to fetch the next set of results.
|
5040
5109
|
# @return [String]
|
5041
5110
|
#
|
5042
5111
|
# @!attribute [rw] max_results
|
5043
|
-
# The maximum
|
5112
|
+
# The maximum number of results that are returned for an API request
|
5113
|
+
# call. The service chooses a default number if you don't set one.
|
5114
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5115
|
+
# value has not been met.
|
5044
5116
|
# @return [Integer]
|
5045
5117
|
#
|
5046
5118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembersInput AWS API Documentation
|
@@ -5054,8 +5126,7 @@ module Aws::CleanRooms
|
|
5054
5126
|
end
|
5055
5127
|
|
5056
5128
|
# @!attribute [rw] next_token
|
5057
|
-
# The token
|
5058
|
-
# page of results.
|
5129
|
+
# The pagination token that's used to fetch the next set of results.
|
5059
5130
|
# @return [String]
|
5060
5131
|
#
|
5061
5132
|
# @!attribute [rw] member_summaries
|
@@ -5072,12 +5143,14 @@ module Aws::CleanRooms
|
|
5072
5143
|
end
|
5073
5144
|
|
5074
5145
|
# @!attribute [rw] next_token
|
5075
|
-
# The token
|
5076
|
-
# page of results.
|
5146
|
+
# The pagination token that's used to fetch the next set of results.
|
5077
5147
|
# @return [String]
|
5078
5148
|
#
|
5079
5149
|
# @!attribute [rw] max_results
|
5080
|
-
# The maximum
|
5150
|
+
# The maximum number of results that are returned for an API request
|
5151
|
+
# call. The service chooses a default number if you don't set one.
|
5152
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5153
|
+
# value has not been met.
|
5081
5154
|
# @return [Integer]
|
5082
5155
|
#
|
5083
5156
|
# @!attribute [rw] status
|
@@ -5095,8 +5168,7 @@ module Aws::CleanRooms
|
|
5095
5168
|
end
|
5096
5169
|
|
5097
5170
|
# @!attribute [rw] next_token
|
5098
|
-
# The token
|
5099
|
-
# page of results.
|
5171
|
+
# The pagination token that's used to fetch the next set of results.
|
5100
5172
|
# @return [String]
|
5101
5173
|
#
|
5102
5174
|
# @!attribute [rw] membership_summaries
|
@@ -5119,14 +5191,14 @@ module Aws::CleanRooms
|
|
5119
5191
|
# @return [String]
|
5120
5192
|
#
|
5121
5193
|
# @!attribute [rw] next_token
|
5122
|
-
# The token
|
5123
|
-
# page of results.
|
5194
|
+
# The pagination token that's used to fetch the next set of results.
|
5124
5195
|
# @return [String]
|
5125
5196
|
#
|
5126
5197
|
# @!attribute [rw] max_results
|
5127
|
-
# The maximum
|
5128
|
-
# chooses a default if
|
5129
|
-
#
|
5198
|
+
# The maximum number of results that are returned for an API request
|
5199
|
+
# call. The service chooses a default number if you don't set one.
|
5200
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5201
|
+
# value has not been met.
|
5130
5202
|
# @return [Integer]
|
5131
5203
|
#
|
5132
5204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetTemplatesInput AWS API Documentation
|
@@ -5140,8 +5212,7 @@ module Aws::CleanRooms
|
|
5140
5212
|
end
|
5141
5213
|
|
5142
5214
|
# @!attribute [rw] next_token
|
5143
|
-
# The token
|
5144
|
-
# page of results.
|
5215
|
+
# The pagination token that's used to fetch the next set of results.
|
5145
5216
|
# @return [String]
|
5146
5217
|
#
|
5147
5218
|
# @!attribute [rw] privacy_budget_template_summaries
|
@@ -5170,14 +5241,14 @@ module Aws::CleanRooms
|
|
5170
5241
|
# @return [String]
|
5171
5242
|
#
|
5172
5243
|
# @!attribute [rw] next_token
|
5173
|
-
# The token
|
5174
|
-
# page of results.
|
5244
|
+
# The pagination token that's used to fetch the next set of results.
|
5175
5245
|
# @return [String]
|
5176
5246
|
#
|
5177
5247
|
# @!attribute [rw] max_results
|
5178
|
-
# The maximum
|
5179
|
-
# chooses a default if
|
5180
|
-
#
|
5248
|
+
# The maximum number of results that are returned for an API request
|
5249
|
+
# call. The service chooses a default number if you don't set one.
|
5250
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5251
|
+
# value has not been met.
|
5181
5252
|
# @return [Integer]
|
5182
5253
|
#
|
5183
5254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsInput AWS API Documentation
|
@@ -5198,8 +5269,7 @@ module Aws::CleanRooms
|
|
5198
5269
|
# @return [Array<Types::PrivacyBudgetSummary>]
|
5199
5270
|
#
|
5200
5271
|
# @!attribute [rw] next_token
|
5201
|
-
# The token
|
5202
|
-
# page of results.
|
5272
|
+
# The pagination token that's used to fetch the next set of results.
|
5203
5273
|
# @return [String]
|
5204
5274
|
#
|
5205
5275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsOutput AWS API Documentation
|
@@ -5220,14 +5290,14 @@ module Aws::CleanRooms
|
|
5220
5290
|
# @return [String]
|
5221
5291
|
#
|
5222
5292
|
# @!attribute [rw] next_token
|
5223
|
-
# The token
|
5224
|
-
# page of results.
|
5293
|
+
# The pagination token that's used to fetch the next set of results.
|
5225
5294
|
# @return [String]
|
5226
5295
|
#
|
5227
5296
|
# @!attribute [rw] max_results
|
5228
|
-
# The maximum
|
5229
|
-
# chooses a default if
|
5230
|
-
#
|
5297
|
+
# The maximum number of results that are returned for an API request
|
5298
|
+
# call. The service chooses a default number if you don't set one.
|
5299
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5300
|
+
# value has not been met.
|
5231
5301
|
# @return [Integer]
|
5232
5302
|
#
|
5233
5303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueriesInput AWS API Documentation
|
@@ -5242,8 +5312,7 @@ module Aws::CleanRooms
|
|
5242
5312
|
end
|
5243
5313
|
|
5244
5314
|
# @!attribute [rw] next_token
|
5245
|
-
# The token
|
5246
|
-
# page of results.
|
5315
|
+
# The pagination token that's used to fetch the next set of results.
|
5247
5316
|
# @return [String]
|
5248
5317
|
#
|
5249
5318
|
# @!attribute [rw] protected_queries
|
@@ -5265,17 +5334,18 @@ module Aws::CleanRooms
|
|
5265
5334
|
# @return [String]
|
5266
5335
|
#
|
5267
5336
|
# @!attribute [rw] schema_type
|
5268
|
-
# If present, filter schemas by schema type.
|
5269
|
-
# type is currently `TABLE`.
|
5337
|
+
# If present, filter schemas by schema type.
|
5270
5338
|
# @return [String]
|
5271
5339
|
#
|
5272
5340
|
# @!attribute [rw] next_token
|
5273
|
-
# The token
|
5274
|
-
# page of results.
|
5341
|
+
# The pagination token that's used to fetch the next set of results.
|
5275
5342
|
# @return [String]
|
5276
5343
|
#
|
5277
5344
|
# @!attribute [rw] max_results
|
5278
|
-
# The maximum
|
5345
|
+
# The maximum number of results that are returned for an API request
|
5346
|
+
# call. The service chooses a default number if you don't set one.
|
5347
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5348
|
+
# value has not been met.
|
5279
5349
|
# @return [Integer]
|
5280
5350
|
#
|
5281
5351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasInput AWS API Documentation
|
@@ -5294,8 +5364,7 @@ module Aws::CleanRooms
|
|
5294
5364
|
# @return [Array<Types::SchemaSummary>]
|
5295
5365
|
#
|
5296
5366
|
# @!attribute [rw] next_token
|
5297
|
-
# The token
|
5298
|
-
# page of results.
|
5367
|
+
# The pagination token that's used to fetch the next set of results.
|
5299
5368
|
# @return [String]
|
5300
5369
|
#
|
5301
5370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasOutput AWS API Documentation
|
@@ -5332,6 +5401,59 @@ module Aws::CleanRooms
|
|
5332
5401
|
include Aws::Structure
|
5333
5402
|
end
|
5334
5403
|
|
5404
|
+
# The ML member abilities for a collaboration member.
|
5405
|
+
#
|
5406
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
5407
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon Web
|
5408
|
+
# Services Service Terms][1].
|
5409
|
+
#
|
5410
|
+
#
|
5411
|
+
#
|
5412
|
+
# [1]: https://aws.amazon.com/service-terms/
|
5413
|
+
#
|
5414
|
+
# @!attribute [rw] custom_ml_member_abilities
|
5415
|
+
# The custom ML member abilities for a collaboration member. The
|
5416
|
+
# inference feature is not available in the custom ML modeling beta.
|
5417
|
+
#
|
5418
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
5419
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon
|
5420
|
+
# Web Services Service Terms][1].
|
5421
|
+
#
|
5422
|
+
#
|
5423
|
+
#
|
5424
|
+
# [1]: https://aws.amazon.com/service-terms/
|
5425
|
+
# @return [Array<String>]
|
5426
|
+
#
|
5427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLMemberAbilities AWS API Documentation
|
5428
|
+
#
|
5429
|
+
class MLMemberAbilities < Struct.new(
|
5430
|
+
:custom_ml_member_abilities)
|
5431
|
+
SENSITIVE = []
|
5432
|
+
include Aws::Structure
|
5433
|
+
end
|
5434
|
+
|
5435
|
+
# An object representing the collaboration member's machine learning
|
5436
|
+
# payment responsibilities set by the collaboration creator.
|
5437
|
+
#
|
5438
|
+
# @!attribute [rw] model_training
|
5439
|
+
# The payment responsibilities accepted by the member for model
|
5440
|
+
# training.
|
5441
|
+
# @return [Types::ModelTrainingPaymentConfig]
|
5442
|
+
#
|
5443
|
+
# @!attribute [rw] model_inference
|
5444
|
+
# The payment responsibilities accepted by the member for model
|
5445
|
+
# inference.
|
5446
|
+
# @return [Types::ModelInferencePaymentConfig]
|
5447
|
+
#
|
5448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MLPaymentConfig AWS API Documentation
|
5449
|
+
#
|
5450
|
+
class MLPaymentConfig < Struct.new(
|
5451
|
+
:model_training,
|
5452
|
+
:model_inference)
|
5453
|
+
SENSITIVE = []
|
5454
|
+
include Aws::Structure
|
5455
|
+
end
|
5456
|
+
|
5335
5457
|
# Basic metadata used to construct a new member.
|
5336
5458
|
#
|
5337
5459
|
# @!attribute [rw] account_id
|
@@ -5343,6 +5465,18 @@ module Aws::CleanRooms
|
|
5343
5465
|
# The abilities granted to the collaboration member.
|
5344
5466
|
# @return [Array<String>]
|
5345
5467
|
#
|
5468
|
+
# @!attribute [rw] ml_member_abilities
|
5469
|
+
# The ML abilities granted to the collaboration member.
|
5470
|
+
#
|
5471
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
5472
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon
|
5473
|
+
# Web Services Service Terms][1].
|
5474
|
+
#
|
5475
|
+
#
|
5476
|
+
#
|
5477
|
+
# [1]: https://aws.amazon.com/service-terms/
|
5478
|
+
# @return [Types::MLMemberAbilities]
|
5479
|
+
#
|
5346
5480
|
# @!attribute [rw] display_name
|
5347
5481
|
# The member's display name.
|
5348
5482
|
# @return [String]
|
@@ -5361,6 +5495,7 @@ module Aws::CleanRooms
|
|
5361
5495
|
class MemberSpecification < Struct.new(
|
5362
5496
|
:account_id,
|
5363
5497
|
:member_abilities,
|
5498
|
+
:ml_member_abilities,
|
5364
5499
|
:display_name,
|
5365
5500
|
:payment_configuration)
|
5366
5501
|
SENSITIVE = []
|
@@ -5386,6 +5521,18 @@ module Aws::CleanRooms
|
|
5386
5521
|
# The abilities granted to the collaboration member.
|
5387
5522
|
# @return [Array<String>]
|
5388
5523
|
#
|
5524
|
+
# @!attribute [rw] ml_abilities
|
5525
|
+
# Provides a summary of the ML abilities for the collaboration member.
|
5526
|
+
#
|
5527
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
5528
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon
|
5529
|
+
# Web Services Service Terms][1].
|
5530
|
+
#
|
5531
|
+
#
|
5532
|
+
#
|
5533
|
+
# [1]: https://aws.amazon.com/service-terms/
|
5534
|
+
# @return [Types::MLMemberAbilities]
|
5535
|
+
#
|
5389
5536
|
# @!attribute [rw] create_time
|
5390
5537
|
# The time when the member was created.
|
5391
5538
|
# @return [Time]
|
@@ -5414,6 +5561,7 @@ module Aws::CleanRooms
|
|
5414
5561
|
:status,
|
5415
5562
|
:display_name,
|
5416
5563
|
:abilities,
|
5564
|
+
:ml_abilities,
|
5417
5565
|
:create_time,
|
5418
5566
|
:update_time,
|
5419
5567
|
:membership_id,
|
@@ -5470,6 +5618,19 @@ module Aws::CleanRooms
|
|
5470
5618
|
# The abilities granted to the collaboration member.
|
5471
5619
|
# @return [Array<String>]
|
5472
5620
|
#
|
5621
|
+
# @!attribute [rw] ml_member_abilities
|
5622
|
+
# Specifies the ML member abilities that are granted to a
|
5623
|
+
# collaboration member.
|
5624
|
+
#
|
5625
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
5626
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon
|
5627
|
+
# Web Services Service Terms][1].
|
5628
|
+
#
|
5629
|
+
#
|
5630
|
+
#
|
5631
|
+
# [1]: https://aws.amazon.com/service-terms/
|
5632
|
+
# @return [Types::MLMemberAbilities]
|
5633
|
+
#
|
5473
5634
|
# @!attribute [rw] query_log_status
|
5474
5635
|
# An indicator as to whether query logging has been enabled or
|
5475
5636
|
# disabled for the membership.
|
@@ -5498,6 +5659,7 @@ module Aws::CleanRooms
|
|
5498
5659
|
:update_time,
|
5499
5660
|
:status,
|
5500
5661
|
:member_abilities,
|
5662
|
+
:ml_member_abilities,
|
5501
5663
|
:query_log_status,
|
5502
5664
|
:default_result_configuration,
|
5503
5665
|
:payment_configuration)
|
@@ -5505,6 +5667,86 @@ module Aws::CleanRooms
|
|
5505
5667
|
include Aws::Structure
|
5506
5668
|
end
|
5507
5669
|
|
5670
|
+
# An object representing the collaboration member's machine learning
|
5671
|
+
# payment responsibilities set by the collaboration creator.
|
5672
|
+
#
|
5673
|
+
# @!attribute [rw] model_training
|
5674
|
+
# The payment responsibilities accepted by the member for model
|
5675
|
+
# training.
|
5676
|
+
# @return [Types::MembershipModelTrainingPaymentConfig]
|
5677
|
+
#
|
5678
|
+
# @!attribute [rw] model_inference
|
5679
|
+
# The payment responsibilities accepted by the member for model
|
5680
|
+
# inference.
|
5681
|
+
# @return [Types::MembershipModelInferencePaymentConfig]
|
5682
|
+
#
|
5683
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipMLPaymentConfig AWS API Documentation
|
5684
|
+
#
|
5685
|
+
class MembershipMLPaymentConfig < Struct.new(
|
5686
|
+
:model_training,
|
5687
|
+
:model_inference)
|
5688
|
+
SENSITIVE = []
|
5689
|
+
include Aws::Structure
|
5690
|
+
end
|
5691
|
+
|
5692
|
+
# An object representing the collaboration member's model inference
|
5693
|
+
# payment responsibilities set by the collaboration creator.
|
5694
|
+
#
|
5695
|
+
# @!attribute [rw] is_responsible
|
5696
|
+
# Indicates whether the collaboration member has accepted to pay for
|
5697
|
+
# model inference costs (`TRUE`) or has not accepted to pay for model
|
5698
|
+
# inference costs (`FALSE`).
|
5699
|
+
#
|
5700
|
+
# If the collaboration creator has not specified anyone to pay for
|
5701
|
+
# model inference costs, then the member who can query is the default
|
5702
|
+
# payer.
|
5703
|
+
#
|
5704
|
+
# An error message is returned for the following reasons:
|
5705
|
+
#
|
5706
|
+
# * If you set the value to `FALSE` but you are responsible to pay for
|
5707
|
+
# model inference costs.
|
5708
|
+
#
|
5709
|
+
# * If you set the value to `TRUE` but you are not responsible to pay
|
5710
|
+
# for model inference costs.
|
5711
|
+
# @return [Boolean]
|
5712
|
+
#
|
5713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipModelInferencePaymentConfig AWS API Documentation
|
5714
|
+
#
|
5715
|
+
class MembershipModelInferencePaymentConfig < Struct.new(
|
5716
|
+
:is_responsible)
|
5717
|
+
SENSITIVE = []
|
5718
|
+
include Aws::Structure
|
5719
|
+
end
|
5720
|
+
|
5721
|
+
# An object representing the collaboration member's model training
|
5722
|
+
# payment responsibilities set by the collaboration creator.
|
5723
|
+
#
|
5724
|
+
# @!attribute [rw] is_responsible
|
5725
|
+
# Indicates whether the collaboration member has accepted to pay for
|
5726
|
+
# model training costs (`TRUE`) or has not accepted to pay for model
|
5727
|
+
# training costs (`FALSE`).
|
5728
|
+
#
|
5729
|
+
# If the collaboration creator has not specified anyone to pay for
|
5730
|
+
# model training costs, then the member who can query is the default
|
5731
|
+
# payer.
|
5732
|
+
#
|
5733
|
+
# An error message is returned for the following reasons:
|
5734
|
+
#
|
5735
|
+
# * If you set the value to `FALSE` but you are responsible to pay for
|
5736
|
+
# model training costs.
|
5737
|
+
#
|
5738
|
+
# * If you set the value to `TRUE` but you are not responsible to pay
|
5739
|
+
# for model training costs.
|
5740
|
+
# @return [Boolean]
|
5741
|
+
#
|
5742
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipModelTrainingPaymentConfig AWS API Documentation
|
5743
|
+
#
|
5744
|
+
class MembershipModelTrainingPaymentConfig < Struct.new(
|
5745
|
+
:is_responsible)
|
5746
|
+
SENSITIVE = []
|
5747
|
+
include Aws::Structure
|
5748
|
+
end
|
5749
|
+
|
5508
5750
|
# An object representing the payment responsibilities accepted by the
|
5509
5751
|
# collaboration member.
|
5510
5752
|
#
|
@@ -5513,10 +5755,16 @@ module Aws::CleanRooms
|
|
5513
5755
|
# for query compute costs.
|
5514
5756
|
# @return [Types::MembershipQueryComputePaymentConfig]
|
5515
5757
|
#
|
5758
|
+
# @!attribute [rw] machine_learning
|
5759
|
+
# The payment responsibilities accepted by the collaboration member
|
5760
|
+
# for machine learning costs.
|
5761
|
+
# @return [Types::MembershipMLPaymentConfig]
|
5762
|
+
#
|
5516
5763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipPaymentConfiguration AWS API Documentation
|
5517
5764
|
#
|
5518
5765
|
class MembershipPaymentConfiguration < Struct.new(
|
5519
|
-
:query_compute
|
5766
|
+
:query_compute,
|
5767
|
+
:machine_learning)
|
5520
5768
|
SENSITIVE = []
|
5521
5769
|
include Aws::Structure
|
5522
5770
|
end
|
@@ -5642,6 +5890,18 @@ module Aws::CleanRooms
|
|
5642
5890
|
# The abilities granted to the collaboration member.
|
5643
5891
|
# @return [Array<String>]
|
5644
5892
|
#
|
5893
|
+
# @!attribute [rw] ml_member_abilities
|
5894
|
+
# Provides a summary of the ML abilities for the collaboration member.
|
5895
|
+
#
|
5896
|
+
# Custom ML modeling is in beta release and is subject to change. For
|
5897
|
+
# beta terms and conditions, see *Betas and Previews* in the [Amazon
|
5898
|
+
# Web Services Service Terms][1].
|
5899
|
+
#
|
5900
|
+
#
|
5901
|
+
#
|
5902
|
+
# [1]: https://aws.amazon.com/service-terms/
|
5903
|
+
# @return [Types::MLMemberAbilities]
|
5904
|
+
#
|
5645
5905
|
# @!attribute [rw] payment_configuration
|
5646
5906
|
# The payment responsibilities accepted by the collaboration member.
|
5647
5907
|
# @return [Types::MembershipPaymentConfiguration]
|
@@ -5660,11 +5920,66 @@ module Aws::CleanRooms
|
|
5660
5920
|
:update_time,
|
5661
5921
|
:status,
|
5662
5922
|
:member_abilities,
|
5923
|
+
:ml_member_abilities,
|
5663
5924
|
:payment_configuration)
|
5664
5925
|
SENSITIVE = []
|
5665
5926
|
include Aws::Structure
|
5666
5927
|
end
|
5667
5928
|
|
5929
|
+
# An object representing the collaboration member's model inference
|
5930
|
+
# payment responsibilities set by the collaboration creator.
|
5931
|
+
#
|
5932
|
+
# @!attribute [rw] is_responsible
|
5933
|
+
# Indicates whether the collaboration creator has configured the
|
5934
|
+
# collaboration member to pay for model inference costs (`TRUE`) or
|
5935
|
+
# has not configured the collaboration member to pay for model
|
5936
|
+
# inference costs (`FALSE`).
|
5937
|
+
#
|
5938
|
+
# Exactly one member can be configured to pay for model inference
|
5939
|
+
# costs. An error is returned if the collaboration creator sets a
|
5940
|
+
# `TRUE` value for more than one member in the collaboration.
|
5941
|
+
#
|
5942
|
+
# If the collaboration creator hasn't specified anyone as the member
|
5943
|
+
# paying for model inference costs, then the member who can query is
|
5944
|
+
# the default payer. An error is returned if the collaboration creator
|
5945
|
+
# sets a `FALSE` value for the member who can query.
|
5946
|
+
# @return [Boolean]
|
5947
|
+
#
|
5948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ModelInferencePaymentConfig AWS API Documentation
|
5949
|
+
#
|
5950
|
+
class ModelInferencePaymentConfig < Struct.new(
|
5951
|
+
:is_responsible)
|
5952
|
+
SENSITIVE = []
|
5953
|
+
include Aws::Structure
|
5954
|
+
end
|
5955
|
+
|
5956
|
+
# An object representing the collaboration member's model training
|
5957
|
+
# payment responsibilities set by the collaboration creator.
|
5958
|
+
#
|
5959
|
+
# @!attribute [rw] is_responsible
|
5960
|
+
# Indicates whether the collaboration creator has configured the
|
5961
|
+
# collaboration member to pay for model training costs (`TRUE`) or has
|
5962
|
+
# not configured the collaboration member to pay for model training
|
5963
|
+
# costs (`FALSE`).
|
5964
|
+
#
|
5965
|
+
# Exactly one member can be configured to pay for model training
|
5966
|
+
# costs. An error is returned if the collaboration creator sets a
|
5967
|
+
# `TRUE` value for more than one member in the collaboration.
|
5968
|
+
#
|
5969
|
+
# If the collaboration creator hasn't specified anyone as the member
|
5970
|
+
# paying for model training costs, then the member who can query is
|
5971
|
+
# the default payer. An error is returned if the collaboration creator
|
5972
|
+
# sets a `FALSE` value for the member who can query.
|
5973
|
+
# @return [Boolean]
|
5974
|
+
#
|
5975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ModelTrainingPaymentConfig AWS API Documentation
|
5976
|
+
#
|
5977
|
+
class ModelTrainingPaymentConfig < Struct.new(
|
5978
|
+
:is_responsible)
|
5979
|
+
SENSITIVE = []
|
5980
|
+
include Aws::Structure
|
5981
|
+
end
|
5982
|
+
|
5668
5983
|
# An object representing the collaboration member's payment
|
5669
5984
|
# responsibilities set by the collaboration creator.
|
5670
5985
|
#
|
@@ -5673,10 +5988,16 @@ module Aws::CleanRooms
|
|
5673
5988
|
# collaboration creator for query compute costs.
|
5674
5989
|
# @return [Types::QueryComputePaymentConfig]
|
5675
5990
|
#
|
5991
|
+
# @!attribute [rw] machine_learning
|
5992
|
+
# An object representing the collaboration member's machine learning
|
5993
|
+
# payment responsibilities set by the collaboration creator.
|
5994
|
+
# @return [Types::MLPaymentConfig]
|
5995
|
+
#
|
5676
5996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PaymentConfiguration AWS API Documentation
|
5677
5997
|
#
|
5678
5998
|
class PaymentConfiguration < Struct.new(
|
5679
|
-
:query_compute
|
5999
|
+
:query_compute,
|
6000
|
+
:machine_learning)
|
5680
6001
|
SENSITIVE = []
|
5681
6002
|
include Aws::Structure
|
5682
6003
|
end
|
@@ -6134,6 +6455,10 @@ module Aws::CleanRooms
|
|
6134
6455
|
# the protected query.
|
6135
6456
|
# @return [Types::DifferentialPrivacyParameters]
|
6136
6457
|
#
|
6458
|
+
# @!attribute [rw] compute_configuration
|
6459
|
+
# The compute configuration for the protected query.
|
6460
|
+
# @return [Types::ComputeConfiguration]
|
6461
|
+
#
|
6137
6462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuery AWS API Documentation
|
6138
6463
|
#
|
6139
6464
|
class ProtectedQuery < Struct.new(
|
@@ -6147,7 +6472,8 @@ module Aws::CleanRooms
|
|
6147
6472
|
:statistics,
|
6148
6473
|
:result,
|
6149
6474
|
:error,
|
6150
|
-
:differential_privacy
|
6475
|
+
:differential_privacy,
|
6476
|
+
:compute_configuration)
|
6151
6477
|
SENSITIVE = [:sql_parameters]
|
6152
6478
|
include Aws::Structure
|
6153
6479
|
end
|
@@ -6302,12 +6628,19 @@ module Aws::CleanRooms
|
|
6302
6628
|
# The S3 prefix to unload the protected query results.
|
6303
6629
|
# @return [String]
|
6304
6630
|
#
|
6631
|
+
# @!attribute [rw] single_file_output
|
6632
|
+
# Indicates whether files should be output as a single file (`TRUE`)
|
6633
|
+
# or output as multiple files (`FALSE`). This parameter is only
|
6634
|
+
# supported for analyses with the Spark analytics engine.
|
6635
|
+
# @return [Boolean]
|
6636
|
+
#
|
6305
6637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryS3OutputConfiguration AWS API Documentation
|
6306
6638
|
#
|
6307
6639
|
class ProtectedQueryS3OutputConfiguration < Struct.new(
|
6308
6640
|
:result_format,
|
6309
6641
|
:bucket,
|
6310
|
-
:key_prefix
|
6642
|
+
:key_prefix,
|
6643
|
+
:single_file_output)
|
6311
6644
|
SENSITIVE = []
|
6312
6645
|
include Aws::Structure
|
6313
6646
|
end
|
@@ -6359,10 +6692,15 @@ module Aws::CleanRooms
|
|
6359
6692
|
# completion.
|
6360
6693
|
# @return [Integer]
|
6361
6694
|
#
|
6695
|
+
# @!attribute [rw] billed_resource_utilization
|
6696
|
+
# The billed resource utilization.
|
6697
|
+
# @return [Types::BilledResourceUtilization]
|
6698
|
+
#
|
6362
6699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryStatistics AWS API Documentation
|
6363
6700
|
#
|
6364
6701
|
class ProtectedQueryStatistics < Struct.new(
|
6365
|
-
:total_duration_in_millis
|
6702
|
+
:total_duration_in_millis,
|
6703
|
+
:billed_resource_utilization)
|
6366
6704
|
SENSITIVE = []
|
6367
6705
|
include Aws::Structure
|
6368
6706
|
end
|
@@ -6387,9 +6725,7 @@ module Aws::CleanRooms
|
|
6387
6725
|
# @return [Time]
|
6388
6726
|
#
|
6389
6727
|
# @!attribute [rw] status
|
6390
|
-
# The status of the protected query.
|
6391
|
-
# `STARTED`, `CANCELLED`, `CANCELLING`, `FAILED`, `SUCCESS`,
|
6392
|
-
# `TIMED\_OUT`.
|
6728
|
+
# The status of the protected query.
|
6393
6729
|
# @return [String]
|
6394
6730
|
#
|
6395
6731
|
# @!attribute [rw] receiver_configurations
|
@@ -6521,7 +6857,7 @@ module Aws::CleanRooms
|
|
6521
6857
|
# A schema is a relation within a collaboration.
|
6522
6858
|
#
|
6523
6859
|
# @!attribute [rw] columns
|
6524
|
-
# The columns for the relation this schema represents.
|
6860
|
+
# The columns for the relation that this schema represents.
|
6525
6861
|
# @return [Array<Types::Column>]
|
6526
6862
|
#
|
6527
6863
|
# @!attribute [rw] partition_keys
|
@@ -6529,13 +6865,13 @@ module Aws::CleanRooms
|
|
6529
6865
|
# @return [Array<Types::Column>]
|
6530
6866
|
#
|
6531
6867
|
# @!attribute [rw] analysis_rule_types
|
6532
|
-
# The analysis rule types associated with the schema.
|
6533
|
-
# one entry is present.
|
6868
|
+
# The analysis rule types that are associated with the schema.
|
6869
|
+
# Currently, only one entry is present.
|
6534
6870
|
# @return [Array<String>]
|
6535
6871
|
#
|
6536
6872
|
# @!attribute [rw] analysis_method
|
6537
6873
|
# The analysis method for the schema. The only valid value is
|
6538
|
-
# currently
|
6874
|
+
# currently `DIRECT_QUERY`.
|
6539
6875
|
# @return [String]
|
6540
6876
|
#
|
6541
6877
|
# @!attribute [rw] creator_account_id
|
@@ -6553,7 +6889,8 @@ module Aws::CleanRooms
|
|
6553
6889
|
# @return [String]
|
6554
6890
|
#
|
6555
6891
|
# @!attribute [rw] collaboration_arn
|
6556
|
-
# The unique ARN for the collaboration that the
|
6892
|
+
# The unique Amazon Resource Name (ARN) for the collaboration that the
|
6893
|
+
# schema belongs to.
|
6557
6894
|
# @return [String]
|
6558
6895
|
#
|
6559
6896
|
# @!attribute [rw] description
|
@@ -6561,15 +6898,15 @@ module Aws::CleanRooms
|
|
6561
6898
|
# @return [String]
|
6562
6899
|
#
|
6563
6900
|
# @!attribute [rw] create_time
|
6564
|
-
# The time the schema was created.
|
6901
|
+
# The time at which the schema was created.
|
6565
6902
|
# @return [Time]
|
6566
6903
|
#
|
6567
6904
|
# @!attribute [rw] update_time
|
6568
|
-
# The time the schema was
|
6905
|
+
# The most recent time at which the schema was updated.
|
6569
6906
|
# @return [Time]
|
6570
6907
|
#
|
6571
6908
|
# @!attribute [rw] type
|
6572
|
-
# The type of schema.
|
6909
|
+
# The type of schema.
|
6573
6910
|
# @return [String]
|
6574
6911
|
#
|
6575
6912
|
# @!attribute [rw] schema_status_details
|
@@ -6693,8 +7030,7 @@ module Aws::CleanRooms
|
|
6693
7030
|
# @return [String]
|
6694
7031
|
#
|
6695
7032
|
# @!attribute [rw] type
|
6696
|
-
# The type of schema object.
|
6697
|
-
# `TABLE`.
|
7033
|
+
# The type of schema object.
|
6698
7034
|
# @return [String]
|
6699
7035
|
#
|
6700
7036
|
# @!attribute [rw] creator_account_id
|
@@ -6805,13 +7141,18 @@ module Aws::CleanRooms
|
|
6805
7141
|
# The details needed to write the query results.
|
6806
7142
|
# @return [Types::ProtectedQueryResultConfiguration]
|
6807
7143
|
#
|
7144
|
+
# @!attribute [rw] compute_configuration
|
7145
|
+
# The compute configuration for the protected query.
|
7146
|
+
# @return [Types::ComputeConfiguration]
|
7147
|
+
#
|
6808
7148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQueryInput AWS API Documentation
|
6809
7149
|
#
|
6810
7150
|
class StartProtectedQueryInput < Struct.new(
|
6811
7151
|
:type,
|
6812
7152
|
:membership_identifier,
|
6813
7153
|
:sql_parameters,
|
6814
|
-
:result_configuration
|
7154
|
+
:result_configuration,
|
7155
|
+
:compute_configuration)
|
6815
7156
|
SENSITIVE = [:sql_parameters]
|
6816
7157
|
include Aws::Structure
|
6817
7158
|
end
|
@@ -7421,6 +7762,26 @@ module Aws::CleanRooms
|
|
7421
7762
|
include Aws::Structure
|
7422
7763
|
end
|
7423
7764
|
|
7765
|
+
# The configuration of the compute resources for workers running an
|
7766
|
+
# analysis with the Clean Rooms SQL analytics engine.
|
7767
|
+
#
|
7768
|
+
# @!attribute [rw] type
|
7769
|
+
# The worker compute configuration type.
|
7770
|
+
# @return [String]
|
7771
|
+
#
|
7772
|
+
# @!attribute [rw] number
|
7773
|
+
# The number of workers.
|
7774
|
+
# @return [Integer]
|
7775
|
+
#
|
7776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/WorkerComputeConfiguration AWS API Documentation
|
7777
|
+
#
|
7778
|
+
class WorkerComputeConfiguration < Struct.new(
|
7779
|
+
:type,
|
7780
|
+
:number)
|
7781
|
+
SENSITIVE = []
|
7782
|
+
include Aws::Structure
|
7783
|
+
end
|
7784
|
+
|
7424
7785
|
end
|
7425
7786
|
end
|
7426
7787
|
|