aws-sdk-cleanrooms 1.54.0 → 1.56.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d406e1796ee192f1334469963a05819995175e2525bd33b0fdf2be5cb65dca8
4
- data.tar.gz: cf7a5c8682adef0e4095a1b97c1d21ca269e4f0e0ddede62d2b8ff0d3facc198
3
+ metadata.gz: 38fbdbf767991c00d98d1037fce1d508342f164e50c0c8c7e1bebcae71290306
4
+ data.tar.gz: e7b2f0162f041de214c13354425fb1b93c749ae044ebf05da0a715011772369b
5
5
  SHA512:
6
- metadata.gz: 236ea5245673a190006a1496fe57464ce461e9e248f1950b3dc6a484defbe022f8eb81ff3d67a9c045397da405c4f7a6634ad7c4e8c5668df63581fd93597718
7
- data.tar.gz: 76cd825181ef72e4203eb034f0689f303884ecdbe862961b36d91bf03aabe2153559f6e1f2503a123f87fb35ffdc948cb1fa6eec6103a61dd8d918da7a78f4d0
6
+ metadata.gz: '048bf32f111b605d3a014ecedca4c1e224cd09bc27120410c270ffac20395ebdb7d3214fa63a38f91a00605b47015d9570e9fddbc93f3ed97443ee98c364eec4'
7
+ data.tar.gz: 3b997a15e851d682dfd643c6517d955c92bd13ab8eb01c6e26d442099b23991949ce62be38d2c4c1caedf61a4a7c0472653dcf0801a5a154564c268a8123f989
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2025-10-01)
5
+ ------------------
6
+
7
+ * Feature - This release introduces data access budgets to control how many times a table can be used for queries and jobs in a collaboration.
8
+
9
+ 1.55.0 (2025-09-23)
10
+ ------------------
11
+
12
+ * Feature - Added support for running incremental ID mapping for rule-based workflows.
13
+
4
14
  1.54.0 (2025-09-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.56.0
@@ -600,6 +600,7 @@ module Aws::CleanRooms
600
600
  # resp.schemas[0].schema_status_details[0].configurations #=> Array
601
601
  # resp.schemas[0].schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
602
602
  # resp.schemas[0].schema_status_details[0].analysis_type #=> String, one of "DIRECT_ANALYSIS", "ADDITIONAL_ANALYSIS"
603
+ # resp.schemas[0].resource_arn #=> String
603
604
  # resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source #=> Array
604
605
  # resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].id_namespace_association_id #=> String
605
606
  # resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
@@ -1886,7 +1887,7 @@ module Aws::CleanRooms
1886
1887
  # The privacy budget template is created in the collaboration that this
1887
1888
  # membership belongs to. Accepts a membership ID.
1888
1889
  #
1889
- # @option params [required, String] :auto_refresh
1890
+ # @option params [String] :auto_refresh
1890
1891
  # How often the privacy budget refreshes.
1891
1892
  #
1892
1893
  # If you plan to regularly bring new data into the collaboration, you
@@ -1916,13 +1917,23 @@ module Aws::CleanRooms
1916
1917
  #
1917
1918
  # resp = client.create_privacy_budget_template({
1918
1919
  # membership_identifier: "MembershipIdentifier", # required
1919
- # auto_refresh: "CALENDAR_MONTH", # required, accepts CALENDAR_MONTH, NONE
1920
- # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY
1920
+ # auto_refresh: "CALENDAR_MONTH", # accepts CALENDAR_MONTH, NONE
1921
+ # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY, ACCESS_BUDGET
1921
1922
  # parameters: { # required
1922
1923
  # differential_privacy: {
1923
1924
  # epsilon: 1, # required
1924
1925
  # users_noise_per_query: 1, # required
1925
1926
  # },
1927
+ # access_budget: {
1928
+ # budget_parameters: [ # required
1929
+ # {
1930
+ # type: "CALENDAR_DAY", # required, accepts CALENDAR_DAY, CALENDAR_MONTH, CALENDAR_WEEK, LIFETIME
1931
+ # budget: 1, # required
1932
+ # auto_refresh: "ENABLED", # accepts ENABLED, DISABLED
1933
+ # },
1934
+ # ],
1935
+ # resource_arn: "BudgetedResourceArn", # required
1936
+ # },
1926
1937
  # },
1927
1938
  # tags: {
1928
1939
  # "TagKey" => "TagValue",
@@ -1939,10 +1950,15 @@ module Aws::CleanRooms
1939
1950
  # resp.privacy_budget_template.collaboration_arn #=> String
1940
1951
  # resp.privacy_budget_template.create_time #=> Time
1941
1952
  # resp.privacy_budget_template.update_time #=> Time
1942
- # resp.privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY"
1953
+ # resp.privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
1943
1954
  # resp.privacy_budget_template.auto_refresh #=> String, one of "CALENDAR_MONTH", "NONE"
1944
1955
  # resp.privacy_budget_template.parameters.differential_privacy.epsilon #=> Integer
1945
1956
  # resp.privacy_budget_template.parameters.differential_privacy.users_noise_per_query #=> Integer
1957
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters #=> Array
1958
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].type #=> String, one of "CALENDAR_DAY", "CALENDAR_MONTH", "CALENDAR_WEEK", "LIFETIME"
1959
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].budget #=> Integer
1960
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].auto_refresh #=> String, one of "ENABLED", "DISABLED"
1961
+ # resp.privacy_budget_template.parameters.access_budget.resource_arn #=> String
1946
1962
  #
1947
1963
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreatePrivacyBudgetTemplate AWS API Documentation
1948
1964
  #
@@ -2619,10 +2635,15 @@ module Aws::CleanRooms
2619
2635
  # resp.collaboration_privacy_budget_template.creator_account_id #=> String
2620
2636
  # resp.collaboration_privacy_budget_template.create_time #=> Time
2621
2637
  # resp.collaboration_privacy_budget_template.update_time #=> Time
2622
- # resp.collaboration_privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY"
2638
+ # resp.collaboration_privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
2623
2639
  # resp.collaboration_privacy_budget_template.auto_refresh #=> String, one of "CALENDAR_MONTH", "NONE"
2624
2640
  # resp.collaboration_privacy_budget_template.parameters.differential_privacy.epsilon #=> Integer
2625
2641
  # resp.collaboration_privacy_budget_template.parameters.differential_privacy.users_noise_per_query #=> Integer
2642
+ # resp.collaboration_privacy_budget_template.parameters.access_budget.budget_parameters #=> Array
2643
+ # resp.collaboration_privacy_budget_template.parameters.access_budget.budget_parameters[0].type #=> String, one of "CALENDAR_DAY", "CALENDAR_MONTH", "CALENDAR_WEEK", "LIFETIME"
2644
+ # resp.collaboration_privacy_budget_template.parameters.access_budget.budget_parameters[0].budget #=> Integer
2645
+ # resp.collaboration_privacy_budget_template.parameters.access_budget.budget_parameters[0].auto_refresh #=> String, one of "ENABLED", "DISABLED"
2646
+ # resp.collaboration_privacy_budget_template.parameters.access_budget.resource_arn #=> String
2626
2647
  #
2627
2648
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationPrivacyBudgetTemplate AWS API Documentation
2628
2649
  #
@@ -3089,10 +3110,15 @@ module Aws::CleanRooms
3089
3110
  # resp.privacy_budget_template.collaboration_arn #=> String
3090
3111
  # resp.privacy_budget_template.create_time #=> Time
3091
3112
  # resp.privacy_budget_template.update_time #=> Time
3092
- # resp.privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY"
3113
+ # resp.privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
3093
3114
  # resp.privacy_budget_template.auto_refresh #=> String, one of "CALENDAR_MONTH", "NONE"
3094
3115
  # resp.privacy_budget_template.parameters.differential_privacy.epsilon #=> Integer
3095
3116
  # resp.privacy_budget_template.parameters.differential_privacy.users_noise_per_query #=> Integer
3117
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters #=> Array
3118
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].type #=> String, one of "CALENDAR_DAY", "CALENDAR_MONTH", "CALENDAR_WEEK", "LIFETIME"
3119
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].budget #=> Integer
3120
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].auto_refresh #=> String, one of "ENABLED", "DISABLED"
3121
+ # resp.privacy_budget_template.parameters.access_budget.resource_arn #=> String
3096
3122
  #
3097
3123
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetPrivacyBudgetTemplate AWS API Documentation
3098
3124
  #
@@ -3271,6 +3297,7 @@ module Aws::CleanRooms
3271
3297
  # resp.schema.schema_status_details[0].configurations #=> Array
3272
3298
  # resp.schema.schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
3273
3299
  # resp.schema.schema_status_details[0].analysis_type #=> String, one of "DIRECT_ANALYSIS", "ADDITIONAL_ANALYSIS"
3300
+ # resp.schema.resource_arn #=> String
3274
3301
  # resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source #=> Array
3275
3302
  # resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].id_namespace_association_id #=> String
3276
3303
  # resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
@@ -3740,7 +3767,7 @@ module Aws::CleanRooms
3740
3767
  # resp.collaboration_privacy_budget_template_summaries[0].collaboration_id #=> String
3741
3768
  # resp.collaboration_privacy_budget_template_summaries[0].collaboration_arn #=> String
3742
3769
  # resp.collaboration_privacy_budget_template_summaries[0].creator_account_id #=> String
3743
- # resp.collaboration_privacy_budget_template_summaries[0].privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY"
3770
+ # resp.collaboration_privacy_budget_template_summaries[0].privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
3744
3771
  # resp.collaboration_privacy_budget_template_summaries[0].create_time #=> Time
3745
3772
  # resp.collaboration_privacy_budget_template_summaries[0].update_time #=> Time
3746
3773
  #
@@ -3772,6 +3799,10 @@ module Aws::CleanRooms
3772
3799
  # @option params [String] :next_token
3773
3800
  # The pagination token that's used to fetch the next set of results.
3774
3801
  #
3802
+ # @option params [String] :access_budget_resource_arn
3803
+ # The Amazon Resource Name (ARN) of the Configured Table Association
3804
+ # (ConfiguredTableAssociation) used to filter privacy budgets.
3805
+ #
3775
3806
  # @return [Types::ListCollaborationPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3776
3807
  #
3777
3808
  # * {Types::ListCollaborationPrivacyBudgetsOutput#collaboration_privacy_budget_summaries #collaboration_privacy_budget_summaries} => Array<Types::CollaborationPrivacyBudgetSummary>
@@ -3783,9 +3814,10 @@ module Aws::CleanRooms
3783
3814
  #
3784
3815
  # resp = client.list_collaboration_privacy_budgets({
3785
3816
  # collaboration_identifier: "CollaborationIdentifier", # required
3786
- # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY
3817
+ # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY, ACCESS_BUDGET
3787
3818
  # max_results: 1,
3788
3819
  # next_token: "PaginationToken",
3820
+ # access_budget_resource_arn: "BudgetedResourceArn",
3789
3821
  # })
3790
3822
  #
3791
3823
  # @example Response structure
@@ -3797,7 +3829,7 @@ module Aws::CleanRooms
3797
3829
  # resp.collaboration_privacy_budget_summaries[0].collaboration_id #=> String
3798
3830
  # resp.collaboration_privacy_budget_summaries[0].collaboration_arn #=> String
3799
3831
  # resp.collaboration_privacy_budget_summaries[0].creator_account_id #=> String
3800
- # resp.collaboration_privacy_budget_summaries[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
3832
+ # resp.collaboration_privacy_budget_summaries[0].type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
3801
3833
  # resp.collaboration_privacy_budget_summaries[0].create_time #=> Time
3802
3834
  # resp.collaboration_privacy_budget_summaries[0].update_time #=> Time
3803
3835
  # resp.collaboration_privacy_budget_summaries[0].budget.differential_privacy.aggregations #=> Array
@@ -3805,6 +3837,15 @@ module Aws::CleanRooms
3805
3837
  # resp.collaboration_privacy_budget_summaries[0].budget.differential_privacy.aggregations[0].max_count #=> Integer
3806
3838
  # resp.collaboration_privacy_budget_summaries[0].budget.differential_privacy.aggregations[0].remaining_count #=> Integer
3807
3839
  # resp.collaboration_privacy_budget_summaries[0].budget.differential_privacy.epsilon #=> Integer
3840
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.resource_arn #=> String
3841
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details #=> Array
3842
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details[0].start_time #=> Time
3843
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details[0].end_time #=> Time
3844
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details[0].remaining_budget #=> Integer
3845
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details[0].budget #=> Integer
3846
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details[0].budget_type #=> String, one of "CALENDAR_DAY", "CALENDAR_MONTH", "CALENDAR_WEEK", "LIFETIME"
3847
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.details[0].auto_refresh #=> String, one of "ENABLED", "DISABLED"
3848
+ # resp.collaboration_privacy_budget_summaries[0].budget.access_budget.aggregate_remaining_budget #=> Integer
3808
3849
  # resp.next_token #=> String
3809
3850
  #
3810
3851
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgets AWS API Documentation
@@ -4302,7 +4343,7 @@ module Aws::CleanRooms
4302
4343
  # resp.privacy_budget_template_summaries[0].membership_arn #=> String
4303
4344
  # resp.privacy_budget_template_summaries[0].collaboration_id #=> String
4304
4345
  # resp.privacy_budget_template_summaries[0].collaboration_arn #=> String
4305
- # resp.privacy_budget_template_summaries[0].privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY"
4346
+ # resp.privacy_budget_template_summaries[0].privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
4306
4347
  # resp.privacy_budget_template_summaries[0].create_time #=> Time
4307
4348
  # resp.privacy_budget_template_summaries[0].update_time #=> Time
4308
4349
  #
@@ -4335,6 +4376,10 @@ module Aws::CleanRooms
4335
4376
  # service might return a `nextToken` even if the `maxResults` value
4336
4377
  # has not been met.
4337
4378
  #
4379
+ # @option params [String] :access_budget_resource_arn
4380
+ # The Amazon Resource Name (ARN) of the access budget resource to filter
4381
+ # privacy budgets by.
4382
+ #
4338
4383
  # @return [Types::ListPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4339
4384
  #
4340
4385
  # * {Types::ListPrivacyBudgetsOutput#privacy_budget_summaries #privacy_budget_summaries} => Array<Types::PrivacyBudgetSummary>
@@ -4346,9 +4391,10 @@ module Aws::CleanRooms
4346
4391
  #
4347
4392
  # resp = client.list_privacy_budgets({
4348
4393
  # membership_identifier: "MembershipIdentifier", # required
4349
- # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY
4394
+ # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY, ACCESS_BUDGET
4350
4395
  # next_token: "PaginationToken",
4351
4396
  # max_results: 1,
4397
+ # access_budget_resource_arn: "BudgetedResourceArn",
4352
4398
  # })
4353
4399
  #
4354
4400
  # @example Response structure
@@ -4361,7 +4407,7 @@ module Aws::CleanRooms
4361
4407
  # resp.privacy_budget_summaries[0].membership_arn #=> String
4362
4408
  # resp.privacy_budget_summaries[0].collaboration_id #=> String
4363
4409
  # resp.privacy_budget_summaries[0].collaboration_arn #=> String
4364
- # resp.privacy_budget_summaries[0].type #=> String, one of "DIFFERENTIAL_PRIVACY"
4410
+ # resp.privacy_budget_summaries[0].type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
4365
4411
  # resp.privacy_budget_summaries[0].create_time #=> Time
4366
4412
  # resp.privacy_budget_summaries[0].update_time #=> Time
4367
4413
  # resp.privacy_budget_summaries[0].budget.differential_privacy.aggregations #=> Array
@@ -4369,6 +4415,15 @@ module Aws::CleanRooms
4369
4415
  # resp.privacy_budget_summaries[0].budget.differential_privacy.aggregations[0].max_count #=> Integer
4370
4416
  # resp.privacy_budget_summaries[0].budget.differential_privacy.aggregations[0].remaining_count #=> Integer
4371
4417
  # resp.privacy_budget_summaries[0].budget.differential_privacy.epsilon #=> Integer
4418
+ # resp.privacy_budget_summaries[0].budget.access_budget.resource_arn #=> String
4419
+ # resp.privacy_budget_summaries[0].budget.access_budget.details #=> Array
4420
+ # resp.privacy_budget_summaries[0].budget.access_budget.details[0].start_time #=> Time
4421
+ # resp.privacy_budget_summaries[0].budget.access_budget.details[0].end_time #=> Time
4422
+ # resp.privacy_budget_summaries[0].budget.access_budget.details[0].remaining_budget #=> Integer
4423
+ # resp.privacy_budget_summaries[0].budget.access_budget.details[0].budget #=> Integer
4424
+ # resp.privacy_budget_summaries[0].budget.access_budget.details[0].budget_type #=> String, one of "CALENDAR_DAY", "CALENDAR_MONTH", "CALENDAR_WEEK", "LIFETIME"
4425
+ # resp.privacy_budget_summaries[0].budget.access_budget.details[0].auto_refresh #=> String, one of "ENABLED", "DISABLED"
4426
+ # resp.privacy_budget_summaries[0].budget.access_budget.aggregate_remaining_budget #=> Integer
4372
4427
  # resp.next_token #=> String
4373
4428
  #
4374
4429
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgets AWS API Documentation
@@ -4539,6 +4594,7 @@ module Aws::CleanRooms
4539
4594
  # resp.schema_summaries[0].analysis_rule_types #=> Array
4540
4595
  # resp.schema_summaries[0].analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
4541
4596
  # resp.schema_summaries[0].analysis_method #=> String, one of "DIRECT_QUERY", "DIRECT_JOB", "MULTIPLE"
4597
+ # resp.schema_summaries[0].resource_arn #=> String
4542
4598
  # resp.schema_summaries[0].selected_analysis_methods #=> Array
4543
4599
  # resp.schema_summaries[0].selected_analysis_methods[0] #=> String, one of "DIRECT_QUERY", "DIRECT_JOB"
4544
4600
  # resp.next_token #=> String
@@ -4593,6 +4649,28 @@ module Aws::CleanRooms
4593
4649
  # The unique identifier of the membership that contains the ID mapping
4594
4650
  # table that you want to populate.
4595
4651
  #
4652
+ # @option params [String] :job_type
4653
+ # The job type of the rule-based ID mapping job. Valid values include:
4654
+ #
4655
+ # `INCREMENTAL`: Processes only new or changed data since the last job
4656
+ # run. This is the default job type if the ID mapping workflow was
4657
+ # created in Entity Resolution with `incrementalRunConfig` specified.
4658
+ #
4659
+ # `BATCH`: Processes all data from the input source, regardless of
4660
+ # previous job runs. This is the default job type if the ID mapping
4661
+ # workflow was created in Entity Resolution but `incrementalRunConfig`
4662
+ # wasn't specified.
4663
+ #
4664
+ # `DELETE_ONLY`: Processes only deletion requests from
4665
+ # `BatchDeleteUniqueId`, which is set in Entity Resolution.
4666
+ #
4667
+ # For more information about `incrementalRunConfig` and
4668
+ # `BatchDeleteUniqueId`, see the [Entity Resolution API Reference][1].
4669
+ #
4670
+ #
4671
+ #
4672
+ # [1]: https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html
4673
+ #
4596
4674
  # @return [Types::PopulateIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4597
4675
  #
4598
4676
  # * {Types::PopulateIdMappingTableOutput#id_mapping_job_id #id_mapping_job_id} => String
@@ -4602,6 +4680,7 @@ module Aws::CleanRooms
4602
4680
  # resp = client.populate_id_mapping_table({
4603
4681
  # id_mapping_table_identifier: "UUID", # required
4604
4682
  # membership_identifier: "MembershipIdentifier", # required
4683
+ # job_type: "BATCH", # accepts BATCH, INCREMENTAL, DELETE_ONLY
4605
4684
  # })
4606
4685
  #
4607
4686
  # @example Response structure
@@ -5704,12 +5783,21 @@ module Aws::CleanRooms
5704
5783
  # resp = client.update_privacy_budget_template({
5705
5784
  # membership_identifier: "MembershipIdentifier", # required
5706
5785
  # privacy_budget_template_identifier: "PrivacyBudgetTemplateIdentifier", # required
5707
- # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY
5786
+ # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY, ACCESS_BUDGET
5708
5787
  # parameters: {
5709
5788
  # differential_privacy: {
5710
5789
  # epsilon: 1,
5711
5790
  # users_noise_per_query: 1,
5712
5791
  # },
5792
+ # access_budget: {
5793
+ # budget_parameters: [ # required
5794
+ # {
5795
+ # type: "CALENDAR_DAY", # required, accepts CALENDAR_DAY, CALENDAR_MONTH, CALENDAR_WEEK, LIFETIME
5796
+ # budget: 1, # required
5797
+ # auto_refresh: "ENABLED", # accepts ENABLED, DISABLED
5798
+ # },
5799
+ # ],
5800
+ # },
5713
5801
  # },
5714
5802
  # })
5715
5803
  #
@@ -5723,10 +5811,15 @@ module Aws::CleanRooms
5723
5811
  # resp.privacy_budget_template.collaboration_arn #=> String
5724
5812
  # resp.privacy_budget_template.create_time #=> Time
5725
5813
  # resp.privacy_budget_template.update_time #=> Time
5726
- # resp.privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY"
5814
+ # resp.privacy_budget_template.privacy_budget_type #=> String, one of "DIFFERENTIAL_PRIVACY", "ACCESS_BUDGET"
5727
5815
  # resp.privacy_budget_template.auto_refresh #=> String, one of "CALENDAR_MONTH", "NONE"
5728
5816
  # resp.privacy_budget_template.parameters.differential_privacy.epsilon #=> Integer
5729
5817
  # resp.privacy_budget_template.parameters.differential_privacy.users_noise_per_query #=> Integer
5818
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters #=> Array
5819
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].type #=> String, one of "CALENDAR_DAY", "CALENDAR_MONTH", "CALENDAR_WEEK", "LIFETIME"
5820
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].budget #=> Integer
5821
+ # resp.privacy_budget_template.parameters.access_budget.budget_parameters[0].auto_refresh #=> String, one of "ENABLED", "DISABLED"
5822
+ # resp.privacy_budget_template.parameters.access_budget.resource_arn #=> String
5730
5823
  #
5731
5824
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdatePrivacyBudgetTemplate AWS API Documentation
5732
5825
  #
@@ -5883,7 +5976,7 @@ module Aws::CleanRooms
5883
5976
  tracer: tracer
5884
5977
  )
5885
5978
  context[:gem_name] = 'aws-sdk-cleanrooms'
5886
- context[:gem_version] = '1.54.0'
5979
+ context[:gem_version] = '1.56.0'
5887
5980
  Seahorse::Client::Request.new(handlers, context)
5888
5981
  end
5889
5982
 
@@ -14,6 +14,13 @@ module Aws::CleanRooms
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
+ AccessBudget = Shapes::StructureShape.new(name: 'AccessBudget')
18
+ AccessBudgetDetails = Shapes::StructureShape.new(name: 'AccessBudgetDetails')
19
+ AccessBudgetDetailsList = Shapes::ListShape.new(name: 'AccessBudgetDetailsList')
20
+ AccessBudgetType = Shapes::StringShape.new(name: 'AccessBudgetType')
21
+ AccessBudgetsPrivacyTemplateParametersInput = Shapes::StructureShape.new(name: 'AccessBudgetsPrivacyTemplateParametersInput')
22
+ AccessBudgetsPrivacyTemplateParametersOutput = Shapes::StructureShape.new(name: 'AccessBudgetsPrivacyTemplateParametersOutput')
23
+ AccessBudgetsPrivacyTemplateUpdateParameters = Shapes::StructureShape.new(name: 'AccessBudgetsPrivacyTemplateUpdateParameters')
17
24
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
18
25
  AccessDeniedExceptionReason = Shapes::StringShape.new(name: 'AccessDeniedExceptionReason')
19
26
  AccountId = Shapes::StringShape.new(name: 'AccountId')
@@ -79,6 +86,7 @@ module Aws::CleanRooms
79
86
  AthenaWorkGroup = Shapes::StringShape.new(name: 'AthenaWorkGroup')
80
87
  AutoApprovedChangeType = Shapes::StringShape.new(name: 'AutoApprovedChangeType')
81
88
  AutoApprovedChangeTypeList = Shapes::ListShape.new(name: 'AutoApprovedChangeTypeList')
89
+ AutoRefreshMode = Shapes::StringShape.new(name: 'AutoRefreshMode')
82
90
  BatchGetCollaborationAnalysisTemplateError = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateError')
83
91
  BatchGetCollaborationAnalysisTemplateErrorList = Shapes::ListShape.new(name: 'BatchGetCollaborationAnalysisTemplateErrorList')
84
92
  BatchGetCollaborationAnalysisTemplateInput = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateInput')
@@ -94,6 +102,10 @@ module Aws::CleanRooms
94
102
  BilledJobResourceUtilization = Shapes::StructureShape.new(name: 'BilledJobResourceUtilization')
95
103
  BilledResourceUtilization = Shapes::StructureShape.new(name: 'BilledResourceUtilization')
96
104
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
105
+ Budget = Shapes::IntegerShape.new(name: 'Budget')
106
+ BudgetParameter = Shapes::StructureShape.new(name: 'BudgetParameter')
107
+ BudgetParameters = Shapes::ListShape.new(name: 'BudgetParameters')
108
+ BudgetedResourceArn = Shapes::StringShape.new(name: 'BudgetedResourceArn')
97
109
  Change = Shapes::StructureShape.new(name: 'Change')
98
110
  ChangeInput = Shapes::StructureShape.new(name: 'ChangeInput')
99
111
  ChangeInputList = Shapes::ListShape.new(name: 'ChangeInputList')
@@ -331,6 +343,7 @@ module Aws::CleanRooms
331
343
  IdNamespaceType = Shapes::StringShape.new(name: 'IdNamespaceType')
332
344
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
333
345
  JobComputePaymentConfig = Shapes::StructureShape.new(name: 'JobComputePaymentConfig')
346
+ JobType = Shapes::StringShape.new(name: 'JobType')
334
347
  JoinOperator = Shapes::StringShape.new(name: 'JoinOperator')
335
348
  JoinOperatorsList = Shapes::ListShape.new(name: 'JoinOperatorsList')
336
349
  JoinRequiredOption = Shapes::StringShape.new(name: 'JoinRequiredOption')
@@ -501,6 +514,7 @@ module Aws::CleanRooms
501
514
  ReceiverAccountIds = Shapes::ListShape.new(name: 'ReceiverAccountIds')
502
515
  ReceiverConfiguration = Shapes::StructureShape.new(name: 'ReceiverConfiguration')
503
516
  ReceiverConfigurationsList = Shapes::ListShape.new(name: 'ReceiverConfigurationsList')
517
+ RemainingBudget = Shapes::IntegerShape.new(name: 'RemainingBudget')
504
518
  ResourceAlias = Shapes::StringShape.new(name: 'ResourceAlias')
505
519
  ResourceDescription = Shapes::StringShape.new(name: 'ResourceDescription')
506
520
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
@@ -519,6 +533,7 @@ module Aws::CleanRooms
519
533
  SchemaConfiguration = Shapes::StringShape.new(name: 'SchemaConfiguration')
520
534
  SchemaConfigurationList = Shapes::ListShape.new(name: 'SchemaConfigurationList')
521
535
  SchemaList = Shapes::ListShape.new(name: 'SchemaList')
536
+ SchemaResourceArn = Shapes::StringShape.new(name: 'SchemaResourceArn')
522
537
  SchemaStatus = Shapes::StringShape.new(name: 'SchemaStatus')
523
538
  SchemaStatusDetail = Shapes::StructureShape.new(name: 'SchemaStatusDetail')
524
539
  SchemaStatusDetailList = Shapes::ListShape.new(name: 'SchemaStatusDetailList')
@@ -598,6 +613,32 @@ module Aws::CleanRooms
598
613
  WorkerComputeConfigurationNumberInteger = Shapes::IntegerShape.new(name: 'WorkerComputeConfigurationNumberInteger')
599
614
  WorkerComputeType = Shapes::StringShape.new(name: 'WorkerComputeType')
600
615
 
616
+ AccessBudget.add_member(:resource_arn, Shapes::ShapeRef.new(shape: BudgetedResourceArn, required: true, location_name: "resourceArn"))
617
+ AccessBudget.add_member(:details, Shapes::ShapeRef.new(shape: AccessBudgetDetailsList, required: true, location_name: "details"))
618
+ AccessBudget.add_member(:aggregate_remaining_budget, Shapes::ShapeRef.new(shape: RemainingBudget, required: true, location_name: "aggregateRemainingBudget"))
619
+ AccessBudget.struct_class = Types::AccessBudget
620
+
621
+ AccessBudgetDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startTime"))
622
+ AccessBudgetDetails.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endTime"))
623
+ AccessBudgetDetails.add_member(:remaining_budget, Shapes::ShapeRef.new(shape: RemainingBudget, required: true, location_name: "remainingBudget"))
624
+ AccessBudgetDetails.add_member(:budget, Shapes::ShapeRef.new(shape: Budget, required: true, location_name: "budget"))
625
+ AccessBudgetDetails.add_member(:budget_type, Shapes::ShapeRef.new(shape: AccessBudgetType, required: true, location_name: "budgetType"))
626
+ AccessBudgetDetails.add_member(:auto_refresh, Shapes::ShapeRef.new(shape: AutoRefreshMode, location_name: "autoRefresh"))
627
+ AccessBudgetDetails.struct_class = Types::AccessBudgetDetails
628
+
629
+ AccessBudgetDetailsList.member = Shapes::ShapeRef.new(shape: AccessBudgetDetails)
630
+
631
+ AccessBudgetsPrivacyTemplateParametersInput.add_member(:budget_parameters, Shapes::ShapeRef.new(shape: BudgetParameters, required: true, location_name: "budgetParameters"))
632
+ AccessBudgetsPrivacyTemplateParametersInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: BudgetedResourceArn, required: true, location_name: "resourceArn"))
633
+ AccessBudgetsPrivacyTemplateParametersInput.struct_class = Types::AccessBudgetsPrivacyTemplateParametersInput
634
+
635
+ AccessBudgetsPrivacyTemplateParametersOutput.add_member(:budget_parameters, Shapes::ShapeRef.new(shape: BudgetParameters, required: true, location_name: "budgetParameters"))
636
+ AccessBudgetsPrivacyTemplateParametersOutput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: BudgetedResourceArn, required: true, location_name: "resourceArn"))
637
+ AccessBudgetsPrivacyTemplateParametersOutput.struct_class = Types::AccessBudgetsPrivacyTemplateParametersOutput
638
+
639
+ AccessBudgetsPrivacyTemplateUpdateParameters.add_member(:budget_parameters, Shapes::ShapeRef.new(shape: BudgetParameters, required: true, location_name: "budgetParameters"))
640
+ AccessBudgetsPrivacyTemplateUpdateParameters.struct_class = Types::AccessBudgetsPrivacyTemplateUpdateParameters
641
+
601
642
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
602
643
  AccessDeniedException.add_member(:reason, Shapes::ShapeRef.new(shape: AccessDeniedExceptionReason, location_name: "reason"))
603
644
  AccessDeniedException.struct_class = Types::AccessDeniedException
@@ -836,6 +877,13 @@ module Aws::CleanRooms
836
877
  BilledResourceUtilization.add_member(:units, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "units"))
837
878
  BilledResourceUtilization.struct_class = Types::BilledResourceUtilization
838
879
 
880
+ BudgetParameter.add_member(:type, Shapes::ShapeRef.new(shape: AccessBudgetType, required: true, location_name: "type"))
881
+ BudgetParameter.add_member(:budget, Shapes::ShapeRef.new(shape: Budget, required: true, location_name: "budget"))
882
+ BudgetParameter.add_member(:auto_refresh, Shapes::ShapeRef.new(shape: AutoRefreshMode, location_name: "autoRefresh"))
883
+ BudgetParameter.struct_class = Types::BudgetParameter
884
+
885
+ BudgetParameters.member = Shapes::ShapeRef.new(shape: BudgetParameter)
886
+
839
887
  Change.add_member(:specification_type, Shapes::ShapeRef.new(shape: ChangeSpecificationType, required: true, location_name: "specificationType"))
840
888
  Change.add_member(:specification, Shapes::ShapeRef.new(shape: ChangeSpecification, required: true, location_name: "specification"))
841
889
  Change.add_member(:types, Shapes::ShapeRef.new(shape: ChangeTypeList, required: true, location_name: "types"))
@@ -1383,7 +1431,7 @@ module Aws::CleanRooms
1383
1431
  CreateMembershipOutput.struct_class = Types::CreateMembershipOutput
1384
1432
 
1385
1433
  CreatePrivacyBudgetTemplateInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
1386
- CreatePrivacyBudgetTemplateInput.add_member(:auto_refresh, Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateAutoRefresh, required: true, location_name: "autoRefresh"))
1434
+ CreatePrivacyBudgetTemplateInput.add_member(:auto_refresh, Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateAutoRefresh, location_name: "autoRefresh"))
1387
1435
  CreatePrivacyBudgetTemplateInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location_name: "privacyBudgetType"))
1388
1436
  CreatePrivacyBudgetTemplateInput.add_member(:parameters, Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateParametersInput, required: true, location_name: "parameters"))
1389
1437
  CreatePrivacyBudgetTemplateInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
@@ -1840,6 +1888,7 @@ module Aws::CleanRooms
1840
1888
  ListCollaborationPrivacyBudgetsInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location: "querystring", location_name: "privacyBudgetType"))
1841
1889
  ListCollaborationPrivacyBudgetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1842
1890
  ListCollaborationPrivacyBudgetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
1891
+ ListCollaborationPrivacyBudgetsInput.add_member(:access_budget_resource_arn, Shapes::ShapeRef.new(shape: BudgetedResourceArn, location: "querystring", location_name: "accessBudgetResourceArn"))
1843
1892
  ListCollaborationPrivacyBudgetsInput.struct_class = Types::ListCollaborationPrivacyBudgetsInput
1844
1893
 
1845
1894
  ListCollaborationPrivacyBudgetsOutput.add_member(:collaboration_privacy_budget_summaries, Shapes::ShapeRef.new(shape: CollaborationPrivacyBudgetSummaryList, required: true, location_name: "collaborationPrivacyBudgetSummaries"))
@@ -1930,6 +1979,7 @@ module Aws::CleanRooms
1930
1979
  ListPrivacyBudgetsInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location: "querystring", location_name: "privacyBudgetType"))
1931
1980
  ListPrivacyBudgetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
1932
1981
  ListPrivacyBudgetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1982
+ ListPrivacyBudgetsInput.add_member(:access_budget_resource_arn, Shapes::ShapeRef.new(shape: BudgetedResourceArn, location: "querystring", location_name: "accessBudgetResourceArn"))
1933
1983
  ListPrivacyBudgetsInput.struct_class = Types::ListPrivacyBudgetsInput
1934
1984
 
1935
1985
  ListPrivacyBudgetsOutput.add_member(:privacy_budget_summaries, Shapes::ShapeRef.new(shape: PrivacyBudgetSummaryList, required: true, location_name: "privacyBudgetSummaries"))
@@ -2102,6 +2152,7 @@ module Aws::CleanRooms
2102
2152
 
2103
2153
  PopulateIdMappingTableInput.add_member(:id_mapping_table_identifier, Shapes::ShapeRef.new(shape: UUID, required: true, location: "uri", location_name: "idMappingTableIdentifier"))
2104
2154
  PopulateIdMappingTableInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
2155
+ PopulateIdMappingTableInput.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
2105
2156
  PopulateIdMappingTableInput.struct_class = Types::PopulateIdMappingTableInput
2106
2157
 
2107
2158
  PopulateIdMappingTableOutput.add_member(:id_mapping_job_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "idMappingJobId"))
@@ -2121,8 +2172,10 @@ module Aws::CleanRooms
2121
2172
  PreviewPrivacyImpactParametersInput.struct_class = Types::PreviewPrivacyImpactParametersInput
2122
2173
 
2123
2174
  PrivacyBudget.add_member(:differential_privacy, Shapes::ShapeRef.new(shape: DifferentialPrivacyPrivacyBudget, location_name: "differentialPrivacy"))
2175
+ PrivacyBudget.add_member(:access_budget, Shapes::ShapeRef.new(shape: AccessBudget, location_name: "accessBudget"))
2124
2176
  PrivacyBudget.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2125
2177
  PrivacyBudget.add_member_subclass(:differential_privacy, Types::PrivacyBudget::DifferentialPrivacy)
2178
+ PrivacyBudget.add_member_subclass(:access_budget, Types::PrivacyBudget::AccessBudget)
2126
2179
  PrivacyBudget.add_member_subclass(:unknown, Types::PrivacyBudget::Unknown)
2127
2180
  PrivacyBudget.struct_class = Types::PrivacyBudget
2128
2181
 
@@ -2155,14 +2208,18 @@ module Aws::CleanRooms
2155
2208
  PrivacyBudgetTemplate.struct_class = Types::PrivacyBudgetTemplate
2156
2209
 
2157
2210
  PrivacyBudgetTemplateParametersInput.add_member(:differential_privacy, Shapes::ShapeRef.new(shape: DifferentialPrivacyTemplateParametersInput, location_name: "differentialPrivacy"))
2211
+ PrivacyBudgetTemplateParametersInput.add_member(:access_budget, Shapes::ShapeRef.new(shape: AccessBudgetsPrivacyTemplateParametersInput, location_name: "accessBudget"))
2158
2212
  PrivacyBudgetTemplateParametersInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2159
2213
  PrivacyBudgetTemplateParametersInput.add_member_subclass(:differential_privacy, Types::PrivacyBudgetTemplateParametersInput::DifferentialPrivacy)
2214
+ PrivacyBudgetTemplateParametersInput.add_member_subclass(:access_budget, Types::PrivacyBudgetTemplateParametersInput::AccessBudget)
2160
2215
  PrivacyBudgetTemplateParametersInput.add_member_subclass(:unknown, Types::PrivacyBudgetTemplateParametersInput::Unknown)
2161
2216
  PrivacyBudgetTemplateParametersInput.struct_class = Types::PrivacyBudgetTemplateParametersInput
2162
2217
 
2163
2218
  PrivacyBudgetTemplateParametersOutput.add_member(:differential_privacy, Shapes::ShapeRef.new(shape: DifferentialPrivacyTemplateParametersOutput, location_name: "differentialPrivacy"))
2219
+ PrivacyBudgetTemplateParametersOutput.add_member(:access_budget, Shapes::ShapeRef.new(shape: AccessBudgetsPrivacyTemplateParametersOutput, location_name: "accessBudget"))
2164
2220
  PrivacyBudgetTemplateParametersOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2165
2221
  PrivacyBudgetTemplateParametersOutput.add_member_subclass(:differential_privacy, Types::PrivacyBudgetTemplateParametersOutput::DifferentialPrivacy)
2222
+ PrivacyBudgetTemplateParametersOutput.add_member_subclass(:access_budget, Types::PrivacyBudgetTemplateParametersOutput::AccessBudget)
2166
2223
  PrivacyBudgetTemplateParametersOutput.add_member_subclass(:unknown, Types::PrivacyBudgetTemplateParametersOutput::Unknown)
2167
2224
  PrivacyBudgetTemplateParametersOutput.struct_class = Types::PrivacyBudgetTemplateParametersOutput
2168
2225
 
@@ -2180,8 +2237,10 @@ module Aws::CleanRooms
2180
2237
  PrivacyBudgetTemplateSummaryList.member = Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateSummary)
2181
2238
 
2182
2239
  PrivacyBudgetTemplateUpdateParameters.add_member(:differential_privacy, Shapes::ShapeRef.new(shape: DifferentialPrivacyTemplateUpdateParameters, location_name: "differentialPrivacy"))
2240
+ PrivacyBudgetTemplateUpdateParameters.add_member(:access_budget, Shapes::ShapeRef.new(shape: AccessBudgetsPrivacyTemplateUpdateParameters, location_name: "accessBudget"))
2183
2241
  PrivacyBudgetTemplateUpdateParameters.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2184
2242
  PrivacyBudgetTemplateUpdateParameters.add_member_subclass(:differential_privacy, Types::PrivacyBudgetTemplateUpdateParameters::DifferentialPrivacy)
2243
+ PrivacyBudgetTemplateUpdateParameters.add_member_subclass(:access_budget, Types::PrivacyBudgetTemplateUpdateParameters::AccessBudget)
2185
2244
  PrivacyBudgetTemplateUpdateParameters.add_member_subclass(:unknown, Types::PrivacyBudgetTemplateUpdateParameters::Unknown)
2186
2245
  PrivacyBudgetTemplateUpdateParameters.struct_class = Types::PrivacyBudgetTemplateUpdateParameters
2187
2246
 
@@ -2451,6 +2510,7 @@ module Aws::CleanRooms
2451
2510
  Schema.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
2452
2511
  Schema.add_member(:type, Shapes::ShapeRef.new(shape: SchemaType, required: true, location_name: "type"))
2453
2512
  Schema.add_member(:schema_status_details, Shapes::ShapeRef.new(shape: SchemaStatusDetailList, required: true, location_name: "schemaStatusDetails"))
2513
+ Schema.add_member(:resource_arn, Shapes::ShapeRef.new(shape: SchemaResourceArn, location_name: "resourceArn"))
2454
2514
  Schema.add_member(:schema_type_properties, Shapes::ShapeRef.new(shape: SchemaTypeProperties, location_name: "schemaTypeProperties"))
2455
2515
  Schema.struct_class = Types::Schema
2456
2516
 
@@ -2490,6 +2550,7 @@ module Aws::CleanRooms
2490
2550
  SchemaSummary.add_member(:collaboration_arn, Shapes::ShapeRef.new(shape: CollaborationArn, required: true, location_name: "collaborationArn"))
2491
2551
  SchemaSummary.add_member(:analysis_rule_types, Shapes::ShapeRef.new(shape: AnalysisRuleTypeList, required: true, location_name: "analysisRuleTypes"))
2492
2552
  SchemaSummary.add_member(:analysis_method, Shapes::ShapeRef.new(shape: AnalysisMethod, location_name: "analysisMethod"))
2553
+ SchemaSummary.add_member(:resource_arn, Shapes::ShapeRef.new(shape: SchemaResourceArn, location_name: "resourceArn"))
2493
2554
  SchemaSummary.add_member(:selected_analysis_methods, Shapes::ShapeRef.new(shape: SelectedAnalysisMethods, location_name: "selectedAnalysisMethods"))
2494
2555
  SchemaSummary.struct_class = Types::SchemaSummary
2495
2556
 
@@ -2940,6 +3001,7 @@ module Aws::CleanRooms
2940
3001
  o.input = Shapes::ShapeRef.new(shape: CreatePrivacyBudgetTemplateInput)
2941
3002
  o.output = Shapes::ShapeRef.new(shape: CreatePrivacyBudgetTemplateOutput)
2942
3003
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3004
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2943
3005
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2944
3006
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2945
3007
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -10,6 +10,162 @@
10
10
  module Aws::CleanRooms
11
11
  module Types
12
12
 
13
+ # Controls and tracks usage limits for associated configured tables
14
+ # within a collaboration across queries and job. Supports both
15
+ # period-based budgets that can renew (daily, weekly, or monthly) and
16
+ # fixed lifetime budgets. Contains the resource ARN, remaining budget
17
+ # information, and up to two budget configurations (period-based and
18
+ # lifetime). By default, table usage is unlimited unless a budget is
19
+ # configured.
20
+ #
21
+ # @!attribute [rw] resource_arn
22
+ # The Amazon Resource Name (ARN) of the access budget resource.
23
+ # @return [String]
24
+ #
25
+ # @!attribute [rw] details
26
+ # Detailed budget information including time bounds, remaining budget,
27
+ # and refresh settings.
28
+ # @return [Array<Types::AccessBudgetDetails>]
29
+ #
30
+ # @!attribute [rw] aggregate_remaining_budget
31
+ # The total remaining budget across all budget parameters, showing the
32
+ # lower value between the per-period budget and lifetime budget for
33
+ # this access budget. For individual parameter budgets, see
34
+ # `remainingBudget`.
35
+ # @return [Integer]
36
+ #
37
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AccessBudget AWS API Documentation
38
+ #
39
+ class AccessBudget < Struct.new(
40
+ :resource_arn,
41
+ :details,
42
+ :aggregate_remaining_budget)
43
+ SENSITIVE = []
44
+ include Aws::Structure
45
+ end
46
+
47
+ # Detailed information about an access budget including time bounds,
48
+ # budget allocation, and configuration settings.
49
+ #
50
+ # @!attribute [rw] start_time
51
+ # The start time for the access budget period.
52
+ # @return [Time]
53
+ #
54
+ # @!attribute [rw] end_time
55
+ # The end time for the access budget period.
56
+ # @return [Time]
57
+ #
58
+ # @!attribute [rw] remaining_budget
59
+ # The remaining budget amount available for use within this access
60
+ # budget.
61
+ # @return [Integer]
62
+ #
63
+ # @!attribute [rw] budget
64
+ # The total budget allocation amount for this access budget.
65
+ # @return [Integer]
66
+ #
67
+ # @!attribute [rw] budget_type
68
+ # Specifies the time period for limiting table usage in queries and
69
+ # jobs. For calendar-based periods, the budget can renew if auto
70
+ # refresh is enabled. For lifetime budgets, the limit applies to the
71
+ # total usage throughout the collaboration. Valid values are:
72
+ #
73
+ # `CALENDAR_DAY` - Limit table usage per day.
74
+ #
75
+ # `CALENDAR_WEEK` - Limit table usage per week.
76
+ #
77
+ # `CALENDAR_MONTH` - Limit table usage per month.
78
+ #
79
+ # `LIFETIME` - Limit total table usage for the collaboration duration.
80
+ # @return [String]
81
+ #
82
+ # @!attribute [rw] auto_refresh
83
+ # Indicates whether the budget automatically refreshes for each time
84
+ # period specified in `budgetType`. Valid values are:
85
+ #
86
+ # `ENABLED` - The budget refreshes automatically at the start of each
87
+ # period.
88
+ #
89
+ # `DISABLED` - The budget must be refreshed manually.
90
+ #
91
+ # `NULL` - The value is null when `budgetType` is set to `LIFETIME`.
92
+ # @return [String]
93
+ #
94
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AccessBudgetDetails AWS API Documentation
95
+ #
96
+ class AccessBudgetDetails < Struct.new(
97
+ :start_time,
98
+ :end_time,
99
+ :remaining_budget,
100
+ :budget,
101
+ :budget_type,
102
+ :auto_refresh)
103
+ SENSITIVE = []
104
+ include Aws::Structure
105
+ end
106
+
107
+ # Input parameters for privacy budget templates that support access
108
+ # budgets functionality, enabling enhanced budget management
109
+ # capabilities.
110
+ #
111
+ # @!attribute [rw] budget_parameters
112
+ # An array of budget parameters that define the access budget
113
+ # configuration for the privacy template.
114
+ # @return [Array<Types::BudgetParameter>]
115
+ #
116
+ # @!attribute [rw] resource_arn
117
+ # The Amazon Resource Name (ARN) of the resource associated with this
118
+ # privacy budget template.
119
+ # @return [String]
120
+ #
121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AccessBudgetsPrivacyTemplateParametersInput AWS API Documentation
122
+ #
123
+ class AccessBudgetsPrivacyTemplateParametersInput < Struct.new(
124
+ :budget_parameters,
125
+ :resource_arn)
126
+ SENSITIVE = []
127
+ include Aws::Structure
128
+ end
129
+
130
+ # Output parameters for privacy budget templates with access budgets
131
+ # support, containing the configured budget information.
132
+ #
133
+ # @!attribute [rw] budget_parameters
134
+ # An array of budget parameters returned from the access budget
135
+ # configuration.
136
+ # @return [Array<Types::BudgetParameter>]
137
+ #
138
+ # @!attribute [rw] resource_arn
139
+ # The Amazon Resource Name (ARN) of the resource associated with this
140
+ # privacy budget template.
141
+ # @return [String]
142
+ #
143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AccessBudgetsPrivacyTemplateParametersOutput AWS API Documentation
144
+ #
145
+ class AccessBudgetsPrivacyTemplateParametersOutput < Struct.new(
146
+ :budget_parameters,
147
+ :resource_arn)
148
+ SENSITIVE = []
149
+ include Aws::Structure
150
+ end
151
+
152
+ # Update parameters for privacy budget templates with access budgets
153
+ # functionality, allowing modification of existing budget
154
+ # configurations.
155
+ #
156
+ # @!attribute [rw] budget_parameters
157
+ # Updated array of budget parameters for the access budget
158
+ # configuration.
159
+ # @return [Array<Types::BudgetParameter>]
160
+ #
161
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AccessBudgetsPrivacyTemplateUpdateParameters AWS API Documentation
162
+ #
163
+ class AccessBudgetsPrivacyTemplateUpdateParameters < Struct.new(
164
+ :budget_parameters)
165
+ SENSITIVE = []
166
+ include Aws::Structure
167
+ end
168
+
13
169
  # Caller does not have sufficient access to perform this action.
14
170
  #
15
171
  # @!attribute [rw] message
@@ -976,6 +1132,32 @@ module Aws::CleanRooms
976
1132
  include Aws::Structure
977
1133
  end
978
1134
 
1135
+ # Individual budget parameter configuration that defines specific budget
1136
+ # allocation settings for access budgets.
1137
+ #
1138
+ # @!attribute [rw] type
1139
+ # The type of budget parameter being configured.
1140
+ # @return [String]
1141
+ #
1142
+ # @!attribute [rw] budget
1143
+ # The budget allocation amount for this specific parameter.
1144
+ # @return [Integer]
1145
+ #
1146
+ # @!attribute [rw] auto_refresh
1147
+ # Whether this individual budget parameter automatically refreshes
1148
+ # when the budget period resets.
1149
+ # @return [String]
1150
+ #
1151
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/BudgetParameter AWS API Documentation
1152
+ #
1153
+ class BudgetParameter < Struct.new(
1154
+ :type,
1155
+ :budget,
1156
+ :auto_refresh)
1157
+ SENSITIVE = []
1158
+ include Aws::Structure
1159
+ end
1160
+
979
1161
  # Represents a single change within a collaboration change request,
980
1162
  # containing the change identifier and specification.
981
1163
  #
@@ -5677,13 +5859,19 @@ module Aws::CleanRooms
5677
5859
  # The pagination token that's used to fetch the next set of results.
5678
5860
  # @return [String]
5679
5861
  #
5862
+ # @!attribute [rw] access_budget_resource_arn
5863
+ # The Amazon Resource Name (ARN) of the Configured Table Association
5864
+ # (ConfiguredTableAssociation) used to filter privacy budgets.
5865
+ # @return [String]
5866
+ #
5680
5867
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsInput AWS API Documentation
5681
5868
  #
5682
5869
  class ListCollaborationPrivacyBudgetsInput < Struct.new(
5683
5870
  :collaboration_identifier,
5684
5871
  :privacy_budget_type,
5685
5872
  :max_results,
5686
- :next_token)
5873
+ :next_token,
5874
+ :access_budget_resource_arn)
5687
5875
  SENSITIVE = []
5688
5876
  include Aws::Structure
5689
5877
  end
@@ -6107,13 +6295,19 @@ module Aws::CleanRooms
6107
6295
  # value has not been met.
6108
6296
  # @return [Integer]
6109
6297
  #
6298
+ # @!attribute [rw] access_budget_resource_arn
6299
+ # The Amazon Resource Name (ARN) of the access budget resource to
6300
+ # filter privacy budgets by.
6301
+ # @return [String]
6302
+ #
6110
6303
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsInput AWS API Documentation
6111
6304
  #
6112
6305
  class ListPrivacyBudgetsInput < Struct.new(
6113
6306
  :membership_identifier,
6114
6307
  :privacy_budget_type,
6115
6308
  :next_token,
6116
- :max_results)
6309
+ :max_results,
6310
+ :access_budget_resource_arn)
6117
6311
  SENSITIVE = []
6118
6312
  include Aws::Structure
6119
6313
  end
@@ -7005,11 +7199,35 @@ module Aws::CleanRooms
7005
7199
  # table that you want to populate.
7006
7200
  # @return [String]
7007
7201
  #
7202
+ # @!attribute [rw] job_type
7203
+ # The job type of the rule-based ID mapping job. Valid values include:
7204
+ #
7205
+ # `INCREMENTAL`: Processes only new or changed data since the last job
7206
+ # run. This is the default job type if the ID mapping workflow was
7207
+ # created in Entity Resolution with `incrementalRunConfig` specified.
7208
+ #
7209
+ # `BATCH`: Processes all data from the input source, regardless of
7210
+ # previous job runs. This is the default job type if the ID mapping
7211
+ # workflow was created in Entity Resolution but `incrementalRunConfig`
7212
+ # wasn't specified.
7213
+ #
7214
+ # `DELETE_ONLY`: Processes only deletion requests from
7215
+ # `BatchDeleteUniqueId`, which is set in Entity Resolution.
7216
+ #
7217
+ # For more information about `incrementalRunConfig` and
7218
+ # `BatchDeleteUniqueId`, see the [Entity Resolution API Reference][1].
7219
+ #
7220
+ #
7221
+ #
7222
+ # [1]: https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html
7223
+ # @return [String]
7224
+ #
7008
7225
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableInput AWS API Documentation
7009
7226
  #
7010
7227
  class PopulateIdMappingTableInput < Struct.new(
7011
7228
  :id_mapping_table_identifier,
7012
- :membership_identifier)
7229
+ :membership_identifier,
7230
+ :job_type)
7013
7231
  SENSITIVE = []
7014
7232
  include Aws::Structure
7015
7233
  end
@@ -7093,16 +7311,22 @@ module Aws::CleanRooms
7093
7311
  # available.
7094
7312
  # @return [Types::DifferentialPrivacyPrivacyBudget]
7095
7313
  #
7314
+ # @!attribute [rw] access_budget
7315
+ # Access budget information associated with this privacy budget.
7316
+ # @return [Types::AccessBudget]
7317
+ #
7096
7318
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudget AWS API Documentation
7097
7319
  #
7098
7320
  class PrivacyBudget < Struct.new(
7099
7321
  :differential_privacy,
7322
+ :access_budget,
7100
7323
  :unknown)
7101
7324
  SENSITIVE = []
7102
7325
  include Aws::Structure
7103
7326
  include Aws::Structure::Union
7104
7327
 
7105
7328
  class DifferentialPrivacy < PrivacyBudget; end
7329
+ class AccessBudget < PrivacyBudget; end
7106
7330
  class Unknown < PrivacyBudget; end
7107
7331
  end
7108
7332
 
@@ -7260,16 +7484,23 @@ module Aws::CleanRooms
7260
7484
  # An object that specifies the epsilon and noise parameters.
7261
7485
  # @return [Types::DifferentialPrivacyTemplateParametersInput]
7262
7486
  #
7487
+ # @!attribute [rw] access_budget
7488
+ # Access budget configuration for the privacy budget template input,
7489
+ # enabling integration with access budget functionality.
7490
+ # @return [Types::AccessBudgetsPrivacyTemplateParametersInput]
7491
+ #
7263
7492
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudgetTemplateParametersInput AWS API Documentation
7264
7493
  #
7265
7494
  class PrivacyBudgetTemplateParametersInput < Struct.new(
7266
7495
  :differential_privacy,
7496
+ :access_budget,
7267
7497
  :unknown)
7268
7498
  SENSITIVE = []
7269
7499
  include Aws::Structure
7270
7500
  include Aws::Structure::Union
7271
7501
 
7272
7502
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersInput; end
7503
+ class AccessBudget < PrivacyBudgetTemplateParametersInput; end
7273
7504
  class Unknown < PrivacyBudgetTemplateParametersInput; end
7274
7505
  end
7275
7506
 
@@ -7282,16 +7513,23 @@ module Aws::CleanRooms
7282
7513
  # The epsilon and noise parameters.
7283
7514
  # @return [Types::DifferentialPrivacyTemplateParametersOutput]
7284
7515
  #
7516
+ # @!attribute [rw] access_budget
7517
+ # Access budget configuration returned from the privacy budget
7518
+ # template, containing the configured access budget settings.
7519
+ # @return [Types::AccessBudgetsPrivacyTemplateParametersOutput]
7520
+ #
7285
7521
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudgetTemplateParametersOutput AWS API Documentation
7286
7522
  #
7287
7523
  class PrivacyBudgetTemplateParametersOutput < Struct.new(
7288
7524
  :differential_privacy,
7525
+ :access_budget,
7289
7526
  :unknown)
7290
7527
  SENSITIVE = []
7291
7528
  include Aws::Structure
7292
7529
  include Aws::Structure::Union
7293
7530
 
7294
7531
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput; end
7532
+ class AccessBudget < PrivacyBudgetTemplateParametersOutput; end
7295
7533
  class Unknown < PrivacyBudgetTemplateParametersOutput; end
7296
7534
  end
7297
7535
 
@@ -7365,16 +7603,23 @@ module Aws::CleanRooms
7365
7603
  # parameters.
7366
7604
  # @return [Types::DifferentialPrivacyTemplateUpdateParameters]
7367
7605
  #
7606
+ # @!attribute [rw] access_budget
7607
+ # The new access budget configuration that completely replaces the
7608
+ # existing access budget settings in the privacy budget template.
7609
+ # @return [Types::AccessBudgetsPrivacyTemplateUpdateParameters]
7610
+ #
7368
7611
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudgetTemplateUpdateParameters AWS API Documentation
7369
7612
  #
7370
7613
  class PrivacyBudgetTemplateUpdateParameters < Struct.new(
7371
7614
  :differential_privacy,
7615
+ :access_budget,
7372
7616
  :unknown)
7373
7617
  SENSITIVE = []
7374
7618
  include Aws::Structure
7375
7619
  include Aws::Structure::Union
7376
7620
 
7377
7621
  class DifferentialPrivacy < PrivacyBudgetTemplateUpdateParameters; end
7622
+ class AccessBudget < PrivacyBudgetTemplateUpdateParameters; end
7378
7623
  class Unknown < PrivacyBudgetTemplateUpdateParameters; end
7379
7624
  end
7380
7625
 
@@ -8508,6 +8753,10 @@ module Aws::CleanRooms
8508
8753
  # present.
8509
8754
  # @return [Array<Types::SchemaStatusDetail>]
8510
8755
  #
8756
+ # @!attribute [rw] resource_arn
8757
+ # The Amazon Resource Name (ARN) of the schema resource.
8758
+ # @return [String]
8759
+ #
8511
8760
  # @!attribute [rw] schema_type_properties
8512
8761
  # The schema type properties.
8513
8762
  # @return [Types::SchemaTypeProperties]
@@ -8529,6 +8778,7 @@ module Aws::CleanRooms
8529
8778
  :update_time,
8530
8779
  :type,
8531
8780
  :schema_status_details,
8781
+ :resource_arn,
8532
8782
  :schema_type_properties)
8533
8783
  SENSITIVE = []
8534
8784
  include Aws::Structure
@@ -8665,6 +8915,10 @@ module Aws::CleanRooms
8665
8915
  # directly on this table.
8666
8916
  # @return [String]
8667
8917
  #
8918
+ # @!attribute [rw] resource_arn
8919
+ # The Amazon Resource Name (ARN) of the schema summary resource.
8920
+ # @return [String]
8921
+ #
8668
8922
  # @!attribute [rw] selected_analysis_methods
8669
8923
  # The selected analysis methods for the schema.
8670
8924
  # @return [Array<String>]
@@ -8681,6 +8935,7 @@ module Aws::CleanRooms
8681
8935
  :collaboration_arn,
8682
8936
  :analysis_rule_types,
8683
8937
  :analysis_method,
8938
+ :resource_arn,
8684
8939
  :selected_analysis_methods)
8685
8940
  SENSITIVE = []
8686
8941
  include Aws::Structure
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.54.0'
58
+ GEM_VERSION = '1.56.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -506,12 +506,22 @@ module Aws
506
506
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#create_privacy_budget_template-instance_method
507
507
  def create_privacy_budget_template: (
508
508
  membership_identifier: ::String,
509
- auto_refresh: ("CALENDAR_MONTH" | "NONE"),
510
- privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
509
+ ?auto_refresh: ("CALENDAR_MONTH" | "NONE"),
510
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET"),
511
511
  parameters: {
512
512
  differential_privacy: {
513
513
  epsilon: ::Integer,
514
514
  users_noise_per_query: ::Integer
515
+ }?,
516
+ access_budget: {
517
+ budget_parameters: Array[
518
+ {
519
+ type: ("CALENDAR_DAY" | "CALENDAR_MONTH" | "CALENDAR_WEEK" | "LIFETIME"),
520
+ budget: ::Integer,
521
+ auto_refresh: ("ENABLED" | "DISABLED")?
522
+ },
523
+ ],
524
+ resource_arn: ::String
515
525
  }?
516
526
  },
517
527
  ?tags: Hash[::String, ::String]
@@ -942,9 +952,10 @@ module Aws
942
952
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_collaboration_privacy_budgets-instance_method
943
953
  def list_collaboration_privacy_budgets: (
944
954
  collaboration_identifier: ::String,
945
- privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
955
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET"),
946
956
  ?max_results: ::Integer,
947
- ?next_token: ::String
957
+ ?next_token: ::String,
958
+ ?access_budget_resource_arn: ::String
948
959
  ) -> _ListCollaborationPrivacyBudgetsResponseSuccess
949
960
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationPrivacyBudgetsResponseSuccess
950
961
 
@@ -1072,9 +1083,10 @@ module Aws
1072
1083
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#list_privacy_budgets-instance_method
1073
1084
  def list_privacy_budgets: (
1074
1085
  membership_identifier: ::String,
1075
- privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
1086
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET"),
1076
1087
  ?next_token: ::String,
1077
- ?max_results: ::Integer
1088
+ ?max_results: ::Integer,
1089
+ ?access_budget_resource_arn: ::String
1078
1090
  ) -> _ListPrivacyBudgetsResponseSuccess
1079
1091
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPrivacyBudgetsResponseSuccess
1080
1092
 
@@ -1137,7 +1149,8 @@ module Aws
1137
1149
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#populate_id_mapping_table-instance_method
1138
1150
  def populate_id_mapping_table: (
1139
1151
  id_mapping_table_identifier: ::String,
1140
- membership_identifier: ::String
1152
+ membership_identifier: ::String,
1153
+ ?job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
1141
1154
  ) -> _PopulateIdMappingTableResponseSuccess
1142
1155
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PopulateIdMappingTableResponseSuccess
1143
1156
 
@@ -1499,11 +1512,20 @@ module Aws
1499
1512
  def update_privacy_budget_template: (
1500
1513
  membership_identifier: ::String,
1501
1514
  privacy_budget_template_identifier: ::String,
1502
- privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
1515
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET"),
1503
1516
  ?parameters: {
1504
1517
  differential_privacy: {
1505
1518
  epsilon: ::Integer?,
1506
1519
  users_noise_per_query: ::Integer?
1520
+ }?,
1521
+ access_budget: {
1522
+ budget_parameters: Array[
1523
+ {
1524
+ type: ("CALENDAR_DAY" | "CALENDAR_MONTH" | "CALENDAR_WEEK" | "LIFETIME"),
1525
+ budget: ::Integer,
1526
+ auto_refresh: ("ENABLED" | "DISABLED")?
1527
+ },
1528
+ ]
1507
1529
  }?
1508
1530
  }
1509
1531
  ) -> _UpdatePrivacyBudgetTemplateResponseSuccess
data/sig/types.rbs CHANGED
@@ -8,6 +8,40 @@
8
8
  module Aws::CleanRooms
9
9
  module Types
10
10
 
11
+ class AccessBudget
12
+ attr_accessor resource_arn: ::String
13
+ attr_accessor details: ::Array[Types::AccessBudgetDetails]
14
+ attr_accessor aggregate_remaining_budget: ::Integer
15
+ SENSITIVE: []
16
+ end
17
+
18
+ class AccessBudgetDetails
19
+ attr_accessor start_time: ::Time
20
+ attr_accessor end_time: ::Time
21
+ attr_accessor remaining_budget: ::Integer
22
+ attr_accessor budget: ::Integer
23
+ attr_accessor budget_type: ("CALENDAR_DAY" | "CALENDAR_MONTH" | "CALENDAR_WEEK" | "LIFETIME")
24
+ attr_accessor auto_refresh: ("ENABLED" | "DISABLED")
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class AccessBudgetsPrivacyTemplateParametersInput
29
+ attr_accessor budget_parameters: ::Array[Types::BudgetParameter]
30
+ attr_accessor resource_arn: ::String
31
+ SENSITIVE: []
32
+ end
33
+
34
+ class AccessBudgetsPrivacyTemplateParametersOutput
35
+ attr_accessor budget_parameters: ::Array[Types::BudgetParameter]
36
+ attr_accessor resource_arn: ::String
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class AccessBudgetsPrivacyTemplateUpdateParameters
41
+ attr_accessor budget_parameters: ::Array[Types::BudgetParameter]
42
+ SENSITIVE: []
43
+ end
44
+
11
45
  class AccessDeniedException
12
46
  attr_accessor message: ::String
13
47
  attr_accessor reason: ("INSUFFICIENT_PERMISSIONS")
@@ -284,6 +318,13 @@ module Aws::CleanRooms
284
318
  SENSITIVE: []
285
319
  end
286
320
 
321
+ class BudgetParameter
322
+ attr_accessor type: ("CALENDAR_DAY" | "CALENDAR_MONTH" | "CALENDAR_WEEK" | "LIFETIME")
323
+ attr_accessor budget: ::Integer
324
+ attr_accessor auto_refresh: ("ENABLED" | "DISABLED")
325
+ SENSITIVE: []
326
+ end
327
+
287
328
  class Change
288
329
  attr_accessor specification_type: ("MEMBER")
289
330
  attr_accessor specification: Types::ChangeSpecification
@@ -448,7 +489,7 @@ module Aws::CleanRooms
448
489
  attr_accessor collaboration_id: ::String
449
490
  attr_accessor collaboration_arn: ::String
450
491
  attr_accessor creator_account_id: ::String
451
- attr_accessor type: ("DIFFERENTIAL_PRIVACY")
492
+ attr_accessor type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
452
493
  attr_accessor create_time: ::Time
453
494
  attr_accessor update_time: ::Time
454
495
  attr_accessor budget: Types::PrivacyBudget
@@ -463,7 +504,7 @@ module Aws::CleanRooms
463
504
  attr_accessor creator_account_id: ::String
464
505
  attr_accessor create_time: ::Time
465
506
  attr_accessor update_time: ::Time
466
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
507
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
467
508
  attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
468
509
  attr_accessor parameters: Types::PrivacyBudgetTemplateParametersOutput
469
510
  SENSITIVE: []
@@ -475,7 +516,7 @@ module Aws::CleanRooms
475
516
  attr_accessor collaboration_id: ::String
476
517
  attr_accessor collaboration_arn: ::String
477
518
  attr_accessor creator_account_id: ::String
478
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
519
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
479
520
  attr_accessor create_time: ::Time
480
521
  attr_accessor update_time: ::Time
481
522
  SENSITIVE: []
@@ -948,7 +989,7 @@ module Aws::CleanRooms
948
989
  class CreatePrivacyBudgetTemplateInput
949
990
  attr_accessor membership_identifier: ::String
950
991
  attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
951
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
992
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
952
993
  attr_accessor parameters: Types::PrivacyBudgetTemplateParametersInput
953
994
  attr_accessor tags: ::Hash[::String, ::String]
954
995
  SENSITIVE: []
@@ -1585,9 +1626,10 @@ module Aws::CleanRooms
1585
1626
 
1586
1627
  class ListCollaborationPrivacyBudgetsInput
1587
1628
  attr_accessor collaboration_identifier: ::String
1588
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
1629
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
1589
1630
  attr_accessor max_results: ::Integer
1590
1631
  attr_accessor next_token: ::String
1632
+ attr_accessor access_budget_resource_arn: ::String
1591
1633
  SENSITIVE: []
1592
1634
  end
1593
1635
 
@@ -1715,9 +1757,10 @@ module Aws::CleanRooms
1715
1757
 
1716
1758
  class ListPrivacyBudgetsInput
1717
1759
  attr_accessor membership_identifier: ::String
1718
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
1760
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
1719
1761
  attr_accessor next_token: ::String
1720
1762
  attr_accessor max_results: ::Integer
1763
+ attr_accessor access_budget_resource_arn: ::String
1721
1764
  SENSITIVE: []
1722
1765
  end
1723
1766
 
@@ -1945,6 +1988,7 @@ module Aws::CleanRooms
1945
1988
  class PopulateIdMappingTableInput
1946
1989
  attr_accessor id_mapping_table_identifier: ::String
1947
1990
  attr_accessor membership_identifier: ::String
1991
+ attr_accessor job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
1948
1992
  SENSITIVE: []
1949
1993
  end
1950
1994
 
@@ -1977,11 +2021,14 @@ module Aws::CleanRooms
1977
2021
 
1978
2022
  class PrivacyBudget
1979
2023
  attr_accessor differential_privacy: Types::DifferentialPrivacyPrivacyBudget
2024
+ attr_accessor access_budget: Types::AccessBudget
1980
2025
  attr_accessor unknown: untyped
1981
2026
  SENSITIVE: []
1982
2027
 
1983
2028
  class DifferentialPrivacy < PrivacyBudget
1984
2029
  end
2030
+ class AccessBudget < PrivacyBudget
2031
+ end
1985
2032
  class Unknown < PrivacyBudget
1986
2033
  end
1987
2034
  end
@@ -1994,7 +2041,7 @@ module Aws::CleanRooms
1994
2041
  attr_accessor membership_arn: ::String
1995
2042
  attr_accessor collaboration_id: ::String
1996
2043
  attr_accessor collaboration_arn: ::String
1997
- attr_accessor type: ("DIFFERENTIAL_PRIVACY")
2044
+ attr_accessor type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
1998
2045
  attr_accessor create_time: ::Time
1999
2046
  attr_accessor update_time: ::Time
2000
2047
  attr_accessor budget: Types::PrivacyBudget
@@ -2010,7 +2057,7 @@ module Aws::CleanRooms
2010
2057
  attr_accessor collaboration_arn: ::String
2011
2058
  attr_accessor create_time: ::Time
2012
2059
  attr_accessor update_time: ::Time
2013
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
2060
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
2014
2061
  attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
2015
2062
  attr_accessor parameters: Types::PrivacyBudgetTemplateParametersOutput
2016
2063
  SENSITIVE: []
@@ -2018,22 +2065,28 @@ module Aws::CleanRooms
2018
2065
 
2019
2066
  class PrivacyBudgetTemplateParametersInput
2020
2067
  attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateParametersInput
2068
+ attr_accessor access_budget: Types::AccessBudgetsPrivacyTemplateParametersInput
2021
2069
  attr_accessor unknown: untyped
2022
2070
  SENSITIVE: []
2023
2071
 
2024
2072
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersInput
2025
2073
  end
2074
+ class AccessBudget < PrivacyBudgetTemplateParametersInput
2075
+ end
2026
2076
  class Unknown < PrivacyBudgetTemplateParametersInput
2027
2077
  end
2028
2078
  end
2029
2079
 
2030
2080
  class PrivacyBudgetTemplateParametersOutput
2031
2081
  attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateParametersOutput
2082
+ attr_accessor access_budget: Types::AccessBudgetsPrivacyTemplateParametersOutput
2032
2083
  attr_accessor unknown: untyped
2033
2084
  SENSITIVE: []
2034
2085
 
2035
2086
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput
2036
2087
  end
2088
+ class AccessBudget < PrivacyBudgetTemplateParametersOutput
2089
+ end
2037
2090
  class Unknown < PrivacyBudgetTemplateParametersOutput
2038
2091
  end
2039
2092
  end
@@ -2045,7 +2098,7 @@ module Aws::CleanRooms
2045
2098
  attr_accessor membership_arn: ::String
2046
2099
  attr_accessor collaboration_id: ::String
2047
2100
  attr_accessor collaboration_arn: ::String
2048
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
2101
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
2049
2102
  attr_accessor create_time: ::Time
2050
2103
  attr_accessor update_time: ::Time
2051
2104
  SENSITIVE: []
@@ -2053,11 +2106,14 @@ module Aws::CleanRooms
2053
2106
 
2054
2107
  class PrivacyBudgetTemplateUpdateParameters
2055
2108
  attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateUpdateParameters
2109
+ attr_accessor access_budget: Types::AccessBudgetsPrivacyTemplateUpdateParameters
2056
2110
  attr_accessor unknown: untyped
2057
2111
  SENSITIVE: []
2058
2112
 
2059
2113
  class DifferentialPrivacy < PrivacyBudgetTemplateUpdateParameters
2060
2114
  end
2115
+ class AccessBudget < PrivacyBudgetTemplateUpdateParameters
2116
+ end
2061
2117
  class Unknown < PrivacyBudgetTemplateUpdateParameters
2062
2118
  end
2063
2119
  end
@@ -2432,6 +2488,7 @@ module Aws::CleanRooms
2432
2488
  attr_accessor update_time: ::Time
2433
2489
  attr_accessor type: ("TABLE" | "ID_MAPPING_TABLE")
2434
2490
  attr_accessor schema_status_details: ::Array[Types::SchemaStatusDetail]
2491
+ attr_accessor resource_arn: ::String
2435
2492
  attr_accessor schema_type_properties: Types::SchemaTypeProperties
2436
2493
  SENSITIVE: []
2437
2494
  end
@@ -2467,6 +2524,7 @@ module Aws::CleanRooms
2467
2524
  attr_accessor collaboration_arn: ::String
2468
2525
  attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")]
2469
2526
  attr_accessor analysis_method: ("DIRECT_QUERY" | "DIRECT_JOB" | "MULTIPLE")
2527
+ attr_accessor resource_arn: ::String
2470
2528
  attr_accessor selected_analysis_methods: ::Array[("DIRECT_QUERY" | "DIRECT_JOB")]
2471
2529
  SENSITIVE: []
2472
2530
  end
@@ -2720,7 +2778,7 @@ module Aws::CleanRooms
2720
2778
  class UpdatePrivacyBudgetTemplateInput
2721
2779
  attr_accessor membership_identifier: ::String
2722
2780
  attr_accessor privacy_budget_template_identifier: ::String
2723
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
2781
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
2724
2782
  attr_accessor parameters: Types::PrivacyBudgetTemplateUpdateParameters
2725
2783
  SENSITIVE: []
2726
2784
  end
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.54.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services