aws-sdk-cleanrooms 1.62.0 → 1.63.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: d18f8c3352d8412740eb7586bfc6f22b1e09bcdf7f5aa331bccdb76814eedbcc
4
- data.tar.gz: 2f264e7009e65042eef388cead5c5bf2914191f625b2aedd6937a1c640811076
3
+ metadata.gz: 7122dd92a628852fc53a33bf0f01c5af0309d96e72f79aebc7b49ea374e4713d
4
+ data.tar.gz: 63525fe29fb78515309c0a7933d638da6ce200f80fe79e4f89d32a1f3475cb67
5
5
  SHA512:
6
- metadata.gz: a3c91da87c4a7b3208f7eb2ef1bea7a4f2b62014dd6683fdd8d377d827d6abc5979ad381c2e421d42db8c026491cd8e4978dde9fdc585041c25ec5827088fc54
7
- data.tar.gz: d8f7a1294f7639ef6c78786a6a83988a6675c0765274e62bd2a0b5abaa9e4a1966bb681bedf6a933d1c02f4234dbef377ce10f0e98c978470dba0d1364ce9da0
6
+ metadata.gz: a1d06aba213e03a2ee204383b854bffaa395a099f5b65c0771c7ecfb42d1b73b76088abf562e6267eda64d3bbef69a6af9245a37118fbfcdf650fcd8375ba060
7
+ data.tar.gz: 0b5a881df1c39cf034e2047e347683ce9701414fcc6581fa3fb490bf1bdedb738eb79754e03a0594bbebf8f9a4e18d11edc3ef327e40ba5e897bd3479c465014
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2026-01-02)
5
+ ------------------
6
+
7
+ * Feature - Added support for publishing detailed metrics to CloudWatch for operational monitoring of collaborations, including query performance and resource utilization.
8
+
4
9
  1.62.0 (2025-12-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -1002,6 +1002,13 @@ module Aws::CleanRooms
1002
1002
  # governance requirements, and implement regional data governance
1003
1003
  # policies.
1004
1004
  #
1005
+ # @option params [Boolean] :is_metrics_enabled
1006
+ # An indicator as to whether metrics have been enabled or disabled for
1007
+ # the collaboration.
1008
+ #
1009
+ # When `true`, collaboration members can opt in to Amazon CloudWatch
1010
+ # metrics for their membership queries. The default value is `false`.
1011
+ #
1005
1012
  # @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1006
1013
  #
1007
1014
  # * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -1078,6 +1085,7 @@ module Aws::CleanRooms
1078
1085
  # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
1079
1086
  # auto_approved_change_request_types: ["ADD_MEMBER"], # accepts ADD_MEMBER, GRANT_RECEIVE_RESULTS_ABILITY, REVOKE_RECEIVE_RESULTS_ABILITY
1080
1087
  # allowed_result_regions: ["us-west-1"], # accepts us-west-1, us-west-2, us-east-1, us-east-2, af-south-1, ap-east-1, ap-east-2, ap-south-2, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-southeast-5, ap-southeast-4, ap-southeast-7, ap-south-1, ap-northeast-3, ap-northeast-1, ap-northeast-2, ca-central-1, ca-west-1, eu-south-1, eu-west-3, eu-south-2, eu-central-2, eu-central-1, eu-north-1, eu-west-1, eu-west-2, me-south-1, me-central-1, il-central-1, sa-east-1, mx-central-1
1088
+ # is_metrics_enabled: false,
1081
1089
  # })
1082
1090
  #
1083
1091
  # @example Response structure
@@ -1104,6 +1112,7 @@ module Aws::CleanRooms
1104
1112
  # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
1105
1113
  # resp.collaboration.allowed_result_regions #=> Array
1106
1114
  # resp.collaboration.allowed_result_regions[0] #=> String, one of "us-west-1", "us-west-2", "us-east-1", "us-east-2", "af-south-1", "ap-east-1", "ap-east-2", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-5", "ap-southeast-4", "ap-southeast-7", "ap-south-1", "ap-northeast-3", "ap-northeast-1", "ap-northeast-2", "ca-central-1", "ca-west-1", "eu-south-1", "eu-west-3", "eu-south-2", "eu-central-2", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "me-south-1", "me-central-1", "il-central-1", "sa-east-1", "mx-central-1"
1115
+ # resp.collaboration.is_metrics_enabled #=> Boolean
1107
1116
  #
1108
1117
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaboration AWS API Documentation
1109
1118
  #
@@ -1844,6 +1853,18 @@ module Aws::CleanRooms
1844
1853
  # to run queries but is configured as a payer by the collaboration
1845
1854
  # creator.
1846
1855
  #
1856
+ # @option params [Boolean] :is_metrics_enabled
1857
+ # An indicator as to whether Amazon CloudWatch metrics have been enabled
1858
+ # or disabled for the membership.
1859
+ #
1860
+ # Amazon CloudWatch metrics are only available when the collaboration
1861
+ # has metrics enabled. This option can be set by collaboration members
1862
+ # who have the ability to run queries (analysis runners) or by members
1863
+ # who are configured as payers.
1864
+ #
1865
+ # When `true`, metrics about query execution are collected in Amazon
1866
+ # CloudWatch. The default value is `false`.
1867
+ #
1847
1868
  # @return [Types::CreateMembershipOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1848
1869
  #
1849
1870
  # * {Types::CreateMembershipOutput#membership #membership} => Types::Membership
@@ -1896,6 +1917,7 @@ module Aws::CleanRooms
1896
1917
  # is_responsible: false, # required
1897
1918
  # },
1898
1919
  # },
1920
+ # is_metrics_enabled: false,
1899
1921
  # })
1900
1922
  #
1901
1923
  # @example Response structure
@@ -1929,6 +1951,7 @@ module Aws::CleanRooms
1929
1951
  # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
1930
1952
  # resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
1931
1953
  # resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
1954
+ # resp.membership.is_metrics_enabled #=> Boolean
1932
1955
  #
1933
1956
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
1934
1957
  #
@@ -2464,6 +2487,7 @@ module Aws::CleanRooms
2464
2487
  # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
2465
2488
  # resp.collaboration.allowed_result_regions #=> Array
2466
2489
  # resp.collaboration.allowed_result_regions[0] #=> String, one of "us-west-1", "us-west-2", "us-east-1", "us-east-2", "af-south-1", "ap-east-1", "ap-east-2", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-5", "ap-southeast-4", "ap-southeast-7", "ap-south-1", "ap-northeast-3", "ap-northeast-1", "ap-northeast-2", "ca-central-1", "ca-west-1", "eu-south-1", "eu-west-3", "eu-south-2", "eu-central-2", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "me-south-1", "me-central-1", "il-central-1", "sa-east-1", "mx-central-1"
2490
+ # resp.collaboration.is_metrics_enabled #=> Boolean
2467
2491
  #
2468
2492
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaboration AWS API Documentation
2469
2493
  #
@@ -3152,6 +3176,7 @@ module Aws::CleanRooms
3152
3176
  # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
3153
3177
  # resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
3154
3178
  # resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
3179
+ # resp.membership.is_metrics_enabled #=> Boolean
3155
3180
  #
3156
3181
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
3157
3182
  #
@@ -5220,6 +5245,7 @@ module Aws::CleanRooms
5220
5245
  # resp.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
5221
5246
  # resp.collaboration.allowed_result_regions #=> Array
5222
5247
  # resp.collaboration.allowed_result_regions[0] #=> String, one of "us-west-1", "us-west-2", "us-east-1", "us-east-2", "af-south-1", "ap-east-1", "ap-east-2", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-5", "ap-southeast-4", "ap-southeast-7", "ap-south-1", "ap-northeast-3", "ap-northeast-1", "ap-northeast-2", "ca-central-1", "ca-west-1", "eu-south-1", "eu-west-3", "eu-south-2", "eu-central-2", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "me-south-1", "me-central-1", "il-central-1", "sa-east-1", "mx-central-1"
5248
+ # resp.collaboration.is_metrics_enabled #=> Boolean
5223
5249
  #
5224
5250
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaboration AWS API Documentation
5225
5251
  #
@@ -5926,6 +5952,7 @@ module Aws::CleanRooms
5926
5952
  # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
5927
5953
  # resp.membership.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
5928
5954
  # resp.membership.payment_configuration.job_compute.is_responsible #=> Boolean
5955
+ # resp.membership.is_metrics_enabled #=> Boolean
5929
5956
  #
5930
5957
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
5931
5958
  #
@@ -6158,7 +6185,7 @@ module Aws::CleanRooms
6158
6185
  tracer: tracer
6159
6186
  )
6160
6187
  context[:gem_name] = 'aws-sdk-cleanrooms'
6161
- context[:gem_version] = '1.62.0'
6188
+ context[:gem_version] = '1.63.0'
6162
6189
  Seahorse::Client::Request.new(handlers, context)
6163
6190
  end
6164
6191
 
@@ -960,6 +960,7 @@ module Aws::CleanRooms
960
960
  Collaboration.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
961
961
  Collaboration.add_member(:auto_approved_change_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeTypes"))
962
962
  Collaboration.add_member(:allowed_result_regions, Shapes::ShapeRef.new(shape: AllowedResultRegions, location_name: "allowedResultRegions"))
963
+ Collaboration.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
963
964
  Collaboration.struct_class = Types::Collaboration
964
965
 
965
966
  CollaborationAnalysisTemplate.add_member(:id, Shapes::ShapeRef.new(shape: AnalysisTemplateIdentifier, required: true, location_name: "id"))
@@ -1393,6 +1394,7 @@ module Aws::CleanRooms
1393
1394
  CreateCollaborationInput.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
1394
1395
  CreateCollaborationInput.add_member(:auto_approved_change_request_types, Shapes::ShapeRef.new(shape: AutoApprovedChangeTypeList, location_name: "autoApprovedChangeRequestTypes"))
1395
1396
  CreateCollaborationInput.add_member(:allowed_result_regions, Shapes::ShapeRef.new(shape: AllowedResultRegions, location_name: "allowedResultRegions"))
1397
+ CreateCollaborationInput.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
1396
1398
  CreateCollaborationInput.struct_class = Types::CreateCollaborationInput
1397
1399
 
1398
1400
  CreateCollaborationOutput.add_member(:collaboration, Shapes::ShapeRef.new(shape: Collaboration, required: true, location_name: "collaboration"))
@@ -1478,6 +1480,7 @@ module Aws::CleanRooms
1478
1480
  CreateMembershipInput.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
1479
1481
  CreateMembershipInput.add_member(:default_job_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedJobResultConfiguration, location_name: "defaultJobResultConfiguration"))
1480
1482
  CreateMembershipInput.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, location_name: "paymentConfiguration"))
1483
+ CreateMembershipInput.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
1481
1484
  CreateMembershipInput.struct_class = Types::CreateMembershipInput
1482
1485
 
1483
1486
  CreateMembershipOutput.add_member(:membership, Shapes::ShapeRef.new(shape: Membership, required: true, location_name: "membership"))
@@ -2136,6 +2139,7 @@ module Aws::CleanRooms
2136
2139
  Membership.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
2137
2140
  Membership.add_member(:default_job_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedJobResultConfiguration, location_name: "defaultJobResultConfiguration"))
2138
2141
  Membership.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, required: true, location_name: "paymentConfiguration"))
2142
+ Membership.add_member(:is_metrics_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "isMetricsEnabled"))
2139
2143
  Membership.struct_class = Types::Membership
2140
2144
 
2141
2145
  MembershipJobComputePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
@@ -1364,6 +1364,14 @@ module Aws::CleanRooms
1364
1364
  # enforce regional storage policies and compliance requirements.
1365
1365
  # @return [Array<String>]
1366
1366
  #
1367
+ # @!attribute [rw] is_metrics_enabled
1368
+ # An indicator as to whether metrics are enabled for the
1369
+ # collaboration.
1370
+ #
1371
+ # When `true`, collaboration members can opt in to Amazon CloudWatch
1372
+ # metrics for their membership queries.
1373
+ # @return [Boolean]
1374
+ #
1367
1375
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Collaboration AWS API Documentation
1368
1376
  #
1369
1377
  class Collaboration < Struct.new(
@@ -1383,7 +1391,8 @@ module Aws::CleanRooms
1383
1391
  :job_log_status,
1384
1392
  :analytics_engine,
1385
1393
  :auto_approved_change_types,
1386
- :allowed_result_regions)
1394
+ :allowed_result_regions,
1395
+ :is_metrics_enabled)
1387
1396
  SENSITIVE = []
1388
1397
  include Aws::Structure
1389
1398
  end
@@ -3437,6 +3446,14 @@ module Aws::CleanRooms
3437
3446
  # policies.
3438
3447
  # @return [Array<String>]
3439
3448
  #
3449
+ # @!attribute [rw] is_metrics_enabled
3450
+ # An indicator as to whether metrics have been enabled or disabled for
3451
+ # the collaboration.
3452
+ #
3453
+ # When `true`, collaboration members can opt in to Amazon CloudWatch
3454
+ # metrics for their membership queries. The default value is `false`.
3455
+ # @return [Boolean]
3456
+ #
3440
3457
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
3441
3458
  #
3442
3459
  class CreateCollaborationInput < Struct.new(
@@ -3453,7 +3470,8 @@ module Aws::CleanRooms
3453
3470
  :creator_payment_configuration,
3454
3471
  :analytics_engine,
3455
3472
  :auto_approved_change_request_types,
3456
- :allowed_result_regions)
3473
+ :allowed_result_regions,
3474
+ :is_metrics_enabled)
3457
3475
  SENSITIVE = []
3458
3476
  include Aws::Structure
3459
3477
  end
@@ -3899,6 +3917,19 @@ module Aws::CleanRooms
3899
3917
  # collaboration creator.
3900
3918
  # @return [Types::MembershipPaymentConfiguration]
3901
3919
  #
3920
+ # @!attribute [rw] is_metrics_enabled
3921
+ # An indicator as to whether Amazon CloudWatch metrics have been
3922
+ # enabled or disabled for the membership.
3923
+ #
3924
+ # Amazon CloudWatch metrics are only available when the collaboration
3925
+ # has metrics enabled. This option can be set by collaboration members
3926
+ # who have the ability to run queries (analysis runners) or by members
3927
+ # who are configured as payers.
3928
+ #
3929
+ # When `true`, metrics about query execution are collected in Amazon
3930
+ # CloudWatch. The default value is `false`.
3931
+ # @return [Boolean]
3932
+ #
3902
3933
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembershipInput AWS API Documentation
3903
3934
  #
3904
3935
  class CreateMembershipInput < Struct.new(
@@ -3908,7 +3939,8 @@ module Aws::CleanRooms
3908
3939
  :tags,
3909
3940
  :default_result_configuration,
3910
3941
  :default_job_result_configuration,
3911
- :payment_configuration)
3942
+ :payment_configuration,
3943
+ :is_metrics_enabled)
3912
3944
  SENSITIVE = []
3913
3945
  include Aws::Structure
3914
3946
  end
@@ -6925,6 +6957,14 @@ module Aws::CleanRooms
6925
6957
  # The payment responsibilities accepted by the collaboration member.
6926
6958
  # @return [Types::MembershipPaymentConfiguration]
6927
6959
  #
6960
+ # @!attribute [rw] is_metrics_enabled
6961
+ # An indicator as to whether Amazon CloudWatch metrics are enabled for
6962
+ # the membership.
6963
+ #
6964
+ # When `true`, metrics about query execution are collected in Amazon
6965
+ # CloudWatch.
6966
+ # @return [Boolean]
6967
+ #
6928
6968
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Membership AWS API Documentation
6929
6969
  #
6930
6970
  class Membership < Struct.new(
@@ -6944,7 +6984,8 @@ module Aws::CleanRooms
6944
6984
  :job_log_status,
6945
6985
  :default_result_configuration,
6946
6986
  :default_job_result_configuration,
6947
- :payment_configuration)
6987
+ :payment_configuration,
6988
+ :is_metrics_enabled)
6948
6989
  SENSITIVE = []
6949
6990
  include Aws::Structure
6950
6991
  end
@@ -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.62.0'
58
+ GEM_VERSION = '1.63.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -253,7 +253,8 @@ module Aws
253
253
  },
254
254
  ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL"),
255
255
  ?auto_approved_change_request_types: Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")],
256
- ?allowed_result_regions: Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
256
+ ?allowed_result_regions: Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")],
257
+ ?is_metrics_enabled: bool
257
258
  ) -> _CreateCollaborationResponseSuccess
258
259
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCollaborationResponseSuccess
259
260
 
@@ -525,7 +526,8 @@ module Aws
525
526
  job_compute: {
526
527
  is_responsible: bool
527
528
  }?
528
- }
529
+ },
530
+ ?is_metrics_enabled: bool
529
531
  ) -> _CreateMembershipResponseSuccess
530
532
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMembershipResponseSuccess
531
533
 
data/sig/types.rbs CHANGED
@@ -378,6 +378,7 @@ module Aws::CleanRooms
378
378
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
379
379
  attr_accessor auto_approved_change_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
380
380
  attr_accessor allowed_result_regions: ::Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
381
+ attr_accessor is_metrics_enabled: bool
381
382
  SENSITIVE: []
382
383
  end
383
384
 
@@ -889,6 +890,7 @@ module Aws::CleanRooms
889
890
  attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
890
891
  attr_accessor auto_approved_change_request_types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY")]
891
892
  attr_accessor allowed_result_regions: ::Array[("us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1")]
893
+ attr_accessor is_metrics_enabled: bool
892
894
  SENSITIVE: []
893
895
  end
894
896
 
@@ -1006,6 +1008,7 @@ module Aws::CleanRooms
1006
1008
  attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
1007
1009
  attr_accessor default_job_result_configuration: Types::MembershipProtectedJobResultConfiguration
1008
1010
  attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
1011
+ attr_accessor is_metrics_enabled: bool
1009
1012
  SENSITIVE: []
1010
1013
  end
1011
1014
 
@@ -1918,6 +1921,7 @@ module Aws::CleanRooms
1918
1921
  attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
1919
1922
  attr_accessor default_job_result_configuration: Types::MembershipProtectedJobResultConfiguration
1920
1923
  attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
1924
+ attr_accessor is_metrics_enabled: bool
1921
1925
  SENSITIVE: []
1922
1926
  end
1923
1927
 
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.62.0
4
+ version: 1.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services