aws-sdk-cleanrooms 1.55.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: ab8f01e88e41c674467b35716f271f8c79456d71c525b21a68c55ef5b64fe2f7
4
- data.tar.gz: bf88de20c5ed5af9ef73e81bf3a9b15aaafe046230314cf6414030bcdc799f4a
3
+ metadata.gz: 38fbdbf767991c00d98d1037fce1d508342f164e50c0c8c7e1bebcae71290306
4
+ data.tar.gz: e7b2f0162f041de214c13354425fb1b93c749ae044ebf05da0a715011772369b
5
5
  SHA512:
6
- metadata.gz: 4771784e5cc9f66116e6f51ec9748d5fcb11a1f3963d495fc1f2a4d499b9d87581e0eb24b83aaa145441c52749801f123685b09a9dbc751d482b0cce37cc256a
7
- data.tar.gz: 28b1d5ac148c37bab1bdea82dcb8dd60d4abdbb565ca1ef720a13cc9ba3c4dd3d4090b0b685721f9446169578def5255e09987ffcefa02924b09249724adba61
6
+ metadata.gz: '048bf32f111b605d3a014ecedca4c1e224cd09bc27120410c270ffac20395ebdb7d3214fa63a38f91a00605b47015d9570e9fddbc93f3ed97443ee98c364eec4'
7
+ data.tar.gz: 3b997a15e851d682dfd643c6517d955c92bd13ab8eb01c6e26d442099b23991949ce62be38d2c4c1caedf61a4a7c0472653dcf0801a5a154564c268a8123f989
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.55.0 (2025-09-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.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
@@ -5727,12 +5783,21 @@ module Aws::CleanRooms
5727
5783
  # resp = client.update_privacy_budget_template({
5728
5784
  # membership_identifier: "MembershipIdentifier", # required
5729
5785
  # privacy_budget_template_identifier: "PrivacyBudgetTemplateIdentifier", # required
5730
- # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY
5786
+ # privacy_budget_type: "DIFFERENTIAL_PRIVACY", # required, accepts DIFFERENTIAL_PRIVACY, ACCESS_BUDGET
5731
5787
  # parameters: {
5732
5788
  # differential_privacy: {
5733
5789
  # epsilon: 1,
5734
5790
  # users_noise_per_query: 1,
5735
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
+ # },
5736
5801
  # },
5737
5802
  # })
5738
5803
  #
@@ -5746,10 +5811,15 @@ module Aws::CleanRooms
5746
5811
  # resp.privacy_budget_template.collaboration_arn #=> String
5747
5812
  # resp.privacy_budget_template.create_time #=> Time
5748
5813
  # resp.privacy_budget_template.update_time #=> Time
5749
- # 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"
5750
5815
  # resp.privacy_budget_template.auto_refresh #=> String, one of "CALENDAR_MONTH", "NONE"
5751
5816
  # resp.privacy_budget_template.parameters.differential_privacy.epsilon #=> Integer
5752
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
5753
5823
  #
5754
5824
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdatePrivacyBudgetTemplate AWS API Documentation
5755
5825
  #
@@ -5906,7 +5976,7 @@ module Aws::CleanRooms
5906
5976
  tracer: tracer
5907
5977
  )
5908
5978
  context[:gem_name] = 'aws-sdk-cleanrooms'
5909
- context[:gem_version] = '1.55.0'
5979
+ context[:gem_version] = '1.56.0'
5910
5980
  Seahorse::Client::Request.new(handlers, context)
5911
5981
  end
5912
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')
@@ -502,6 +514,7 @@ module Aws::CleanRooms
502
514
  ReceiverAccountIds = Shapes::ListShape.new(name: 'ReceiverAccountIds')
503
515
  ReceiverConfiguration = Shapes::StructureShape.new(name: 'ReceiverConfiguration')
504
516
  ReceiverConfigurationsList = Shapes::ListShape.new(name: 'ReceiverConfigurationsList')
517
+ RemainingBudget = Shapes::IntegerShape.new(name: 'RemainingBudget')
505
518
  ResourceAlias = Shapes::StringShape.new(name: 'ResourceAlias')
506
519
  ResourceDescription = Shapes::StringShape.new(name: 'ResourceDescription')
507
520
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
@@ -520,6 +533,7 @@ module Aws::CleanRooms
520
533
  SchemaConfiguration = Shapes::StringShape.new(name: 'SchemaConfiguration')
521
534
  SchemaConfigurationList = Shapes::ListShape.new(name: 'SchemaConfigurationList')
522
535
  SchemaList = Shapes::ListShape.new(name: 'SchemaList')
536
+ SchemaResourceArn = Shapes::StringShape.new(name: 'SchemaResourceArn')
523
537
  SchemaStatus = Shapes::StringShape.new(name: 'SchemaStatus')
524
538
  SchemaStatusDetail = Shapes::StructureShape.new(name: 'SchemaStatusDetail')
525
539
  SchemaStatusDetailList = Shapes::ListShape.new(name: 'SchemaStatusDetailList')
@@ -599,6 +613,32 @@ module Aws::CleanRooms
599
613
  WorkerComputeConfigurationNumberInteger = Shapes::IntegerShape.new(name: 'WorkerComputeConfigurationNumberInteger')
600
614
  WorkerComputeType = Shapes::StringShape.new(name: 'WorkerComputeType')
601
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
+
602
642
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
603
643
  AccessDeniedException.add_member(:reason, Shapes::ShapeRef.new(shape: AccessDeniedExceptionReason, location_name: "reason"))
604
644
  AccessDeniedException.struct_class = Types::AccessDeniedException
@@ -837,6 +877,13 @@ module Aws::CleanRooms
837
877
  BilledResourceUtilization.add_member(:units, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "units"))
838
878
  BilledResourceUtilization.struct_class = Types::BilledResourceUtilization
839
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
+
840
887
  Change.add_member(:specification_type, Shapes::ShapeRef.new(shape: ChangeSpecificationType, required: true, location_name: "specificationType"))
841
888
  Change.add_member(:specification, Shapes::ShapeRef.new(shape: ChangeSpecification, required: true, location_name: "specification"))
842
889
  Change.add_member(:types, Shapes::ShapeRef.new(shape: ChangeTypeList, required: true, location_name: "types"))
@@ -1384,7 +1431,7 @@ module Aws::CleanRooms
1384
1431
  CreateMembershipOutput.struct_class = Types::CreateMembershipOutput
1385
1432
 
1386
1433
  CreatePrivacyBudgetTemplateInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
1387
- 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"))
1388
1435
  CreatePrivacyBudgetTemplateInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location_name: "privacyBudgetType"))
1389
1436
  CreatePrivacyBudgetTemplateInput.add_member(:parameters, Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateParametersInput, required: true, location_name: "parameters"))
1390
1437
  CreatePrivacyBudgetTemplateInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
@@ -1841,6 +1888,7 @@ module Aws::CleanRooms
1841
1888
  ListCollaborationPrivacyBudgetsInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location: "querystring", location_name: "privacyBudgetType"))
1842
1889
  ListCollaborationPrivacyBudgetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1843
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"))
1844
1892
  ListCollaborationPrivacyBudgetsInput.struct_class = Types::ListCollaborationPrivacyBudgetsInput
1845
1893
 
1846
1894
  ListCollaborationPrivacyBudgetsOutput.add_member(:collaboration_privacy_budget_summaries, Shapes::ShapeRef.new(shape: CollaborationPrivacyBudgetSummaryList, required: true, location_name: "collaborationPrivacyBudgetSummaries"))
@@ -1931,6 +1979,7 @@ module Aws::CleanRooms
1931
1979
  ListPrivacyBudgetsInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location: "querystring", location_name: "privacyBudgetType"))
1932
1980
  ListPrivacyBudgetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
1933
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"))
1934
1983
  ListPrivacyBudgetsInput.struct_class = Types::ListPrivacyBudgetsInput
1935
1984
 
1936
1985
  ListPrivacyBudgetsOutput.add_member(:privacy_budget_summaries, Shapes::ShapeRef.new(shape: PrivacyBudgetSummaryList, required: true, location_name: "privacyBudgetSummaries"))
@@ -2123,8 +2172,10 @@ module Aws::CleanRooms
2123
2172
  PreviewPrivacyImpactParametersInput.struct_class = Types::PreviewPrivacyImpactParametersInput
2124
2173
 
2125
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"))
2126
2176
  PrivacyBudget.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2127
2177
  PrivacyBudget.add_member_subclass(:differential_privacy, Types::PrivacyBudget::DifferentialPrivacy)
2178
+ PrivacyBudget.add_member_subclass(:access_budget, Types::PrivacyBudget::AccessBudget)
2128
2179
  PrivacyBudget.add_member_subclass(:unknown, Types::PrivacyBudget::Unknown)
2129
2180
  PrivacyBudget.struct_class = Types::PrivacyBudget
2130
2181
 
@@ -2157,14 +2208,18 @@ module Aws::CleanRooms
2157
2208
  PrivacyBudgetTemplate.struct_class = Types::PrivacyBudgetTemplate
2158
2209
 
2159
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"))
2160
2212
  PrivacyBudgetTemplateParametersInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2161
2213
  PrivacyBudgetTemplateParametersInput.add_member_subclass(:differential_privacy, Types::PrivacyBudgetTemplateParametersInput::DifferentialPrivacy)
2214
+ PrivacyBudgetTemplateParametersInput.add_member_subclass(:access_budget, Types::PrivacyBudgetTemplateParametersInput::AccessBudget)
2162
2215
  PrivacyBudgetTemplateParametersInput.add_member_subclass(:unknown, Types::PrivacyBudgetTemplateParametersInput::Unknown)
2163
2216
  PrivacyBudgetTemplateParametersInput.struct_class = Types::PrivacyBudgetTemplateParametersInput
2164
2217
 
2165
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"))
2166
2220
  PrivacyBudgetTemplateParametersOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2167
2221
  PrivacyBudgetTemplateParametersOutput.add_member_subclass(:differential_privacy, Types::PrivacyBudgetTemplateParametersOutput::DifferentialPrivacy)
2222
+ PrivacyBudgetTemplateParametersOutput.add_member_subclass(:access_budget, Types::PrivacyBudgetTemplateParametersOutput::AccessBudget)
2168
2223
  PrivacyBudgetTemplateParametersOutput.add_member_subclass(:unknown, Types::PrivacyBudgetTemplateParametersOutput::Unknown)
2169
2224
  PrivacyBudgetTemplateParametersOutput.struct_class = Types::PrivacyBudgetTemplateParametersOutput
2170
2225
 
@@ -2182,8 +2237,10 @@ module Aws::CleanRooms
2182
2237
  PrivacyBudgetTemplateSummaryList.member = Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateSummary)
2183
2238
 
2184
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"))
2185
2241
  PrivacyBudgetTemplateUpdateParameters.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2186
2242
  PrivacyBudgetTemplateUpdateParameters.add_member_subclass(:differential_privacy, Types::PrivacyBudgetTemplateUpdateParameters::DifferentialPrivacy)
2243
+ PrivacyBudgetTemplateUpdateParameters.add_member_subclass(:access_budget, Types::PrivacyBudgetTemplateUpdateParameters::AccessBudget)
2187
2244
  PrivacyBudgetTemplateUpdateParameters.add_member_subclass(:unknown, Types::PrivacyBudgetTemplateUpdateParameters::Unknown)
2188
2245
  PrivacyBudgetTemplateUpdateParameters.struct_class = Types::PrivacyBudgetTemplateUpdateParameters
2189
2246
 
@@ -2453,6 +2510,7 @@ module Aws::CleanRooms
2453
2510
  Schema.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
2454
2511
  Schema.add_member(:type, Shapes::ShapeRef.new(shape: SchemaType, required: true, location_name: "type"))
2455
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"))
2456
2514
  Schema.add_member(:schema_type_properties, Shapes::ShapeRef.new(shape: SchemaTypeProperties, location_name: "schemaTypeProperties"))
2457
2515
  Schema.struct_class = Types::Schema
2458
2516
 
@@ -2492,6 +2550,7 @@ module Aws::CleanRooms
2492
2550
  SchemaSummary.add_member(:collaboration_arn, Shapes::ShapeRef.new(shape: CollaborationArn, required: true, location_name: "collaborationArn"))
2493
2551
  SchemaSummary.add_member(:analysis_rule_types, Shapes::ShapeRef.new(shape: AnalysisRuleTypeList, required: true, location_name: "analysisRuleTypes"))
2494
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"))
2495
2554
  SchemaSummary.add_member(:selected_analysis_methods, Shapes::ShapeRef.new(shape: SelectedAnalysisMethods, location_name: "selectedAnalysisMethods"))
2496
2555
  SchemaSummary.struct_class = Types::SchemaSummary
2497
2556
 
@@ -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
@@ -7117,16 +7311,22 @@ module Aws::CleanRooms
7117
7311
  # available.
7118
7312
  # @return [Types::DifferentialPrivacyPrivacyBudget]
7119
7313
  #
7314
+ # @!attribute [rw] access_budget
7315
+ # Access budget information associated with this privacy budget.
7316
+ # @return [Types::AccessBudget]
7317
+ #
7120
7318
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudget AWS API Documentation
7121
7319
  #
7122
7320
  class PrivacyBudget < Struct.new(
7123
7321
  :differential_privacy,
7322
+ :access_budget,
7124
7323
  :unknown)
7125
7324
  SENSITIVE = []
7126
7325
  include Aws::Structure
7127
7326
  include Aws::Structure::Union
7128
7327
 
7129
7328
  class DifferentialPrivacy < PrivacyBudget; end
7329
+ class AccessBudget < PrivacyBudget; end
7130
7330
  class Unknown < PrivacyBudget; end
7131
7331
  end
7132
7332
 
@@ -7284,16 +7484,23 @@ module Aws::CleanRooms
7284
7484
  # An object that specifies the epsilon and noise parameters.
7285
7485
  # @return [Types::DifferentialPrivacyTemplateParametersInput]
7286
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
+ #
7287
7492
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudgetTemplateParametersInput AWS API Documentation
7288
7493
  #
7289
7494
  class PrivacyBudgetTemplateParametersInput < Struct.new(
7290
7495
  :differential_privacy,
7496
+ :access_budget,
7291
7497
  :unknown)
7292
7498
  SENSITIVE = []
7293
7499
  include Aws::Structure
7294
7500
  include Aws::Structure::Union
7295
7501
 
7296
7502
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersInput; end
7503
+ class AccessBudget < PrivacyBudgetTemplateParametersInput; end
7297
7504
  class Unknown < PrivacyBudgetTemplateParametersInput; end
7298
7505
  end
7299
7506
 
@@ -7306,16 +7513,23 @@ module Aws::CleanRooms
7306
7513
  # The epsilon and noise parameters.
7307
7514
  # @return [Types::DifferentialPrivacyTemplateParametersOutput]
7308
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
+ #
7309
7521
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudgetTemplateParametersOutput AWS API Documentation
7310
7522
  #
7311
7523
  class PrivacyBudgetTemplateParametersOutput < Struct.new(
7312
7524
  :differential_privacy,
7525
+ :access_budget,
7313
7526
  :unknown)
7314
7527
  SENSITIVE = []
7315
7528
  include Aws::Structure
7316
7529
  include Aws::Structure::Union
7317
7530
 
7318
7531
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput; end
7532
+ class AccessBudget < PrivacyBudgetTemplateParametersOutput; end
7319
7533
  class Unknown < PrivacyBudgetTemplateParametersOutput; end
7320
7534
  end
7321
7535
 
@@ -7389,16 +7603,23 @@ module Aws::CleanRooms
7389
7603
  # parameters.
7390
7604
  # @return [Types::DifferentialPrivacyTemplateUpdateParameters]
7391
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
+ #
7392
7611
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PrivacyBudgetTemplateUpdateParameters AWS API Documentation
7393
7612
  #
7394
7613
  class PrivacyBudgetTemplateUpdateParameters < Struct.new(
7395
7614
  :differential_privacy,
7615
+ :access_budget,
7396
7616
  :unknown)
7397
7617
  SENSITIVE = []
7398
7618
  include Aws::Structure
7399
7619
  include Aws::Structure::Union
7400
7620
 
7401
7621
  class DifferentialPrivacy < PrivacyBudgetTemplateUpdateParameters; end
7622
+ class AccessBudget < PrivacyBudgetTemplateUpdateParameters; end
7402
7623
  class Unknown < PrivacyBudgetTemplateUpdateParameters; end
7403
7624
  end
7404
7625
 
@@ -8532,6 +8753,10 @@ module Aws::CleanRooms
8532
8753
  # present.
8533
8754
  # @return [Array<Types::SchemaStatusDetail>]
8534
8755
  #
8756
+ # @!attribute [rw] resource_arn
8757
+ # The Amazon Resource Name (ARN) of the schema resource.
8758
+ # @return [String]
8759
+ #
8535
8760
  # @!attribute [rw] schema_type_properties
8536
8761
  # The schema type properties.
8537
8762
  # @return [Types::SchemaTypeProperties]
@@ -8553,6 +8778,7 @@ module Aws::CleanRooms
8553
8778
  :update_time,
8554
8779
  :type,
8555
8780
  :schema_status_details,
8781
+ :resource_arn,
8556
8782
  :schema_type_properties)
8557
8783
  SENSITIVE = []
8558
8784
  include Aws::Structure
@@ -8689,6 +8915,10 @@ module Aws::CleanRooms
8689
8915
  # directly on this table.
8690
8916
  # @return [String]
8691
8917
  #
8918
+ # @!attribute [rw] resource_arn
8919
+ # The Amazon Resource Name (ARN) of the schema summary resource.
8920
+ # @return [String]
8921
+ #
8692
8922
  # @!attribute [rw] selected_analysis_methods
8693
8923
  # The selected analysis methods for the schema.
8694
8924
  # @return [Array<String>]
@@ -8705,6 +8935,7 @@ module Aws::CleanRooms
8705
8935
  :collaboration_arn,
8706
8936
  :analysis_rule_types,
8707
8937
  :analysis_method,
8938
+ :resource_arn,
8708
8939
  :selected_analysis_methods)
8709
8940
  SENSITIVE = []
8710
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.55.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
 
@@ -1500,11 +1512,20 @@ module Aws
1500
1512
  def update_privacy_budget_template: (
1501
1513
  membership_identifier: ::String,
1502
1514
  privacy_budget_template_identifier: ::String,
1503
- privacy_budget_type: ("DIFFERENTIAL_PRIVACY"),
1515
+ privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET"),
1504
1516
  ?parameters: {
1505
1517
  differential_privacy: {
1506
1518
  epsilon: ::Integer?,
1507
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
+ ]
1508
1529
  }?
1509
1530
  }
1510
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
 
@@ -1978,11 +2021,14 @@ module Aws::CleanRooms
1978
2021
 
1979
2022
  class PrivacyBudget
1980
2023
  attr_accessor differential_privacy: Types::DifferentialPrivacyPrivacyBudget
2024
+ attr_accessor access_budget: Types::AccessBudget
1981
2025
  attr_accessor unknown: untyped
1982
2026
  SENSITIVE: []
1983
2027
 
1984
2028
  class DifferentialPrivacy < PrivacyBudget
1985
2029
  end
2030
+ class AccessBudget < PrivacyBudget
2031
+ end
1986
2032
  class Unknown < PrivacyBudget
1987
2033
  end
1988
2034
  end
@@ -1995,7 +2041,7 @@ module Aws::CleanRooms
1995
2041
  attr_accessor membership_arn: ::String
1996
2042
  attr_accessor collaboration_id: ::String
1997
2043
  attr_accessor collaboration_arn: ::String
1998
- attr_accessor type: ("DIFFERENTIAL_PRIVACY")
2044
+ attr_accessor type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
1999
2045
  attr_accessor create_time: ::Time
2000
2046
  attr_accessor update_time: ::Time
2001
2047
  attr_accessor budget: Types::PrivacyBudget
@@ -2011,7 +2057,7 @@ module Aws::CleanRooms
2011
2057
  attr_accessor collaboration_arn: ::String
2012
2058
  attr_accessor create_time: ::Time
2013
2059
  attr_accessor update_time: ::Time
2014
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
2060
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
2015
2061
  attr_accessor auto_refresh: ("CALENDAR_MONTH" | "NONE")
2016
2062
  attr_accessor parameters: Types::PrivacyBudgetTemplateParametersOutput
2017
2063
  SENSITIVE: []
@@ -2019,22 +2065,28 @@ module Aws::CleanRooms
2019
2065
 
2020
2066
  class PrivacyBudgetTemplateParametersInput
2021
2067
  attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateParametersInput
2068
+ attr_accessor access_budget: Types::AccessBudgetsPrivacyTemplateParametersInput
2022
2069
  attr_accessor unknown: untyped
2023
2070
  SENSITIVE: []
2024
2071
 
2025
2072
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersInput
2026
2073
  end
2074
+ class AccessBudget < PrivacyBudgetTemplateParametersInput
2075
+ end
2027
2076
  class Unknown < PrivacyBudgetTemplateParametersInput
2028
2077
  end
2029
2078
  end
2030
2079
 
2031
2080
  class PrivacyBudgetTemplateParametersOutput
2032
2081
  attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateParametersOutput
2082
+ attr_accessor access_budget: Types::AccessBudgetsPrivacyTemplateParametersOutput
2033
2083
  attr_accessor unknown: untyped
2034
2084
  SENSITIVE: []
2035
2085
 
2036
2086
  class DifferentialPrivacy < PrivacyBudgetTemplateParametersOutput
2037
2087
  end
2088
+ class AccessBudget < PrivacyBudgetTemplateParametersOutput
2089
+ end
2038
2090
  class Unknown < PrivacyBudgetTemplateParametersOutput
2039
2091
  end
2040
2092
  end
@@ -2046,7 +2098,7 @@ module Aws::CleanRooms
2046
2098
  attr_accessor membership_arn: ::String
2047
2099
  attr_accessor collaboration_id: ::String
2048
2100
  attr_accessor collaboration_arn: ::String
2049
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
2101
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
2050
2102
  attr_accessor create_time: ::Time
2051
2103
  attr_accessor update_time: ::Time
2052
2104
  SENSITIVE: []
@@ -2054,11 +2106,14 @@ module Aws::CleanRooms
2054
2106
 
2055
2107
  class PrivacyBudgetTemplateUpdateParameters
2056
2108
  attr_accessor differential_privacy: Types::DifferentialPrivacyTemplateUpdateParameters
2109
+ attr_accessor access_budget: Types::AccessBudgetsPrivacyTemplateUpdateParameters
2057
2110
  attr_accessor unknown: untyped
2058
2111
  SENSITIVE: []
2059
2112
 
2060
2113
  class DifferentialPrivacy < PrivacyBudgetTemplateUpdateParameters
2061
2114
  end
2115
+ class AccessBudget < PrivacyBudgetTemplateUpdateParameters
2116
+ end
2062
2117
  class Unknown < PrivacyBudgetTemplateUpdateParameters
2063
2118
  end
2064
2119
  end
@@ -2433,6 +2488,7 @@ module Aws::CleanRooms
2433
2488
  attr_accessor update_time: ::Time
2434
2489
  attr_accessor type: ("TABLE" | "ID_MAPPING_TABLE")
2435
2490
  attr_accessor schema_status_details: ::Array[Types::SchemaStatusDetail]
2491
+ attr_accessor resource_arn: ::String
2436
2492
  attr_accessor schema_type_properties: Types::SchemaTypeProperties
2437
2493
  SENSITIVE: []
2438
2494
  end
@@ -2468,6 +2524,7 @@ module Aws::CleanRooms
2468
2524
  attr_accessor collaboration_arn: ::String
2469
2525
  attr_accessor analysis_rule_types: ::Array[("AGGREGATION" | "LIST" | "CUSTOM" | "ID_MAPPING_TABLE")]
2470
2526
  attr_accessor analysis_method: ("DIRECT_QUERY" | "DIRECT_JOB" | "MULTIPLE")
2527
+ attr_accessor resource_arn: ::String
2471
2528
  attr_accessor selected_analysis_methods: ::Array[("DIRECT_QUERY" | "DIRECT_JOB")]
2472
2529
  SENSITIVE: []
2473
2530
  end
@@ -2721,7 +2778,7 @@ module Aws::CleanRooms
2721
2778
  class UpdatePrivacyBudgetTemplateInput
2722
2779
  attr_accessor membership_identifier: ::String
2723
2780
  attr_accessor privacy_budget_template_identifier: ::String
2724
- attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY")
2781
+ attr_accessor privacy_budget_type: ("DIFFERENTIAL_PRIVACY" | "ACCESS_BUDGET")
2725
2782
  attr_accessor parameters: Types::PrivacyBudgetTemplateUpdateParameters
2726
2783
  SENSITIVE: []
2727
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.55.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services