aws-sdk-cleanrooms 1.53.0 → 1.55.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: 17b3d580221bd14a1cfc57e6a4e48fe955480567b295ed91fdef5d1a76b2b551
4
- data.tar.gz: f608ef9d73e8ba62aa8e6ba105744b4a8bb5aca499b0afcda545350e7db2c599
3
+ metadata.gz: ab8f01e88e41c674467b35716f271f8c79456d71c525b21a68c55ef5b64fe2f7
4
+ data.tar.gz: bf88de20c5ed5af9ef73e81bf3a9b15aaafe046230314cf6414030bcdc799f4a
5
5
  SHA512:
6
- metadata.gz: 0fb65269df045b871a11fe2c796d7d253794b98fe9a1cafab7a764cc914c67dda5f72677451da66c4db7d999f5973f2c321cb300b6157a1d8fabffb9f656e17f
7
- data.tar.gz: dab5824bd3f43de1cee6f0612e8bc80e646adc86fc49c6350d8826201b4651aa361004a8982b3ad74d967ebeef5cb923a896e0b056b7e88f287efdbbf55040af
6
+ metadata.gz: 4771784e5cc9f66116e6f51ec9748d5fcb11a1f3963d495fc1f2a4d499b9d87581e0eb24b83aaa145441c52749801f123685b09a9dbc751d482b0cce37cc256a
7
+ data.tar.gz: 28b1d5ac148c37bab1bdea82dcb8dd60d4abdbb565ca1ef720a13cc9ba3c4dd3d4090b0b685721f9446169578def5255e09987ffcefa02924b09249724adba61
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2025-09-23)
5
+ ------------------
6
+
7
+ * Feature - Added support for running incremental ID mapping for rule-based workflows.
8
+
9
+ 1.54.0 (2025-09-04)
10
+ ------------------
11
+
12
+ * Feature - Add support for configurable compute sizes for PySpark jobs.
13
+
4
14
  1.53.0 (2025-09-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.53.0
1
+ 1.55.0
@@ -3140,6 +3140,8 @@ module Aws::CleanRooms
3140
3140
  # resp.protected_job.result.output.member_list[0].account_id #=> String
3141
3141
  # resp.protected_job.error.message #=> String
3142
3142
  # resp.protected_job.error.code #=> String
3143
+ # resp.protected_job.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
3144
+ # resp.protected_job.compute_configuration.worker.number #=> Integer
3143
3145
  #
3144
3146
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedJob AWS API Documentation
3145
3147
  #
@@ -4591,6 +4593,28 @@ module Aws::CleanRooms
4591
4593
  # The unique identifier of the membership that contains the ID mapping
4592
4594
  # table that you want to populate.
4593
4595
  #
4596
+ # @option params [String] :job_type
4597
+ # The job type of the rule-based ID mapping job. Valid values include:
4598
+ #
4599
+ # `INCREMENTAL`: Processes only new or changed data since the last job
4600
+ # run. This is the default job type if the ID mapping workflow was
4601
+ # created in Entity Resolution with `incrementalRunConfig` specified.
4602
+ #
4603
+ # `BATCH`: Processes all data from the input source, regardless of
4604
+ # previous job runs. This is the default job type if the ID mapping
4605
+ # workflow was created in Entity Resolution but `incrementalRunConfig`
4606
+ # wasn't specified.
4607
+ #
4608
+ # `DELETE_ONLY`: Processes only deletion requests from
4609
+ # `BatchDeleteUniqueId`, which is set in Entity Resolution.
4610
+ #
4611
+ # For more information about `incrementalRunConfig` and
4612
+ # `BatchDeleteUniqueId`, see the [Entity Resolution API Reference][1].
4613
+ #
4614
+ #
4615
+ #
4616
+ # [1]: https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html
4617
+ #
4594
4618
  # @return [Types::PopulateIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4595
4619
  #
4596
4620
  # * {Types::PopulateIdMappingTableOutput#id_mapping_job_id #id_mapping_job_id} => String
@@ -4600,6 +4624,7 @@ module Aws::CleanRooms
4600
4624
  # resp = client.populate_id_mapping_table({
4601
4625
  # id_mapping_table_identifier: "UUID", # required
4602
4626
  # membership_identifier: "MembershipIdentifier", # required
4627
+ # job_type: "BATCH", # accepts BATCH, INCREMENTAL, DELETE_ONLY
4603
4628
  # })
4604
4629
  #
4605
4630
  # @example Response structure
@@ -4671,6 +4696,9 @@ module Aws::CleanRooms
4671
4696
  # @option params [Types::ProtectedJobResultConfigurationInput] :result_configuration
4672
4697
  # The details needed to write the job results.
4673
4698
  #
4699
+ # @option params [Types::ProtectedJobComputeConfiguration] :compute_configuration
4700
+ # The compute configuration for the protected job.
4701
+ #
4674
4702
  # @return [Types::StartProtectedJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4675
4703
  #
4676
4704
  # * {Types::StartProtectedJobOutput#protected_job #protected_job} => Types::ProtectedJob
@@ -4690,6 +4718,12 @@ module Aws::CleanRooms
4690
4718
  # },
4691
4719
  # },
4692
4720
  # },
4721
+ # compute_configuration: {
4722
+ # worker: {
4723
+ # type: "CR.1X", # required, accepts CR.1X, CR.4X
4724
+ # number: 1, # required
4725
+ # },
4726
+ # },
4693
4727
  # })
4694
4728
  #
4695
4729
  # @example Response structure
@@ -4710,6 +4744,8 @@ module Aws::CleanRooms
4710
4744
  # resp.protected_job.result.output.member_list[0].account_id #=> String
4711
4745
  # resp.protected_job.error.message #=> String
4712
4746
  # resp.protected_job.error.code #=> String
4747
+ # resp.protected_job.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
4748
+ # resp.protected_job.compute_configuration.worker.number #=> Integer
4713
4749
  #
4714
4750
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedJob AWS API Documentation
4715
4751
  #
@@ -5766,6 +5802,8 @@ module Aws::CleanRooms
5766
5802
  # resp.protected_job.result.output.member_list[0].account_id #=> String
5767
5803
  # resp.protected_job.error.message #=> String
5768
5804
  # resp.protected_job.error.code #=> String
5805
+ # resp.protected_job.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
5806
+ # resp.protected_job.compute_configuration.worker.number #=> Integer
5769
5807
  #
5770
5808
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedJob AWS API Documentation
5771
5809
  #
@@ -5868,7 +5906,7 @@ module Aws::CleanRooms
5868
5906
  tracer: tracer
5869
5907
  )
5870
5908
  context[:gem_name] = 'aws-sdk-cleanrooms'
5871
- context[:gem_version] = '1.53.0'
5909
+ context[:gem_version] = '1.55.0'
5872
5910
  Seahorse::Client::Request.new(handlers, context)
5873
5911
  end
5874
5912
 
@@ -331,6 +331,7 @@ module Aws::CleanRooms
331
331
  IdNamespaceType = Shapes::StringShape.new(name: 'IdNamespaceType')
332
332
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
333
333
  JobComputePaymentConfig = Shapes::StructureShape.new(name: 'JobComputePaymentConfig')
334
+ JobType = Shapes::StringShape.new(name: 'JobType')
334
335
  JoinOperator = Shapes::StringShape.new(name: 'JoinOperator')
335
336
  JoinOperatorsList = Shapes::ListShape.new(name: 'JoinOperatorsList')
336
337
  JoinRequiredOption = Shapes::StringShape.new(name: 'JoinRequiredOption')
@@ -437,6 +438,7 @@ module Aws::CleanRooms
437
438
  PrivacyImpact = Shapes::UnionShape.new(name: 'PrivacyImpact')
438
439
  ProtectedJob = Shapes::StructureShape.new(name: 'ProtectedJob')
439
440
  ProtectedJobAnalysisType = Shapes::StringShape.new(name: 'ProtectedJobAnalysisType')
441
+ ProtectedJobComputeConfiguration = Shapes::UnionShape.new(name: 'ProtectedJobComputeConfiguration')
440
442
  ProtectedJobConfigurationDetails = Shapes::UnionShape.new(name: 'ProtectedJobConfigurationDetails')
441
443
  ProtectedJobDirectAnalysisConfigurationDetails = Shapes::StructureShape.new(name: 'ProtectedJobDirectAnalysisConfigurationDetails')
442
444
  ProtectedJobError = Shapes::StructureShape.new(name: 'ProtectedJobError')
@@ -465,6 +467,9 @@ module Aws::CleanRooms
465
467
  ProtectedJobSummary = Shapes::StructureShape.new(name: 'ProtectedJobSummary')
466
468
  ProtectedJobSummaryList = Shapes::ListShape.new(name: 'ProtectedJobSummaryList')
467
469
  ProtectedJobType = Shapes::StringShape.new(name: 'ProtectedJobType')
470
+ ProtectedJobWorkerComputeConfiguration = Shapes::StructureShape.new(name: 'ProtectedJobWorkerComputeConfiguration')
471
+ ProtectedJobWorkerComputeConfigurationNumberInteger = Shapes::IntegerShape.new(name: 'ProtectedJobWorkerComputeConfigurationNumberInteger')
472
+ ProtectedJobWorkerComputeType = Shapes::StringShape.new(name: 'ProtectedJobWorkerComputeType')
468
473
  ProtectedQuery = Shapes::StructureShape.new(name: 'ProtectedQuery')
469
474
  ProtectedQueryDistributeOutput = Shapes::StructureShape.new(name: 'ProtectedQueryDistributeOutput')
470
475
  ProtectedQueryDistributeOutputConfiguration = Shapes::StructureShape.new(name: 'ProtectedQueryDistributeOutputConfiguration')
@@ -2098,6 +2103,7 @@ module Aws::CleanRooms
2098
2103
 
2099
2104
  PopulateIdMappingTableInput.add_member(:id_mapping_table_identifier, Shapes::ShapeRef.new(shape: UUID, required: true, location: "uri", location_name: "idMappingTableIdentifier"))
2100
2105
  PopulateIdMappingTableInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
2106
+ PopulateIdMappingTableInput.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
2101
2107
  PopulateIdMappingTableInput.struct_class = Types::PopulateIdMappingTableInput
2102
2108
 
2103
2109
  PopulateIdMappingTableOutput.add_member(:id_mapping_job_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "idMappingJobId"))
@@ -2197,8 +2203,15 @@ module Aws::CleanRooms
2197
2203
  ProtectedJob.add_member(:statistics, Shapes::ShapeRef.new(shape: ProtectedJobStatistics, location_name: "statistics"))
2198
2204
  ProtectedJob.add_member(:result, Shapes::ShapeRef.new(shape: ProtectedJobResult, location_name: "result"))
2199
2205
  ProtectedJob.add_member(:error, Shapes::ShapeRef.new(shape: ProtectedJobError, location_name: "error"))
2206
+ ProtectedJob.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ProtectedJobComputeConfiguration, location_name: "computeConfiguration"))
2200
2207
  ProtectedJob.struct_class = Types::ProtectedJob
2201
2208
 
2209
+ ProtectedJobComputeConfiguration.add_member(:worker, Shapes::ShapeRef.new(shape: ProtectedJobWorkerComputeConfiguration, location_name: "worker"))
2210
+ ProtectedJobComputeConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2211
+ ProtectedJobComputeConfiguration.add_member_subclass(:worker, Types::ProtectedJobComputeConfiguration::Worker)
2212
+ ProtectedJobComputeConfiguration.add_member_subclass(:unknown, Types::ProtectedJobComputeConfiguration::Unknown)
2213
+ ProtectedJobComputeConfiguration.struct_class = Types::ProtectedJobComputeConfiguration
2214
+
2202
2215
  ProtectedJobConfigurationDetails.add_member(:direct_analysis_configuration_details, Shapes::ShapeRef.new(shape: ProtectedJobDirectAnalysisConfigurationDetails, location_name: "directAnalysisConfigurationDetails"))
2203
2216
  ProtectedJobConfigurationDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2204
2217
  ProtectedJobConfigurationDetails.add_member_subclass(:direct_analysis_configuration_details, Types::ProtectedJobConfigurationDetails::DirectAnalysisConfigurationDetails)
@@ -2290,6 +2303,10 @@ module Aws::CleanRooms
2290
2303
 
2291
2304
  ProtectedJobSummaryList.member = Shapes::ShapeRef.new(shape: ProtectedJobSummary)
2292
2305
 
2306
+ ProtectedJobWorkerComputeConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: ProtectedJobWorkerComputeType, required: true, location_name: "type"))
2307
+ ProtectedJobWorkerComputeConfiguration.add_member(:number, Shapes::ShapeRef.new(shape: ProtectedJobWorkerComputeConfigurationNumberInteger, required: true, location_name: "number"))
2308
+ ProtectedJobWorkerComputeConfiguration.struct_class = Types::ProtectedJobWorkerComputeConfiguration
2309
+
2293
2310
  ProtectedQuery.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
2294
2311
  ProtectedQuery.add_member(:membership_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "membershipId"))
2295
2312
  ProtectedQuery.add_member(:membership_arn, Shapes::ShapeRef.new(shape: MembershipArn, required: true, location_name: "membershipArn"))
@@ -2517,6 +2534,7 @@ module Aws::CleanRooms
2517
2534
  StartProtectedJobInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
2518
2535
  StartProtectedJobInput.add_member(:job_parameters, Shapes::ShapeRef.new(shape: ProtectedJobParameters, required: true, location_name: "jobParameters"))
2519
2536
  StartProtectedJobInput.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedJobResultConfigurationInput, location_name: "resultConfiguration"))
2537
+ StartProtectedJobInput.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ProtectedJobComputeConfiguration, location_name: "computeConfiguration"))
2520
2538
  StartProtectedJobInput.struct_class = Types::StartProtectedJobInput
2521
2539
 
2522
2540
  StartProtectedJobOutput.add_member(:protected_job, Shapes::ShapeRef.new(shape: ProtectedJob, required: true, location_name: "protectedJob"))
@@ -2924,6 +2942,7 @@ module Aws::CleanRooms
2924
2942
  o.input = Shapes::ShapeRef.new(shape: CreatePrivacyBudgetTemplateInput)
2925
2943
  o.output = Shapes::ShapeRef.new(shape: CreatePrivacyBudgetTemplateOutput)
2926
2944
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2945
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2927
2946
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2928
2947
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2929
2948
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -7005,11 +7005,35 @@ module Aws::CleanRooms
7005
7005
  # table that you want to populate.
7006
7006
  # @return [String]
7007
7007
  #
7008
+ # @!attribute [rw] job_type
7009
+ # The job type of the rule-based ID mapping job. Valid values include:
7010
+ #
7011
+ # `INCREMENTAL`: Processes only new or changed data since the last job
7012
+ # run. This is the default job type if the ID mapping workflow was
7013
+ # created in Entity Resolution with `incrementalRunConfig` specified.
7014
+ #
7015
+ # `BATCH`: Processes all data from the input source, regardless of
7016
+ # previous job runs. This is the default job type if the ID mapping
7017
+ # workflow was created in Entity Resolution but `incrementalRunConfig`
7018
+ # wasn't specified.
7019
+ #
7020
+ # `DELETE_ONLY`: Processes only deletion requests from
7021
+ # `BatchDeleteUniqueId`, which is set in Entity Resolution.
7022
+ #
7023
+ # For more information about `incrementalRunConfig` and
7024
+ # `BatchDeleteUniqueId`, see the [Entity Resolution API Reference][1].
7025
+ #
7026
+ #
7027
+ #
7028
+ # [1]: https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html
7029
+ # @return [String]
7030
+ #
7008
7031
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableInput AWS API Documentation
7009
7032
  #
7010
7033
  class PopulateIdMappingTableInput < Struct.new(
7011
7034
  :id_mapping_table_identifier,
7012
- :membership_identifier)
7035
+ :membership_identifier,
7036
+ :job_type)
7013
7037
  SENSITIVE = []
7014
7038
  include Aws::Structure
7015
7039
  end
@@ -7443,6 +7467,10 @@ module Aws::CleanRooms
7443
7467
  # The error from the protected job.
7444
7468
  # @return [Types::ProtectedJobError]
7445
7469
  #
7470
+ # @!attribute [rw] compute_configuration
7471
+ # The compute configuration for the protected job.
7472
+ # @return [Types::ProtectedJobComputeConfiguration]
7473
+ #
7446
7474
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJob AWS API Documentation
7447
7475
  #
7448
7476
  class ProtectedJob < Struct.new(
@@ -7455,11 +7483,35 @@ module Aws::CleanRooms
7455
7483
  :result_configuration,
7456
7484
  :statistics,
7457
7485
  :result,
7458
- :error)
7486
+ :error,
7487
+ :compute_configuration)
7459
7488
  SENSITIVE = []
7460
7489
  include Aws::Structure
7461
7490
  end
7462
7491
 
7492
+ # The configuration of the compute resources for a PySpark job.
7493
+ #
7494
+ # @note ProtectedJobComputeConfiguration is a union - when making an API calls you must set exactly one of the members.
7495
+ #
7496
+ # @note ProtectedJobComputeConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedJobComputeConfiguration corresponding to the set member.
7497
+ #
7498
+ # @!attribute [rw] worker
7499
+ # The worker configuration for the compute environment.
7500
+ # @return [Types::ProtectedJobWorkerComputeConfiguration]
7501
+ #
7502
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJobComputeConfiguration AWS API Documentation
7503
+ #
7504
+ class ProtectedJobComputeConfiguration < Struct.new(
7505
+ :worker,
7506
+ :unknown)
7507
+ SENSITIVE = []
7508
+ include Aws::Structure
7509
+ include Aws::Structure::Union
7510
+
7511
+ class Worker < ProtectedJobComputeConfiguration; end
7512
+ class Unknown < ProtectedJobComputeConfiguration; end
7513
+ end
7514
+
7463
7515
  # The protected job configuration details.
7464
7516
  #
7465
7517
  # @note ProtectedJobConfigurationDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedJobConfigurationDetails corresponding to the set member.
@@ -7821,6 +7873,25 @@ module Aws::CleanRooms
7821
7873
  include Aws::Structure
7822
7874
  end
7823
7875
 
7876
+ # The configuration of the compute resources for a PySpark job.
7877
+ #
7878
+ # @!attribute [rw] type
7879
+ # The worker compute configuration type.
7880
+ # @return [String]
7881
+ #
7882
+ # @!attribute [rw] number
7883
+ # The number of workers for a PySpark job.
7884
+ # @return [Integer]
7885
+ #
7886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJobWorkerComputeConfiguration AWS API Documentation
7887
+ #
7888
+ class ProtectedJobWorkerComputeConfiguration < Struct.new(
7889
+ :type,
7890
+ :number)
7891
+ SENSITIVE = []
7892
+ include Aws::Structure
7893
+ end
7894
+
7824
7895
  # The parameters for an Clean Rooms protected query.
7825
7896
  #
7826
7897
  # @!attribute [rw] id
@@ -8786,13 +8857,18 @@ module Aws::CleanRooms
8786
8857
  # The details needed to write the job results.
8787
8858
  # @return [Types::ProtectedJobResultConfigurationInput]
8788
8859
  #
8860
+ # @!attribute [rw] compute_configuration
8861
+ # The compute configuration for the protected job.
8862
+ # @return [Types::ProtectedJobComputeConfiguration]
8863
+ #
8789
8864
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedJobInput AWS API Documentation
8790
8865
  #
8791
8866
  class StartProtectedJobInput < Struct.new(
8792
8867
  :type,
8793
8868
  :membership_identifier,
8794
8869
  :job_parameters,
8795
- :result_configuration)
8870
+ :result_configuration,
8871
+ :compute_configuration)
8796
8872
  SENSITIVE = []
8797
8873
  include Aws::Structure
8798
8874
  end
@@ -9561,6 +9637,11 @@ module Aws::CleanRooms
9561
9637
  #
9562
9638
  # @!attribute [rw] number
9563
9639
  # The number of workers.
9640
+ #
9641
+ # SQL queries support a minimum value of 2 and a maximum value of 400.
9642
+ #
9643
+ # PySpark jobs support a minimum value of 4 and a maximum value of
9644
+ # 128.
9564
9645
  # @return [Integer]
9565
9646
  #
9566
9647
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/WorkerComputeConfiguration AWS API Documentation
@@ -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.53.0'
58
+ GEM_VERSION = '1.55.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1137,7 +1137,8 @@ module Aws
1137
1137
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRooms/Client.html#populate_id_mapping_table-instance_method
1138
1138
  def populate_id_mapping_table: (
1139
1139
  id_mapping_table_identifier: ::String,
1140
- membership_identifier: ::String
1140
+ membership_identifier: ::String,
1141
+ ?job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
1141
1142
  ) -> _PopulateIdMappingTableResponseSuccess
1142
1143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PopulateIdMappingTableResponseSuccess
1143
1144
 
@@ -1174,6 +1175,12 @@ module Aws
1174
1175
  account_id: ::String
1175
1176
  }?
1176
1177
  }
1178
+ },
1179
+ ?compute_configuration: {
1180
+ worker: {
1181
+ type: ("CR.1X" | "CR.4X"),
1182
+ number: ::Integer
1183
+ }?
1177
1184
  }
1178
1185
  ) -> _StartProtectedJobResponseSuccess
1179
1186
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedJobResponseSuccess
data/sig/types.rbs CHANGED
@@ -1945,6 +1945,7 @@ module Aws::CleanRooms
1945
1945
  class PopulateIdMappingTableInput
1946
1946
  attr_accessor id_mapping_table_identifier: ::String
1947
1947
  attr_accessor membership_identifier: ::String
1948
+ attr_accessor job_type: ("BATCH" | "INCREMENTAL" | "DELETE_ONLY")
1948
1949
  SENSITIVE: []
1949
1950
  end
1950
1951
 
@@ -2084,9 +2085,21 @@ module Aws::CleanRooms
2084
2085
  attr_accessor statistics: Types::ProtectedJobStatistics
2085
2086
  attr_accessor result: Types::ProtectedJobResult
2086
2087
  attr_accessor error: Types::ProtectedJobError
2088
+ attr_accessor compute_configuration: Types::ProtectedJobComputeConfiguration
2087
2089
  SENSITIVE: []
2088
2090
  end
2089
2091
 
2092
+ class ProtectedJobComputeConfiguration
2093
+ attr_accessor worker: Types::ProtectedJobWorkerComputeConfiguration
2094
+ attr_accessor unknown: untyped
2095
+ SENSITIVE: []
2096
+
2097
+ class Worker < ProtectedJobComputeConfiguration
2098
+ end
2099
+ class Unknown < ProtectedJobComputeConfiguration
2100
+ end
2101
+ end
2102
+
2090
2103
  class ProtectedJobConfigurationDetails
2091
2104
  attr_accessor direct_analysis_configuration_details: Types::ProtectedJobDirectAnalysisConfigurationDetails
2092
2105
  attr_accessor unknown: untyped
@@ -2222,6 +2235,12 @@ module Aws::CleanRooms
2222
2235
  SENSITIVE: []
2223
2236
  end
2224
2237
 
2238
+ class ProtectedJobWorkerComputeConfiguration
2239
+ attr_accessor type: ("CR.1X" | "CR.4X")
2240
+ attr_accessor number: ::Integer
2241
+ SENSITIVE: []
2242
+ end
2243
+
2225
2244
  class ProtectedQuery
2226
2245
  attr_accessor id: ::String
2227
2246
  attr_accessor membership_id: ::String
@@ -2503,6 +2522,7 @@ module Aws::CleanRooms
2503
2522
  attr_accessor membership_identifier: ::String
2504
2523
  attr_accessor job_parameters: Types::ProtectedJobParameters
2505
2524
  attr_accessor result_configuration: Types::ProtectedJobResultConfigurationInput
2525
+ attr_accessor compute_configuration: Types::ProtectedJobComputeConfiguration
2506
2526
  SENSITIVE: []
2507
2527
  end
2508
2528
 
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.53.0
4
+ version: 1.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services