aws-sdk-cleanrooms 1.34.0 → 1.35.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +118 -68
- data/lib/aws-sdk-cleanrooms/client_api.rb +27 -0
- data/lib/aws-sdk-cleanrooms/types.rb +207 -111
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +15 -5
- data/sig/types.rbs +30 -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.
|
@@ -2411,6 +2461,10 @@ module Aws::CleanRooms
|
|
2411
2461
|
# default payer.
|
2412
2462
|
# @return [Types::PaymentConfiguration]
|
2413
2463
|
#
|
2464
|
+
# @!attribute [rw] analytics_engine
|
2465
|
+
# The analytics engine.
|
2466
|
+
# @return [String]
|
2467
|
+
#
|
2414
2468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
|
2415
2469
|
#
|
2416
2470
|
class CreateCollaborationInput < Struct.new(
|
@@ -2422,7 +2476,8 @@ module Aws::CleanRooms
|
|
2422
2476
|
:data_encryption_metadata,
|
2423
2477
|
:query_log_status,
|
2424
2478
|
:tags,
|
2425
|
-
:creator_payment_configuration
|
2479
|
+
:creator_payment_configuration,
|
2480
|
+
:analytics_engine)
|
2426
2481
|
SENSITIVE = []
|
2427
2482
|
include Aws::Structure
|
2428
2483
|
end
|
@@ -4523,12 +4578,14 @@ module Aws::CleanRooms
|
|
4523
4578
|
# @return [String]
|
4524
4579
|
#
|
4525
4580
|
# @!attribute [rw] next_token
|
4526
|
-
# The token
|
4527
|
-
# page of results.
|
4581
|
+
# The pagination token that's used to fetch the next set of results.
|
4528
4582
|
# @return [String]
|
4529
4583
|
#
|
4530
4584
|
# @!attribute [rw] max_results
|
4531
|
-
# The maximum
|
4585
|
+
# The maximum number of results that are returned for an API request
|
4586
|
+
# call. The service chooses a default number if you don't set one.
|
4587
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4588
|
+
# value has not been met.
|
4532
4589
|
# @return [Integer]
|
4533
4590
|
#
|
4534
4591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListAnalysisTemplatesInput AWS API Documentation
|
@@ -4542,8 +4599,7 @@ module Aws::CleanRooms
|
|
4542
4599
|
end
|
4543
4600
|
|
4544
4601
|
# @!attribute [rw] next_token
|
4545
|
-
# The token
|
4546
|
-
# page of results.
|
4602
|
+
# The pagination token that's used to fetch the next set of results.
|
4547
4603
|
# @return [String]
|
4548
4604
|
#
|
4549
4605
|
# @!attribute [rw] analysis_template_summaries
|
@@ -4565,12 +4621,14 @@ module Aws::CleanRooms
|
|
4565
4621
|
# @return [String]
|
4566
4622
|
#
|
4567
4623
|
# @!attribute [rw] next_token
|
4568
|
-
# The token
|
4569
|
-
# page of results.
|
4624
|
+
# The pagination token that's used to fetch the next set of results.
|
4570
4625
|
# @return [String]
|
4571
4626
|
#
|
4572
4627
|
# @!attribute [rw] max_results
|
4573
|
-
# The maximum
|
4628
|
+
# The maximum number of results that are returned for an API request
|
4629
|
+
# call. The service chooses a default number if you don't set one.
|
4630
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4631
|
+
# value has not been met.
|
4574
4632
|
# @return [Integer]
|
4575
4633
|
#
|
4576
4634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationAnalysisTemplatesInput AWS API Documentation
|
@@ -4584,8 +4642,7 @@ module Aws::CleanRooms
|
|
4584
4642
|
end
|
4585
4643
|
|
4586
4644
|
# @!attribute [rw] next_token
|
4587
|
-
# The token
|
4588
|
-
# page of results.
|
4645
|
+
# The pagination token that's used to fetch the next set of results.
|
4589
4646
|
# @return [String]
|
4590
4647
|
#
|
4591
4648
|
# @!attribute [rw] collaboration_analysis_template_summaries
|
@@ -4607,12 +4664,14 @@ module Aws::CleanRooms
|
|
4607
4664
|
# @return [String]
|
4608
4665
|
#
|
4609
4666
|
# @!attribute [rw] next_token
|
4610
|
-
# The token
|
4611
|
-
# page of results.
|
4667
|
+
# The pagination token that's used to fetch the next set of results.
|
4612
4668
|
# @return [String]
|
4613
4669
|
#
|
4614
4670
|
# @!attribute [rw] max_results
|
4615
|
-
# The maximum
|
4671
|
+
# The maximum number of results that are returned for an API request
|
4672
|
+
# call. The service chooses a default number if you don't set one.
|
4673
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4674
|
+
# value has not been met.
|
4616
4675
|
# @return [Integer]
|
4617
4676
|
#
|
4618
4677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsInput AWS API Documentation
|
@@ -4631,8 +4690,7 @@ module Aws::CleanRooms
|
|
4631
4690
|
# @return [Array<Types::CollaborationConfiguredAudienceModelAssociationSummary>]
|
4632
4691
|
#
|
4633
4692
|
# @!attribute [rw] next_token
|
4634
|
-
# The token
|
4635
|
-
# page of results.
|
4693
|
+
# The pagination token that's used to fetch the next set of results.
|
4636
4694
|
# @return [String]
|
4637
4695
|
#
|
4638
4696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsOutput AWS API Documentation
|
@@ -4692,14 +4750,14 @@ module Aws::CleanRooms
|
|
4692
4750
|
# @return [String]
|
4693
4751
|
#
|
4694
4752
|
# @!attribute [rw] next_token
|
4695
|
-
# The token
|
4696
|
-
# page of results.
|
4753
|
+
# The pagination token that's used to fetch the next set of results.
|
4697
4754
|
# @return [String]
|
4698
4755
|
#
|
4699
4756
|
# @!attribute [rw] max_results
|
4700
|
-
# The maximum
|
4701
|
-
# chooses a default if
|
4702
|
-
#
|
4757
|
+
# The maximum number of results that are returned for an API request
|
4758
|
+
# call. The service chooses a default number if you don't set one.
|
4759
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4760
|
+
# value has not been met.
|
4703
4761
|
# @return [Integer]
|
4704
4762
|
#
|
4705
4763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetTemplatesInput AWS API Documentation
|
@@ -4713,8 +4771,7 @@ module Aws::CleanRooms
|
|
4713
4771
|
end
|
4714
4772
|
|
4715
4773
|
# @!attribute [rw] next_token
|
4716
|
-
# The token
|
4717
|
-
# page of results.
|
4774
|
+
# The pagination token that's used to fetch the next set of results.
|
4718
4775
|
# @return [String]
|
4719
4776
|
#
|
4720
4777
|
# @!attribute [rw] collaboration_privacy_budget_template_summaries
|
@@ -4741,14 +4798,14 @@ module Aws::CleanRooms
|
|
4741
4798
|
# @return [String]
|
4742
4799
|
#
|
4743
4800
|
# @!attribute [rw] max_results
|
4744
|
-
# The maximum
|
4745
|
-
# chooses a default if
|
4746
|
-
#
|
4801
|
+
# The maximum number of results that are returned for an API request
|
4802
|
+
# call. The service chooses a default number if you don't set one.
|
4803
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4804
|
+
# value has not been met.
|
4747
4805
|
# @return [Integer]
|
4748
4806
|
#
|
4749
4807
|
# @!attribute [rw] next_token
|
4750
|
-
# The token
|
4751
|
-
# page of results.
|
4808
|
+
# The pagination token that's used to fetch the next set of results.
|
4752
4809
|
# @return [String]
|
4753
4810
|
#
|
4754
4811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsInput AWS API Documentation
|
@@ -4767,8 +4824,7 @@ module Aws::CleanRooms
|
|
4767
4824
|
# @return [Array<Types::CollaborationPrivacyBudgetSummary>]
|
4768
4825
|
#
|
4769
4826
|
# @!attribute [rw] next_token
|
4770
|
-
# The token
|
4771
|
-
# page of results.
|
4827
|
+
# The pagination token that's used to fetch the next set of results.
|
4772
4828
|
# @return [String]
|
4773
4829
|
#
|
4774
4830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsOutput AWS API Documentation
|
@@ -4781,14 +4837,14 @@ module Aws::CleanRooms
|
|
4781
4837
|
end
|
4782
4838
|
|
4783
4839
|
# @!attribute [rw] next_token
|
4784
|
-
# The token
|
4785
|
-
# page of results.
|
4840
|
+
# The pagination token that's used to fetch the next set of results.
|
4786
4841
|
# @return [String]
|
4787
4842
|
#
|
4788
4843
|
# @!attribute [rw] max_results
|
4789
|
-
# The maximum
|
4790
|
-
# chooses a default if
|
4791
|
-
#
|
4844
|
+
# The maximum number of results that are returned for an API request
|
4845
|
+
# call. The service chooses a default number if you don't set one.
|
4846
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4847
|
+
# value has not been met.
|
4792
4848
|
# @return [Integer]
|
4793
4849
|
#
|
4794
4850
|
# @!attribute [rw] member_status
|
@@ -4806,8 +4862,7 @@ module Aws::CleanRooms
|
|
4806
4862
|
end
|
4807
4863
|
|
4808
4864
|
# @!attribute [rw] next_token
|
4809
|
-
# The token
|
4810
|
-
# page of results.
|
4865
|
+
# The pagination token that's used to fetch the next set of results.
|
4811
4866
|
# @return [String]
|
4812
4867
|
#
|
4813
4868
|
# @!attribute [rw] collaboration_list
|
@@ -4829,14 +4884,14 @@ module Aws::CleanRooms
|
|
4829
4884
|
# @return [String]
|
4830
4885
|
#
|
4831
4886
|
# @!attribute [rw] next_token
|
4832
|
-
# The token
|
4833
|
-
# page of results.
|
4887
|
+
# The pagination token that's used to fetch the next set of results.
|
4834
4888
|
# @return [String]
|
4835
4889
|
#
|
4836
4890
|
# @!attribute [rw] max_results
|
4837
|
-
# The maximum
|
4838
|
-
# chooses a default if
|
4839
|
-
#
|
4891
|
+
# The maximum number of results that are returned for an API request
|
4892
|
+
# call. The service chooses a default number if you don't set one.
|
4893
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4894
|
+
# value has not been met.
|
4840
4895
|
# @return [Integer]
|
4841
4896
|
#
|
4842
4897
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredAudienceModelAssociationsInput AWS API Documentation
|
@@ -4873,12 +4928,14 @@ module Aws::CleanRooms
|
|
4873
4928
|
# @return [String]
|
4874
4929
|
#
|
4875
4930
|
# @!attribute [rw] next_token
|
4876
|
-
# The token
|
4877
|
-
# page of results.
|
4931
|
+
# The pagination token that's used to fetch the next set of results.
|
4878
4932
|
# @return [String]
|
4879
4933
|
#
|
4880
4934
|
# @!attribute [rw] max_results
|
4881
|
-
# The maximum
|
4935
|
+
# The maximum number of results that are returned for an API request
|
4936
|
+
# call. The service chooses a default number if you don't set one.
|
4937
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4938
|
+
# value has not been met.
|
4882
4939
|
# @return [Integer]
|
4883
4940
|
#
|
4884
4941
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsInput AWS API Documentation
|
@@ -4896,8 +4953,7 @@ module Aws::CleanRooms
|
|
4896
4953
|
# @return [Array<Types::ConfiguredTableAssociationSummary>]
|
4897
4954
|
#
|
4898
4955
|
# @!attribute [rw] next_token
|
4899
|
-
# The token
|
4900
|
-
# page of results.
|
4956
|
+
# The pagination token that's used to fetch the next set of results.
|
4901
4957
|
# @return [String]
|
4902
4958
|
#
|
4903
4959
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsOutput AWS API Documentation
|
@@ -4910,12 +4966,14 @@ module Aws::CleanRooms
|
|
4910
4966
|
end
|
4911
4967
|
|
4912
4968
|
# @!attribute [rw] next_token
|
4913
|
-
# The token
|
4914
|
-
# page of results.
|
4969
|
+
# The pagination token that's used to fetch the next set of results.
|
4915
4970
|
# @return [String]
|
4916
4971
|
#
|
4917
4972
|
# @!attribute [rw] max_results
|
4918
|
-
# The maximum
|
4973
|
+
# The maximum number of results that are returned for an API request
|
4974
|
+
# call. The service chooses a default number if you don't set one.
|
4975
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4976
|
+
# value has not been met.
|
4919
4977
|
# @return [Integer]
|
4920
4978
|
#
|
4921
4979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesInput AWS API Documentation
|
@@ -4932,8 +4990,7 @@ module Aws::CleanRooms
|
|
4932
4990
|
# @return [Array<Types::ConfiguredTableSummary>]
|
4933
4991
|
#
|
4934
4992
|
# @!attribute [rw] next_token
|
4935
|
-
# The token
|
4936
|
-
# page of results.
|
4993
|
+
# The pagination token that's used to fetch the next set of results.
|
4937
4994
|
# @return [String]
|
4938
4995
|
#
|
4939
4996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesOutput AWS API Documentation
|
@@ -5035,12 +5092,14 @@ module Aws::CleanRooms
|
|
5035
5092
|
# @return [String]
|
5036
5093
|
#
|
5037
5094
|
# @!attribute [rw] next_token
|
5038
|
-
# The token
|
5039
|
-
# page of results.
|
5095
|
+
# The pagination token that's used to fetch the next set of results.
|
5040
5096
|
# @return [String]
|
5041
5097
|
#
|
5042
5098
|
# @!attribute [rw] max_results
|
5043
|
-
# The maximum
|
5099
|
+
# The maximum number of results that are returned for an API request
|
5100
|
+
# call. The service chooses a default number if you don't set one.
|
5101
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5102
|
+
# value has not been met.
|
5044
5103
|
# @return [Integer]
|
5045
5104
|
#
|
5046
5105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembersInput AWS API Documentation
|
@@ -5054,8 +5113,7 @@ module Aws::CleanRooms
|
|
5054
5113
|
end
|
5055
5114
|
|
5056
5115
|
# @!attribute [rw] next_token
|
5057
|
-
# The token
|
5058
|
-
# page of results.
|
5116
|
+
# The pagination token that's used to fetch the next set of results.
|
5059
5117
|
# @return [String]
|
5060
5118
|
#
|
5061
5119
|
# @!attribute [rw] member_summaries
|
@@ -5072,12 +5130,14 @@ module Aws::CleanRooms
|
|
5072
5130
|
end
|
5073
5131
|
|
5074
5132
|
# @!attribute [rw] next_token
|
5075
|
-
# The token
|
5076
|
-
# page of results.
|
5133
|
+
# The pagination token that's used to fetch the next set of results.
|
5077
5134
|
# @return [String]
|
5078
5135
|
#
|
5079
5136
|
# @!attribute [rw] max_results
|
5080
|
-
# The maximum
|
5137
|
+
# The maximum number of results that are returned for an API request
|
5138
|
+
# call. The service chooses a default number if you don't set one.
|
5139
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5140
|
+
# value has not been met.
|
5081
5141
|
# @return [Integer]
|
5082
5142
|
#
|
5083
5143
|
# @!attribute [rw] status
|
@@ -5095,8 +5155,7 @@ module Aws::CleanRooms
|
|
5095
5155
|
end
|
5096
5156
|
|
5097
5157
|
# @!attribute [rw] next_token
|
5098
|
-
# The token
|
5099
|
-
# page of results.
|
5158
|
+
# The pagination token that's used to fetch the next set of results.
|
5100
5159
|
# @return [String]
|
5101
5160
|
#
|
5102
5161
|
# @!attribute [rw] membership_summaries
|
@@ -5119,14 +5178,14 @@ module Aws::CleanRooms
|
|
5119
5178
|
# @return [String]
|
5120
5179
|
#
|
5121
5180
|
# @!attribute [rw] next_token
|
5122
|
-
# The token
|
5123
|
-
# page of results.
|
5181
|
+
# The pagination token that's used to fetch the next set of results.
|
5124
5182
|
# @return [String]
|
5125
5183
|
#
|
5126
5184
|
# @!attribute [rw] max_results
|
5127
|
-
# The maximum
|
5128
|
-
# chooses a default if
|
5129
|
-
#
|
5185
|
+
# The maximum number of results that are returned for an API request
|
5186
|
+
# call. The service chooses a default number if you don't set one.
|
5187
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5188
|
+
# value has not been met.
|
5130
5189
|
# @return [Integer]
|
5131
5190
|
#
|
5132
5191
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetTemplatesInput AWS API Documentation
|
@@ -5140,8 +5199,7 @@ module Aws::CleanRooms
|
|
5140
5199
|
end
|
5141
5200
|
|
5142
5201
|
# @!attribute [rw] next_token
|
5143
|
-
# The token
|
5144
|
-
# page of results.
|
5202
|
+
# The pagination token that's used to fetch the next set of results.
|
5145
5203
|
# @return [String]
|
5146
5204
|
#
|
5147
5205
|
# @!attribute [rw] privacy_budget_template_summaries
|
@@ -5170,14 +5228,14 @@ module Aws::CleanRooms
|
|
5170
5228
|
# @return [String]
|
5171
5229
|
#
|
5172
5230
|
# @!attribute [rw] next_token
|
5173
|
-
# The token
|
5174
|
-
# page of results.
|
5231
|
+
# The pagination token that's used to fetch the next set of results.
|
5175
5232
|
# @return [String]
|
5176
5233
|
#
|
5177
5234
|
# @!attribute [rw] max_results
|
5178
|
-
# The maximum
|
5179
|
-
# chooses a default if
|
5180
|
-
#
|
5235
|
+
# The maximum number of results that are returned for an API request
|
5236
|
+
# call. The service chooses a default number if you don't set one.
|
5237
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5238
|
+
# value has not been met.
|
5181
5239
|
# @return [Integer]
|
5182
5240
|
#
|
5183
5241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsInput AWS API Documentation
|
@@ -5198,8 +5256,7 @@ module Aws::CleanRooms
|
|
5198
5256
|
# @return [Array<Types::PrivacyBudgetSummary>]
|
5199
5257
|
#
|
5200
5258
|
# @!attribute [rw] next_token
|
5201
|
-
# The token
|
5202
|
-
# page of results.
|
5259
|
+
# The pagination token that's used to fetch the next set of results.
|
5203
5260
|
# @return [String]
|
5204
5261
|
#
|
5205
5262
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsOutput AWS API Documentation
|
@@ -5220,14 +5277,14 @@ module Aws::CleanRooms
|
|
5220
5277
|
# @return [String]
|
5221
5278
|
#
|
5222
5279
|
# @!attribute [rw] next_token
|
5223
|
-
# The token
|
5224
|
-
# page of results.
|
5280
|
+
# The pagination token that's used to fetch the next set of results.
|
5225
5281
|
# @return [String]
|
5226
5282
|
#
|
5227
5283
|
# @!attribute [rw] max_results
|
5228
|
-
# The maximum
|
5229
|
-
# chooses a default if
|
5230
|
-
#
|
5284
|
+
# The maximum number of results that are returned for an API request
|
5285
|
+
# call. The service chooses a default number if you don't set one.
|
5286
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5287
|
+
# value has not been met.
|
5231
5288
|
# @return [Integer]
|
5232
5289
|
#
|
5233
5290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueriesInput AWS API Documentation
|
@@ -5242,8 +5299,7 @@ module Aws::CleanRooms
|
|
5242
5299
|
end
|
5243
5300
|
|
5244
5301
|
# @!attribute [rw] next_token
|
5245
|
-
# The token
|
5246
|
-
# page of results.
|
5302
|
+
# The pagination token that's used to fetch the next set of results.
|
5247
5303
|
# @return [String]
|
5248
5304
|
#
|
5249
5305
|
# @!attribute [rw] protected_queries
|
@@ -5265,17 +5321,18 @@ module Aws::CleanRooms
|
|
5265
5321
|
# @return [String]
|
5266
5322
|
#
|
5267
5323
|
# @!attribute [rw] schema_type
|
5268
|
-
# If present, filter schemas by schema type.
|
5269
|
-
# type is currently `TABLE`.
|
5324
|
+
# If present, filter schemas by schema type.
|
5270
5325
|
# @return [String]
|
5271
5326
|
#
|
5272
5327
|
# @!attribute [rw] next_token
|
5273
|
-
# The token
|
5274
|
-
# page of results.
|
5328
|
+
# The pagination token that's used to fetch the next set of results.
|
5275
5329
|
# @return [String]
|
5276
5330
|
#
|
5277
5331
|
# @!attribute [rw] max_results
|
5278
|
-
# The maximum
|
5332
|
+
# The maximum number of results that are returned for an API request
|
5333
|
+
# call. The service chooses a default number if you don't set one.
|
5334
|
+
# The service might return a `nextToken` even if the `maxResults`
|
5335
|
+
# value has not been met.
|
5279
5336
|
# @return [Integer]
|
5280
5337
|
#
|
5281
5338
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasInput AWS API Documentation
|
@@ -5294,8 +5351,7 @@ module Aws::CleanRooms
|
|
5294
5351
|
# @return [Array<Types::SchemaSummary>]
|
5295
5352
|
#
|
5296
5353
|
# @!attribute [rw] next_token
|
5297
|
-
# The token
|
5298
|
-
# page of results.
|
5354
|
+
# The pagination token that's used to fetch the next set of results.
|
5299
5355
|
# @return [String]
|
5300
5356
|
#
|
5301
5357
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasOutput AWS API Documentation
|
@@ -6134,6 +6190,10 @@ module Aws::CleanRooms
|
|
6134
6190
|
# the protected query.
|
6135
6191
|
# @return [Types::DifferentialPrivacyParameters]
|
6136
6192
|
#
|
6193
|
+
# @!attribute [rw] compute_configuration
|
6194
|
+
# The compute configuration for the protected query.
|
6195
|
+
# @return [Types::ComputeConfiguration]
|
6196
|
+
#
|
6137
6197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuery AWS API Documentation
|
6138
6198
|
#
|
6139
6199
|
class ProtectedQuery < Struct.new(
|
@@ -6147,7 +6207,8 @@ module Aws::CleanRooms
|
|
6147
6207
|
:statistics,
|
6148
6208
|
:result,
|
6149
6209
|
:error,
|
6150
|
-
:differential_privacy
|
6210
|
+
:differential_privacy,
|
6211
|
+
:compute_configuration)
|
6151
6212
|
SENSITIVE = [:sql_parameters]
|
6152
6213
|
include Aws::Structure
|
6153
6214
|
end
|
@@ -6302,12 +6363,19 @@ module Aws::CleanRooms
|
|
6302
6363
|
# The S3 prefix to unload the protected query results.
|
6303
6364
|
# @return [String]
|
6304
6365
|
#
|
6366
|
+
# @!attribute [rw] single_file_output
|
6367
|
+
# Indicates whether files should be output as a single file (`TRUE`)
|
6368
|
+
# or output as multiple files (`FALSE`). This parameter is only
|
6369
|
+
# supported for analyses with the Spark analytics engine.
|
6370
|
+
# @return [Boolean]
|
6371
|
+
#
|
6305
6372
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryS3OutputConfiguration AWS API Documentation
|
6306
6373
|
#
|
6307
6374
|
class ProtectedQueryS3OutputConfiguration < Struct.new(
|
6308
6375
|
:result_format,
|
6309
6376
|
:bucket,
|
6310
|
-
:key_prefix
|
6377
|
+
:key_prefix,
|
6378
|
+
:single_file_output)
|
6311
6379
|
SENSITIVE = []
|
6312
6380
|
include Aws::Structure
|
6313
6381
|
end
|
@@ -6359,10 +6427,15 @@ module Aws::CleanRooms
|
|
6359
6427
|
# completion.
|
6360
6428
|
# @return [Integer]
|
6361
6429
|
#
|
6430
|
+
# @!attribute [rw] billed_resource_utilization
|
6431
|
+
# The billed resource utilization.
|
6432
|
+
# @return [Types::BilledResourceUtilization]
|
6433
|
+
#
|
6362
6434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryStatistics AWS API Documentation
|
6363
6435
|
#
|
6364
6436
|
class ProtectedQueryStatistics < Struct.new(
|
6365
|
-
:total_duration_in_millis
|
6437
|
+
:total_duration_in_millis,
|
6438
|
+
:billed_resource_utilization)
|
6366
6439
|
SENSITIVE = []
|
6367
6440
|
include Aws::Structure
|
6368
6441
|
end
|
@@ -6387,9 +6460,7 @@ module Aws::CleanRooms
|
|
6387
6460
|
# @return [Time]
|
6388
6461
|
#
|
6389
6462
|
# @!attribute [rw] status
|
6390
|
-
# The status of the protected query.
|
6391
|
-
# `STARTED`, `CANCELLED`, `CANCELLING`, `FAILED`, `SUCCESS`,
|
6392
|
-
# `TIMED\_OUT`.
|
6463
|
+
# The status of the protected query.
|
6393
6464
|
# @return [String]
|
6394
6465
|
#
|
6395
6466
|
# @!attribute [rw] receiver_configurations
|
@@ -6521,7 +6592,7 @@ module Aws::CleanRooms
|
|
6521
6592
|
# A schema is a relation within a collaboration.
|
6522
6593
|
#
|
6523
6594
|
# @!attribute [rw] columns
|
6524
|
-
# The columns for the relation this schema represents.
|
6595
|
+
# The columns for the relation that this schema represents.
|
6525
6596
|
# @return [Array<Types::Column>]
|
6526
6597
|
#
|
6527
6598
|
# @!attribute [rw] partition_keys
|
@@ -6529,13 +6600,13 @@ module Aws::CleanRooms
|
|
6529
6600
|
# @return [Array<Types::Column>]
|
6530
6601
|
#
|
6531
6602
|
# @!attribute [rw] analysis_rule_types
|
6532
|
-
# The analysis rule types associated with the schema.
|
6533
|
-
# one entry is present.
|
6603
|
+
# The analysis rule types that are associated with the schema.
|
6604
|
+
# Currently, only one entry is present.
|
6534
6605
|
# @return [Array<String>]
|
6535
6606
|
#
|
6536
6607
|
# @!attribute [rw] analysis_method
|
6537
6608
|
# The analysis method for the schema. The only valid value is
|
6538
|
-
# currently
|
6609
|
+
# currently `DIRECT_QUERY`.
|
6539
6610
|
# @return [String]
|
6540
6611
|
#
|
6541
6612
|
# @!attribute [rw] creator_account_id
|
@@ -6553,7 +6624,8 @@ module Aws::CleanRooms
|
|
6553
6624
|
# @return [String]
|
6554
6625
|
#
|
6555
6626
|
# @!attribute [rw] collaboration_arn
|
6556
|
-
# The unique ARN for the collaboration that the
|
6627
|
+
# The unique Amazon Resource Name (ARN) for the collaboration that the
|
6628
|
+
# schema belongs to.
|
6557
6629
|
# @return [String]
|
6558
6630
|
#
|
6559
6631
|
# @!attribute [rw] description
|
@@ -6561,15 +6633,15 @@ module Aws::CleanRooms
|
|
6561
6633
|
# @return [String]
|
6562
6634
|
#
|
6563
6635
|
# @!attribute [rw] create_time
|
6564
|
-
# The time the schema was created.
|
6636
|
+
# The time at which the schema was created.
|
6565
6637
|
# @return [Time]
|
6566
6638
|
#
|
6567
6639
|
# @!attribute [rw] update_time
|
6568
|
-
# The time the schema was
|
6640
|
+
# The most recent time at which the schema was updated.
|
6569
6641
|
# @return [Time]
|
6570
6642
|
#
|
6571
6643
|
# @!attribute [rw] type
|
6572
|
-
# The type of schema.
|
6644
|
+
# The type of schema.
|
6573
6645
|
# @return [String]
|
6574
6646
|
#
|
6575
6647
|
# @!attribute [rw] schema_status_details
|
@@ -6693,8 +6765,7 @@ module Aws::CleanRooms
|
|
6693
6765
|
# @return [String]
|
6694
6766
|
#
|
6695
6767
|
# @!attribute [rw] type
|
6696
|
-
# The type of schema object.
|
6697
|
-
# `TABLE`.
|
6768
|
+
# The type of schema object.
|
6698
6769
|
# @return [String]
|
6699
6770
|
#
|
6700
6771
|
# @!attribute [rw] creator_account_id
|
@@ -6805,13 +6876,18 @@ module Aws::CleanRooms
|
|
6805
6876
|
# The details needed to write the query results.
|
6806
6877
|
# @return [Types::ProtectedQueryResultConfiguration]
|
6807
6878
|
#
|
6879
|
+
# @!attribute [rw] compute_configuration
|
6880
|
+
# The compute configuration for the protected query.
|
6881
|
+
# @return [Types::ComputeConfiguration]
|
6882
|
+
#
|
6808
6883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQueryInput AWS API Documentation
|
6809
6884
|
#
|
6810
6885
|
class StartProtectedQueryInput < Struct.new(
|
6811
6886
|
:type,
|
6812
6887
|
:membership_identifier,
|
6813
6888
|
:sql_parameters,
|
6814
|
-
:result_configuration
|
6889
|
+
:result_configuration,
|
6890
|
+
:compute_configuration)
|
6815
6891
|
SENSITIVE = [:sql_parameters]
|
6816
6892
|
include Aws::Structure
|
6817
6893
|
end
|
@@ -7421,6 +7497,26 @@ module Aws::CleanRooms
|
|
7421
7497
|
include Aws::Structure
|
7422
7498
|
end
|
7423
7499
|
|
7500
|
+
# The configuration of the compute resources for workers running an
|
7501
|
+
# analysis with the Clean Rooms SQL analytics engine.
|
7502
|
+
#
|
7503
|
+
# @!attribute [rw] type
|
7504
|
+
# The worker compute configuration type.
|
7505
|
+
# @return [String]
|
7506
|
+
#
|
7507
|
+
# @!attribute [rw] number
|
7508
|
+
# The number of workers.
|
7509
|
+
# @return [Integer]
|
7510
|
+
#
|
7511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/WorkerComputeConfiguration AWS API Documentation
|
7512
|
+
#
|
7513
|
+
class WorkerComputeConfiguration < Struct.new(
|
7514
|
+
:type,
|
7515
|
+
:number)
|
7516
|
+
SENSITIVE = []
|
7517
|
+
include Aws::Structure
|
7518
|
+
end
|
7519
|
+
|
7424
7520
|
end
|
7425
7521
|
end
|
7426
7522
|
|