aws-sdk-cleanrooms 1.41.0 → 1.43.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: c9a1809a9fa3c0a2614d659130cae199d13c29cce9c38fffca77935e30b96265
4
- data.tar.gz: 9c4734b2d03fa3bd65237f6f989f3e63ea0a46f5611c66ae61b927e966ce50ae
3
+ metadata.gz: 2ff3cee583ef3c46c9bcc4bcdd8ad46e5ae57c2bc026a5c332d1354b97ab54e1
4
+ data.tar.gz: b7aea98ed03bfe0723f7bac87b494f9ccd1ce909978e5c852ba9a2847073ea5a
5
5
  SHA512:
6
- metadata.gz: 0e5b71ddbd9c2a08a6786132d0d8b6a0d16b3c071e94ff45bad3a35e2ca1a9d6328960c06ac7015580e9852c3b50c6d58c67e146662b10643e6b5c397159878b
7
- data.tar.gz: b95a251a2f72950c306b09e0596480d27a78447dfeb89689b594615b5f860dd228f7d7cd95e6bc56f4495bfc59f58b926bb73dc4cce5b0a2702ea7cbceed820c
6
+ metadata.gz: c21f839a8ede3e9b60f663019b7e98c9c8da9c995871257845afd1e59f1dc95da54ca7ce81fc508c8756e654cb841426f5f4f77a3f97cd4e7bcd32c7a9b3a266
7
+ data.tar.gz: 33ddd7ffa7eff88e171b747007eb3f633baabf5ee615fb34786394c263f2ce962a11c7846de735ec8ebd871234f1dcbac2f3620c67ff076b3e27082c004e625f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2025-04-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for ProtectedQuery results to be delivered to more than one collaboration member via the new distribute output configuration in StartProtectedQuery.
8
+
9
+ 1.42.0 (2025-04-01)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for updating the analytics engine of a collaboration.
13
+
4
14
  1.41.0 (2025-03-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.43.0
@@ -3044,11 +3044,20 @@ module Aws::CleanRooms
3044
3044
  # resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
3045
3045
  # resp.protected_query.result_configuration.output_configuration.s3.single_file_output #=> Boolean
3046
3046
  # resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
3047
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations #=> Array
3048
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.result_format #=> String, one of "CSV", "PARQUET"
3049
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.bucket #=> String
3050
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.key_prefix #=> String
3051
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.single_file_output #=> Boolean
3052
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].member.account_id #=> String
3047
3053
  # resp.protected_query.statistics.total_duration_in_millis #=> Integer
3048
3054
  # resp.protected_query.statistics.billed_resource_utilization.units #=> Float
3049
3055
  # resp.protected_query.result.output.s3.location #=> String
3050
3056
  # resp.protected_query.result.output.member_list #=> Array
3051
3057
  # resp.protected_query.result.output.member_list[0].account_id #=> String
3058
+ # resp.protected_query.result.output.distribute.s3.location #=> String
3059
+ # resp.protected_query.result.output.distribute.member_list #=> Array
3060
+ # resp.protected_query.result.output.distribute.member_list[0].account_id #=> String
3052
3061
  # resp.protected_query.error.message #=> String
3053
3062
  # resp.protected_query.error.code #=> String
3054
3063
  # resp.protected_query.differential_privacy.sensitivity_parameters #=> Array
@@ -4554,6 +4563,21 @@ module Aws::CleanRooms
4554
4563
  # member: {
4555
4564
  # account_id: "AccountId", # required
4556
4565
  # },
4566
+ # distribute: {
4567
+ # locations: [ # required
4568
+ # {
4569
+ # s3: {
4570
+ # result_format: "CSV", # required, accepts CSV, PARQUET
4571
+ # bucket: "ProtectedQueryS3OutputConfigurationBucketString", # required
4572
+ # key_prefix: "KeyPrefix",
4573
+ # single_file_output: false,
4574
+ # },
4575
+ # member: {
4576
+ # account_id: "AccountId", # required
4577
+ # },
4578
+ # },
4579
+ # ],
4580
+ # },
4557
4581
  # },
4558
4582
  # },
4559
4583
  # compute_configuration: {
@@ -4580,11 +4604,20 @@ module Aws::CleanRooms
4580
4604
  # resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
4581
4605
  # resp.protected_query.result_configuration.output_configuration.s3.single_file_output #=> Boolean
4582
4606
  # resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
4607
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations #=> Array
4608
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.result_format #=> String, one of "CSV", "PARQUET"
4609
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.bucket #=> String
4610
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.key_prefix #=> String
4611
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.single_file_output #=> Boolean
4612
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].member.account_id #=> String
4583
4613
  # resp.protected_query.statistics.total_duration_in_millis #=> Integer
4584
4614
  # resp.protected_query.statistics.billed_resource_utilization.units #=> Float
4585
4615
  # resp.protected_query.result.output.s3.location #=> String
4586
4616
  # resp.protected_query.result.output.member_list #=> Array
4587
4617
  # resp.protected_query.result.output.member_list[0].account_id #=> String
4618
+ # resp.protected_query.result.output.distribute.s3.location #=> String
4619
+ # resp.protected_query.result.output.distribute.member_list #=> Array
4620
+ # resp.protected_query.result.output.distribute.member_list[0].account_id #=> String
4588
4621
  # resp.protected_query.error.message #=> String
4589
4622
  # resp.protected_query.error.code #=> String
4590
4623
  # resp.protected_query.differential_privacy.sensitivity_parameters #=> Array
@@ -4741,6 +4774,9 @@ module Aws::CleanRooms
4741
4774
  # @option params [String] :description
4742
4775
  # A description of the collaboration.
4743
4776
  #
4777
+ # @option params [String] :analytics_engine
4778
+ # The analytics engine.
4779
+ #
4744
4780
  # @return [Types::UpdateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4745
4781
  #
4746
4782
  # * {Types::UpdateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -4751,6 +4787,7 @@ module Aws::CleanRooms
4751
4787
  # collaboration_identifier: "CollaborationIdentifier", # required
4752
4788
  # name: "CollaborationName",
4753
4789
  # description: "CollaborationDescription",
4790
+ # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
4754
4791
  # })
4755
4792
  #
4756
4793
  # @example Response structure
@@ -5534,11 +5571,20 @@ module Aws::CleanRooms
5534
5571
  # resp.protected_query.result_configuration.output_configuration.s3.key_prefix #=> String
5535
5572
  # resp.protected_query.result_configuration.output_configuration.s3.single_file_output #=> Boolean
5536
5573
  # resp.protected_query.result_configuration.output_configuration.member.account_id #=> String
5574
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations #=> Array
5575
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.result_format #=> String, one of "CSV", "PARQUET"
5576
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.bucket #=> String
5577
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.key_prefix #=> String
5578
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].s3.single_file_output #=> Boolean
5579
+ # resp.protected_query.result_configuration.output_configuration.distribute.locations[0].member.account_id #=> String
5537
5580
  # resp.protected_query.statistics.total_duration_in_millis #=> Integer
5538
5581
  # resp.protected_query.statistics.billed_resource_utilization.units #=> Float
5539
5582
  # resp.protected_query.result.output.s3.location #=> String
5540
5583
  # resp.protected_query.result.output.member_list #=> Array
5541
5584
  # resp.protected_query.result.output.member_list[0].account_id #=> String
5585
+ # resp.protected_query.result.output.distribute.s3.location #=> String
5586
+ # resp.protected_query.result.output.distribute.member_list #=> Array
5587
+ # resp.protected_query.result.output.distribute.member_list[0].account_id #=> String
5542
5588
  # resp.protected_query.error.message #=> String
5543
5589
  # resp.protected_query.error.code #=> String
5544
5590
  # resp.protected_query.differential_privacy.sensitivity_parameters #=> Array
@@ -5577,7 +5623,7 @@ module Aws::CleanRooms
5577
5623
  tracer: tracer
5578
5624
  )
5579
5625
  context[:gem_name] = 'aws-sdk-cleanrooms'
5580
- context[:gem_version] = '1.41.0'
5626
+ context[:gem_version] = '1.43.0'
5581
5627
  Seahorse::Client::Request.new(handlers, context)
5582
5628
  end
5583
5629
 
@@ -442,6 +442,10 @@ module Aws::CleanRooms
442
442
  ProtectedJobSummaryList = Shapes::ListShape.new(name: 'ProtectedJobSummaryList')
443
443
  ProtectedJobType = Shapes::StringShape.new(name: 'ProtectedJobType')
444
444
  ProtectedQuery = Shapes::StructureShape.new(name: 'ProtectedQuery')
445
+ ProtectedQueryDistributeOutput = Shapes::StructureShape.new(name: 'ProtectedQueryDistributeOutput')
446
+ ProtectedQueryDistributeOutputConfiguration = Shapes::StructureShape.new(name: 'ProtectedQueryDistributeOutputConfiguration')
447
+ ProtectedQueryDistributeOutputConfigurationLocation = Shapes::UnionShape.new(name: 'ProtectedQueryDistributeOutputConfigurationLocation')
448
+ ProtectedQueryDistributeOutputConfigurationLocationsList = Shapes::ListShape.new(name: 'ProtectedQueryDistributeOutputConfigurationLocationsList')
445
449
  ProtectedQueryError = Shapes::StructureShape.new(name: 'ProtectedQueryError')
446
450
  ProtectedQueryIdentifier = Shapes::StringShape.new(name: 'ProtectedQueryIdentifier')
447
451
  ProtectedQueryMemberOutputConfiguration = Shapes::StructureShape.new(name: 'ProtectedQueryMemberOutputConfiguration')
@@ -2196,6 +2200,23 @@ module Aws::CleanRooms
2196
2200
  ProtectedQuery.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ComputeConfiguration, location_name: "computeConfiguration"))
2197
2201
  ProtectedQuery.struct_class = Types::ProtectedQuery
2198
2202
 
2203
+ ProtectedQueryDistributeOutput.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3Output, location_name: "s3"))
2204
+ ProtectedQueryDistributeOutput.add_member(:member_list, Shapes::ShapeRef.new(shape: ProtectedQueryMemberOutputList, location_name: "memberList"))
2205
+ ProtectedQueryDistributeOutput.struct_class = Types::ProtectedQueryDistributeOutput
2206
+
2207
+ ProtectedQueryDistributeOutputConfiguration.add_member(:locations, Shapes::ShapeRef.new(shape: ProtectedQueryDistributeOutputConfigurationLocationsList, required: true, location_name: "locations"))
2208
+ ProtectedQueryDistributeOutputConfiguration.struct_class = Types::ProtectedQueryDistributeOutputConfiguration
2209
+
2210
+ ProtectedQueryDistributeOutputConfigurationLocation.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3OutputConfiguration, location_name: "s3"))
2211
+ ProtectedQueryDistributeOutputConfigurationLocation.add_member(:member, Shapes::ShapeRef.new(shape: ProtectedQueryMemberOutputConfiguration, location_name: "member"))
2212
+ ProtectedQueryDistributeOutputConfigurationLocation.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2213
+ ProtectedQueryDistributeOutputConfigurationLocation.add_member_subclass(:s3, Types::ProtectedQueryDistributeOutputConfigurationLocation::S3)
2214
+ ProtectedQueryDistributeOutputConfigurationLocation.add_member_subclass(:member, Types::ProtectedQueryDistributeOutputConfigurationLocation::Member)
2215
+ ProtectedQueryDistributeOutputConfigurationLocation.add_member_subclass(:unknown, Types::ProtectedQueryDistributeOutputConfigurationLocation::Unknown)
2216
+ ProtectedQueryDistributeOutputConfigurationLocation.struct_class = Types::ProtectedQueryDistributeOutputConfigurationLocation
2217
+
2218
+ ProtectedQueryDistributeOutputConfigurationLocationsList.member = Shapes::ShapeRef.new(shape: ProtectedQueryDistributeOutputConfigurationLocation)
2219
+
2199
2220
  ProtectedQueryError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
2200
2221
  ProtectedQueryError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
2201
2222
  ProtectedQueryError.struct_class = Types::ProtectedQueryError
@@ -2207,17 +2228,21 @@ module Aws::CleanRooms
2207
2228
 
2208
2229
  ProtectedQueryOutput.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3Output, location_name: "s3"))
2209
2230
  ProtectedQueryOutput.add_member(:member_list, Shapes::ShapeRef.new(shape: ProtectedQueryMemberOutputList, location_name: "memberList"))
2231
+ ProtectedQueryOutput.add_member(:distribute, Shapes::ShapeRef.new(shape: ProtectedQueryDistributeOutput, location_name: "distribute"))
2210
2232
  ProtectedQueryOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2211
2233
  ProtectedQueryOutput.add_member_subclass(:s3, Types::ProtectedQueryOutput::S3)
2212
2234
  ProtectedQueryOutput.add_member_subclass(:member_list, Types::ProtectedQueryOutput::MemberList)
2235
+ ProtectedQueryOutput.add_member_subclass(:distribute, Types::ProtectedQueryOutput::Distribute)
2213
2236
  ProtectedQueryOutput.add_member_subclass(:unknown, Types::ProtectedQueryOutput::Unknown)
2214
2237
  ProtectedQueryOutput.struct_class = Types::ProtectedQueryOutput
2215
2238
 
2216
2239
  ProtectedQueryOutputConfiguration.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3OutputConfiguration, location_name: "s3"))
2217
2240
  ProtectedQueryOutputConfiguration.add_member(:member, Shapes::ShapeRef.new(shape: ProtectedQueryMemberOutputConfiguration, location_name: "member"))
2241
+ ProtectedQueryOutputConfiguration.add_member(:distribute, Shapes::ShapeRef.new(shape: ProtectedQueryDistributeOutputConfiguration, location_name: "distribute"))
2218
2242
  ProtectedQueryOutputConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2219
2243
  ProtectedQueryOutputConfiguration.add_member_subclass(:s3, Types::ProtectedQueryOutputConfiguration::S3)
2220
2244
  ProtectedQueryOutputConfiguration.add_member_subclass(:member, Types::ProtectedQueryOutputConfiguration::Member)
2245
+ ProtectedQueryOutputConfiguration.add_member_subclass(:distribute, Types::ProtectedQueryOutputConfiguration::Distribute)
2221
2246
  ProtectedQueryOutputConfiguration.add_member_subclass(:unknown, Types::ProtectedQueryOutputConfiguration::Unknown)
2222
2247
  ProtectedQueryOutputConfiguration.struct_class = Types::ProtectedQueryOutputConfiguration
2223
2248
 
@@ -2446,6 +2471,7 @@ module Aws::CleanRooms
2446
2471
  UpdateCollaborationInput.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: CollaborationIdentifier, required: true, location: "uri", location_name: "collaborationIdentifier"))
2447
2472
  UpdateCollaborationInput.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, location_name: "name"))
2448
2473
  UpdateCollaborationInput.add_member(:description, Shapes::ShapeRef.new(shape: CollaborationDescription, location_name: "description"))
2474
+ UpdateCollaborationInput.add_member(:analytics_engine, Shapes::ShapeRef.new(shape: AnalyticsEngine, location_name: "analyticsEngine"))
2449
2475
  UpdateCollaborationInput.struct_class = Types::UpdateCollaborationInput
2450
2476
 
2451
2477
  UpdateCollaborationOutput.add_member(:collaboration, Shapes::ShapeRef.new(shape: Collaboration, required: true, location_name: "collaboration"))
@@ -7503,6 +7503,90 @@ module Aws::CleanRooms
7503
7503
  include Aws::Structure
7504
7504
  end
7505
7505
 
7506
+ # Contains the output information for a protected query with a
7507
+ # distribute output configuration.
7508
+ #
7509
+ # This output type allows query results to be distributed to multiple
7510
+ # receivers, including S3 and collaboration members. It is only
7511
+ # available for queries using the Spark analytics engine.
7512
+ #
7513
+ # @!attribute [rw] s3
7514
+ # Contains output information for protected queries with an S3 output
7515
+ # type.
7516
+ # @return [Types::ProtectedQueryS3Output]
7517
+ #
7518
+ # @!attribute [rw] member_list
7519
+ # Contains the output results for each member location specified in
7520
+ # the distribute output configuration. Each entry provides details
7521
+ # about the result distribution to a specific collaboration member.
7522
+ # @return [Array<Types::ProtectedQuerySingleMemberOutput>]
7523
+ #
7524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryDistributeOutput AWS API Documentation
7525
+ #
7526
+ class ProtectedQueryDistributeOutput < Struct.new(
7527
+ :s3,
7528
+ :member_list)
7529
+ SENSITIVE = []
7530
+ include Aws::Structure
7531
+ end
7532
+
7533
+ # Specifies the configuration for distributing protected query results
7534
+ # to multiple receivers, including S3 and collaboration members.
7535
+ #
7536
+ # @!attribute [rw] locations
7537
+ # A list of locations where you want to distribute the protected query
7538
+ # results. Each location must specify either an S3 destination or a
7539
+ # collaboration member destination.
7540
+ #
7541
+ # You can't specify more than one S3 location.
7542
+ #
7543
+ # You can't specify the query runner's account as a member
7544
+ # location.
7545
+ #
7546
+ # You must include either an S3 or member output configuration for
7547
+ # each location, but not both.
7548
+ # @return [Array<Types::ProtectedQueryDistributeOutputConfigurationLocation>]
7549
+ #
7550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryDistributeOutputConfiguration AWS API Documentation
7551
+ #
7552
+ class ProtectedQueryDistributeOutputConfiguration < Struct.new(
7553
+ :locations)
7554
+ SENSITIVE = []
7555
+ include Aws::Structure
7556
+ end
7557
+
7558
+ # Specifies where you'll distribute the results of your protected
7559
+ # query. You must configure either an S3 destination or a collaboration
7560
+ # member destination.
7561
+ #
7562
+ # @note ProtectedQueryDistributeOutputConfigurationLocation is a union - when making an API calls you must set exactly one of the members.
7563
+ #
7564
+ # @note ProtectedQueryDistributeOutputConfigurationLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryDistributeOutputConfigurationLocation corresponding to the set member.
7565
+ #
7566
+ # @!attribute [rw] s3
7567
+ # Contains the configuration to write the query results to S3.
7568
+ # @return [Types::ProtectedQueryS3OutputConfiguration]
7569
+ #
7570
+ # @!attribute [rw] member
7571
+ # Contains configuration details for the protected query member
7572
+ # output.
7573
+ # @return [Types::ProtectedQueryMemberOutputConfiguration]
7574
+ #
7575
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryDistributeOutputConfigurationLocation AWS API Documentation
7576
+ #
7577
+ class ProtectedQueryDistributeOutputConfigurationLocation < Struct.new(
7578
+ :s3,
7579
+ :member,
7580
+ :unknown)
7581
+ SENSITIVE = []
7582
+ include Aws::Structure
7583
+ include Aws::Structure::Union
7584
+
7585
+ class S3 < ProtectedQueryDistributeOutputConfigurationLocation; end
7586
+ class Member < ProtectedQueryDistributeOutputConfigurationLocation; end
7587
+ class Unknown < ProtectedQueryDistributeOutputConfigurationLocation; end
7588
+ end
7589
+
7506
7590
  # Details of errors thrown by the protected query.
7507
7591
  #
7508
7592
  # @!attribute [rw] message
@@ -7550,11 +7634,24 @@ module Aws::CleanRooms
7550
7634
  # results of the query.
7551
7635
  # @return [Array<Types::ProtectedQuerySingleMemberOutput>]
7552
7636
  #
7637
+ # @!attribute [rw] distribute
7638
+ # Contains output information for protected queries that use a
7639
+ # `distribute` output type. This output type lets you send query
7640
+ # results to multiple locations - either to S3 or to collaboration
7641
+ # members.
7642
+ #
7643
+ # <note markdown="1"> You can only use the `distribute` output type with the Spark
7644
+ # analytics engine.
7645
+ #
7646
+ # </note>
7647
+ # @return [Types::ProtectedQueryDistributeOutput]
7648
+ #
7553
7649
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryOutput AWS API Documentation
7554
7650
  #
7555
7651
  class ProtectedQueryOutput < Struct.new(
7556
7652
  :s3,
7557
7653
  :member_list,
7654
+ :distribute,
7558
7655
  :unknown)
7559
7656
  SENSITIVE = []
7560
7657
  include Aws::Structure
@@ -7562,6 +7659,7 @@ module Aws::CleanRooms
7562
7659
 
7563
7660
  class S3 < ProtectedQueryOutput; end
7564
7661
  class MemberList < ProtectedQueryOutput; end
7662
+ class Distribute < ProtectedQueryOutput; end
7565
7663
  class Unknown < ProtectedQueryOutput; end
7566
7664
  end
7567
7665
 
@@ -7581,11 +7679,17 @@ module Aws::CleanRooms
7581
7679
  # type.
7582
7680
  # @return [Types::ProtectedQueryMemberOutputConfiguration]
7583
7681
  #
7682
+ # @!attribute [rw] distribute
7683
+ # Required configuration for a protected query with a `distribute`
7684
+ # output type.
7685
+ # @return [Types::ProtectedQueryDistributeOutputConfiguration]
7686
+ #
7584
7687
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryOutputConfiguration AWS API Documentation
7585
7688
  #
7586
7689
  class ProtectedQueryOutputConfiguration < Struct.new(
7587
7690
  :s3,
7588
7691
  :member,
7692
+ :distribute,
7589
7693
  :unknown)
7590
7694
  SENSITIVE = []
7591
7695
  include Aws::Structure
@@ -7593,6 +7697,7 @@ module Aws::CleanRooms
7593
7697
 
7594
7698
  class S3 < ProtectedQueryOutputConfiguration; end
7595
7699
  class Member < ProtectedQueryOutputConfiguration; end
7700
+ class Distribute < ProtectedQueryOutputConfiguration; end
7596
7701
  class Unknown < ProtectedQueryOutputConfiguration; end
7597
7702
  end
7598
7703
 
@@ -8503,12 +8608,17 @@ module Aws::CleanRooms
8503
8608
  # A description of the collaboration.
8504
8609
  # @return [String]
8505
8610
  #
8611
+ # @!attribute [rw] analytics_engine
8612
+ # The analytics engine.
8613
+ # @return [String]
8614
+ #
8506
8615
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateCollaborationInput AWS API Documentation
8507
8616
  #
8508
8617
  class UpdateCollaborationInput < Struct.new(
8509
8618
  :collaboration_identifier,
8510
8619
  :name,
8511
- :description)
8620
+ :description,
8621
+ :analytics_engine)
8512
8622
  SENSITIVE = []
8513
8623
  include Aws::Structure
8514
8624
  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.41.0'
58
+ GEM_VERSION = '1.43.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1149,6 +1149,21 @@ module Aws
1149
1149
  }?,
1150
1150
  member: {
1151
1151
  account_id: ::String
1152
+ }?,
1153
+ distribute: {
1154
+ locations: Array[
1155
+ {
1156
+ s3: {
1157
+ result_format: ("CSV" | "PARQUET"),
1158
+ bucket: ::String,
1159
+ key_prefix: ::String?,
1160
+ single_file_output: bool?
1161
+ }?,
1162
+ member: {
1163
+ account_id: ::String
1164
+ }?
1165
+ },
1166
+ ]
1152
1167
  }?
1153
1168
  }
1154
1169
  },
@@ -1201,7 +1216,8 @@ module Aws
1201
1216
  def update_collaboration: (
1202
1217
  collaboration_identifier: ::String,
1203
1218
  ?name: ::String,
1204
- ?description: ::String
1219
+ ?description: ::String,
1220
+ ?analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
1205
1221
  ) -> _UpdateCollaborationResponseSuccess
1206
1222
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCollaborationResponseSuccess
1207
1223
 
data/sig/types.rbs CHANGED
@@ -2139,6 +2139,31 @@ module Aws::CleanRooms
2139
2139
  SENSITIVE: [:sql_parameters]
2140
2140
  end
2141
2141
 
2142
+ class ProtectedQueryDistributeOutput
2143
+ attr_accessor s3: Types::ProtectedQueryS3Output
2144
+ attr_accessor member_list: ::Array[Types::ProtectedQuerySingleMemberOutput]
2145
+ SENSITIVE: []
2146
+ end
2147
+
2148
+ class ProtectedQueryDistributeOutputConfiguration
2149
+ attr_accessor locations: ::Array[Types::ProtectedQueryDistributeOutputConfigurationLocation]
2150
+ SENSITIVE: []
2151
+ end
2152
+
2153
+ class ProtectedQueryDistributeOutputConfigurationLocation
2154
+ attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
2155
+ attr_accessor member: Types::ProtectedQueryMemberOutputConfiguration
2156
+ attr_accessor unknown: untyped
2157
+ SENSITIVE: []
2158
+
2159
+ class S3 < ProtectedQueryDistributeOutputConfigurationLocation
2160
+ end
2161
+ class Member < ProtectedQueryDistributeOutputConfigurationLocation
2162
+ end
2163
+ class Unknown < ProtectedQueryDistributeOutputConfigurationLocation
2164
+ end
2165
+ end
2166
+
2142
2167
  class ProtectedQueryError
2143
2168
  attr_accessor message: ::String
2144
2169
  attr_accessor code: ::String
@@ -2153,6 +2178,7 @@ module Aws::CleanRooms
2153
2178
  class ProtectedQueryOutput
2154
2179
  attr_accessor s3: Types::ProtectedQueryS3Output
2155
2180
  attr_accessor member_list: ::Array[Types::ProtectedQuerySingleMemberOutput]
2181
+ attr_accessor distribute: Types::ProtectedQueryDistributeOutput
2156
2182
  attr_accessor unknown: untyped
2157
2183
  SENSITIVE: []
2158
2184
 
@@ -2160,6 +2186,8 @@ module Aws::CleanRooms
2160
2186
  end
2161
2187
  class MemberList < ProtectedQueryOutput
2162
2188
  end
2189
+ class Distribute < ProtectedQueryOutput
2190
+ end
2163
2191
  class Unknown < ProtectedQueryOutput
2164
2192
  end
2165
2193
  end
@@ -2167,6 +2195,7 @@ module Aws::CleanRooms
2167
2195
  class ProtectedQueryOutputConfiguration
2168
2196
  attr_accessor s3: Types::ProtectedQueryS3OutputConfiguration
2169
2197
  attr_accessor member: Types::ProtectedQueryMemberOutputConfiguration
2198
+ attr_accessor distribute: Types::ProtectedQueryDistributeOutputConfiguration
2170
2199
  attr_accessor unknown: untyped
2171
2200
  SENSITIVE: []
2172
2201
 
@@ -2174,6 +2203,8 @@ module Aws::CleanRooms
2174
2203
  end
2175
2204
  class Member < ProtectedQueryOutputConfiguration
2176
2205
  end
2206
+ class Distribute < ProtectedQueryOutputConfiguration
2207
+ end
2177
2208
  class Unknown < ProtectedQueryOutputConfiguration
2178
2209
  end
2179
2210
  end
@@ -2451,6 +2482,7 @@ module Aws::CleanRooms
2451
2482
  attr_accessor collaboration_identifier: ::String
2452
2483
  attr_accessor name: ::String
2453
2484
  attr_accessor description: ::String
2485
+ attr_accessor analytics_engine: ("SPARK" | "CLEAN_ROOMS_SQL")
2454
2486
  SENSITIVE: []
2455
2487
  end
2456
2488
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-18 00:00:00.000000000 Z
11
+ date: 2025-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core