aws-sdk-cleanrooms 1.49.0 → 1.51.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: 0164e5d9d67b330c8829ab54e601e1f180ad6aa4c9ae80f731e5479db1832aee
4
- data.tar.gz: e6502ad739304701884655995c776d58de5506a67aafa3dc952e14b50547fd4c
3
+ metadata.gz: ec70b00eb393b338c1b744b7fcf245d636d7af4cca2bd90dd594af7b84a0e622
4
+ data.tar.gz: c5a5d84eded173a1a4ce632a5cf0422cceea9e542b959165ab1e26132fba334d
5
5
  SHA512:
6
- metadata.gz: 66d63979bb7a626e6f8c68d334382320684f066aa38ff7cb10aed4a88c170d2b9d8fc0a2c6ffebdd359ea2d7baa596e41672f9851dc08e1ecd0deb7c8d9c075d
7
- data.tar.gz: b1a38ee253efe71da0b42ddd0525ce8d036fd3cf74691585163b7de3042628e18345e1bbe95dc52b5741bc482c2fec7a8707bae141ec03e4a77cd70f1629d4af
6
+ metadata.gz: 8071c6c078c0a23ddaca8fb4818dc9f20c8abb1badf4295f33a4a86b5fbd7bbd86b3ecd7ca13dd1f5a02e613caf014250dab70550eda0655f26e68861311b8eb
7
+ data.tar.gz: 3c28a354c444a457770a6afafd1cbccf6f65d8d5bbe28aad495f25e43c5bf82f45763c2de4abe9071c5c91ded18096419aa8ce57a5e48bf7bb63487772a3182f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2025-08-19)
5
+ ------------------
6
+
7
+ * Feature - Support error message configuration for analysis templates
8
+
9
+ 1.50.0 (2025-08-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.49.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.51.0
@@ -95,8 +95,8 @@ module Aws::CleanRooms
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials used for authentication. This can be an instance of any one of the
99
- # following classes:
98
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
99
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
102
102
  # credentials.
@@ -124,8 +124,7 @@ module Aws::CleanRooms
124
124
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
125
125
  # from the Cognito Identity service.
126
126
  #
127
- # When `:credentials` are not configured directly, the following
128
- # locations will be searched for credentials:
127
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
129
128
  #
130
129
  # * `Aws.config[:credentials]`
131
130
  #
@@ -139,12 +138,10 @@ module Aws::CleanRooms
139
138
  #
140
139
  # * `~/.aws/config`
141
140
  #
142
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
143
- # are very aggressive. Construct and pass an instance of
144
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
- # enable retries and extended timeouts. Instance profile credential
146
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
- # to `true`.
141
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
142
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
143
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
144
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
148
145
  #
149
146
  # @option options [required, String] :region
150
147
  # The AWS region to connect to. The configured `:region` is
@@ -377,8 +374,8 @@ module Aws::CleanRooms
377
374
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
378
375
  #
379
376
  # @option options [Aws::TokenProvider] :token_provider
380
- # Your Bearer token used for authentication. This can be an instance of any one of the
381
- # following classes:
377
+ # Your Bearer token used for authentication. This can be any class that includes and implements
378
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
382
379
  #
383
380
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
384
381
  # tokens.
@@ -536,6 +533,7 @@ module Aws::CleanRooms
536
533
  # resp.collaboration_analysis_templates[0].validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
537
534
  # resp.collaboration_analysis_templates[0].validations[0].reasons #=> Array
538
535
  # resp.collaboration_analysis_templates[0].validations[0].reasons[0].message #=> String
536
+ # resp.collaboration_analysis_templates[0].error_message_configuration.type #=> String, one of "DETAILED"
539
537
  # resp.errors #=> Array
540
538
  # resp.errors[0].arn #=> String
541
539
  # resp.errors[0].code #=> String
@@ -796,6 +794,14 @@ module Aws::CleanRooms
796
794
  # @option params [Types::AnalysisSchema] :schema
797
795
  # A relation within an analysis.
798
796
  #
797
+ # @option params [Types::ErrorMessageConfiguration] :error_message_configuration
798
+ # The configuration that specifies the level of detail in error messages
799
+ # returned by analyses using this template. When set to `DETAILED`,
800
+ # error messages include more information to help troubleshoot issues
801
+ # with PySpark jobs. Detailed error messages may expose underlying data,
802
+ # including sensitive information. Recommended for faster
803
+ # troubleshooting in development and testing environments.
804
+ #
799
805
  # @return [Types::CreateAnalysisTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
800
806
  #
801
807
  # * {Types::CreateAnalysisTemplateOutput#analysis_template #analysis_template} => Types::AnalysisTemplate
@@ -840,6 +846,9 @@ module Aws::CleanRooms
840
846
  # schema: {
841
847
  # referenced_tables: ["TableAlias"],
842
848
  # },
849
+ # error_message_configuration: {
850
+ # type: "DETAILED", # required, accepts DETAILED
851
+ # },
843
852
  # })
844
853
  #
845
854
  # @example Response structure
@@ -876,6 +885,7 @@ module Aws::CleanRooms
876
885
  # resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
877
886
  # resp.analysis_template.validations[0].reasons #=> Array
878
887
  # resp.analysis_template.validations[0].reasons[0].message #=> String
888
+ # resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
879
889
  #
880
890
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplate AWS API Documentation
881
891
  #
@@ -2252,6 +2262,7 @@ module Aws::CleanRooms
2252
2262
  # resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
2253
2263
  # resp.analysis_template.validations[0].reasons #=> Array
2254
2264
  # resp.analysis_template.validations[0].reasons[0].message #=> String
2265
+ # resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
2255
2266
  #
2256
2267
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetAnalysisTemplate AWS API Documentation
2257
2268
  #
@@ -2361,6 +2372,7 @@ module Aws::CleanRooms
2361
2372
  # resp.collaboration_analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
2362
2373
  # resp.collaboration_analysis_template.validations[0].reasons #=> Array
2363
2374
  # resp.collaboration_analysis_template.validations[0].reasons[0].message #=> String
2375
+ # resp.collaboration_analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
2364
2376
  #
2365
2377
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationAnalysisTemplate AWS API Documentation
2366
2378
  #
@@ -4763,6 +4775,7 @@ module Aws::CleanRooms
4763
4775
  # resp.analysis_template.validations[0].status #=> String, one of "VALID", "INVALID", "UNABLE_TO_VALIDATE"
4764
4776
  # resp.analysis_template.validations[0].reasons #=> Array
4765
4777
  # resp.analysis_template.validations[0].reasons[0].message #=> String
4778
+ # resp.analysis_template.error_message_configuration.type #=> String, one of "DETAILED"
4766
4779
  #
4767
4780
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateAnalysisTemplate AWS API Documentation
4768
4781
  #
@@ -5675,7 +5688,7 @@ module Aws::CleanRooms
5675
5688
  tracer: tracer
5676
5689
  )
5677
5690
  context[:gem_name] = 'aws-sdk-cleanrooms'
5678
- context[:gem_version] = '1.49.0'
5691
+ context[:gem_version] = '1.51.0'
5679
5692
  Seahorse::Client::Request.new(handlers, context)
5680
5693
  end
5681
5694
 
@@ -240,6 +240,8 @@ module Aws::CleanRooms
240
240
  Document = Shapes::DocumentShape.new(name: 'Document', document: true)
241
241
  Double = Shapes::FloatShape.new(name: 'Double')
242
242
  Epsilon = Shapes::IntegerShape.new(name: 'Epsilon')
243
+ ErrorMessageConfiguration = Shapes::StructureShape.new(name: 'ErrorMessageConfiguration')
244
+ ErrorMessageType = Shapes::StringShape.new(name: 'ErrorMessageType')
243
245
  FilterableMemberStatus = Shapes::StringShape.new(name: 'FilterableMemberStatus')
244
246
  Float = Shapes::FloatShape.new(name: 'Float')
245
247
  GenericResourceName = Shapes::StringShape.new(name: 'GenericResourceName')
@@ -703,6 +705,7 @@ module Aws::CleanRooms
703
705
  AnalysisTemplate.add_member(:source_metadata, Shapes::ShapeRef.new(shape: AnalysisSourceMetadata, location_name: "sourceMetadata"))
704
706
  AnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
705
707
  AnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
708
+ AnalysisTemplate.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
706
709
  AnalysisTemplate.struct_class = Types::AnalysisTemplate
707
710
 
708
711
  AnalysisTemplateArnList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateArn)
@@ -837,6 +840,7 @@ module Aws::CleanRooms
837
840
  CollaborationAnalysisTemplate.add_member(:source_metadata, Shapes::ShapeRef.new(shape: AnalysisSourceMetadata, location_name: "sourceMetadata"))
838
841
  CollaborationAnalysisTemplate.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
839
842
  CollaborationAnalysisTemplate.add_member(:validations, Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusDetailList, location_name: "validations"))
843
+ CollaborationAnalysisTemplate.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
840
844
  CollaborationAnalysisTemplate.struct_class = Types::CollaborationAnalysisTemplate
841
845
 
842
846
  CollaborationAnalysisTemplateList.member = Shapes::ShapeRef.new(shape: CollaborationAnalysisTemplate)
@@ -1192,6 +1196,7 @@ module Aws::CleanRooms
1192
1196
  CreateAnalysisTemplateInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1193
1197
  CreateAnalysisTemplateInput.add_member(:analysis_parameters, Shapes::ShapeRef.new(shape: AnalysisParameterList, location_name: "analysisParameters"))
1194
1198
  CreateAnalysisTemplateInput.add_member(:schema, Shapes::ShapeRef.new(shape: AnalysisSchema, location_name: "schema"))
1199
+ CreateAnalysisTemplateInput.add_member(:error_message_configuration, Shapes::ShapeRef.new(shape: ErrorMessageConfiguration, location_name: "errorMessageConfiguration"))
1195
1200
  CreateAnalysisTemplateInput.struct_class = Types::CreateAnalysisTemplateInput
1196
1201
 
1197
1202
  CreateAnalysisTemplateOutput.add_member(:analysis_template, Shapes::ShapeRef.new(shape: AnalysisTemplate, required: true, location_name: "analysisTemplate"))
@@ -1446,6 +1451,9 @@ module Aws::CleanRooms
1446
1451
  DirectAnalysisConfigurationDetails.add_member(:receiver_account_ids, Shapes::ShapeRef.new(shape: ReceiverAccountIds, location_name: "receiverAccountIds"))
1447
1452
  DirectAnalysisConfigurationDetails.struct_class = Types::DirectAnalysisConfigurationDetails
1448
1453
 
1454
+ ErrorMessageConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: ErrorMessageType, required: true, location_name: "type"))
1455
+ ErrorMessageConfiguration.struct_class = Types::ErrorMessageConfiguration
1456
+
1449
1457
  GetAnalysisTemplateInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
1450
1458
  GetAnalysisTemplateInput.add_member(:analysis_template_identifier, Shapes::ShapeRef.new(shape: AnalysisTemplateIdentifier, required: true, location: "uri", location_name: "analysisTemplateIdentifier"))
1451
1459
  GetAnalysisTemplateInput.struct_class = Types::GetAnalysisTemplateInput
@@ -521,6 +521,15 @@ module Aws::CleanRooms
521
521
  # template.
522
522
  # @return [Array<Types::AnalysisTemplateValidationStatusDetail>]
523
523
  #
524
+ # @!attribute [rw] error_message_configuration
525
+ # The configuration that specifies the level of detail in error
526
+ # messages returned by analyses using this template. When set to
527
+ # `DETAILED`, error messages include more information to help
528
+ # troubleshoot issues with PySpark jobs. Detailed error messages may
529
+ # expose underlying data, including sensitive information. Recommended
530
+ # for faster troubleshooting in development and testing environments.
531
+ # @return [Types::ErrorMessageConfiguration]
532
+ #
524
533
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisTemplate AWS API Documentation
525
534
  #
526
535
  class AnalysisTemplate < Struct.new(
@@ -539,7 +548,8 @@ module Aws::CleanRooms
539
548
  :source,
540
549
  :source_metadata,
541
550
  :analysis_parameters,
542
- :validations)
551
+ :validations,
552
+ :error_message_configuration)
543
553
  SENSITIVE = [:analysis_parameters]
544
554
  include Aws::Structure
545
555
  end
@@ -1136,6 +1146,15 @@ module Aws::CleanRooms
1136
1146
  # The validations that were performed.
1137
1147
  # @return [Array<Types::AnalysisTemplateValidationStatusDetail>]
1138
1148
  #
1149
+ # @!attribute [rw] error_message_configuration
1150
+ # The configuration that specifies the level of detail in error
1151
+ # messages returned by analyses using this template. When set to
1152
+ # `DETAILED`, error messages include more information to help
1153
+ # troubleshoot issues with PySpark jobs. Detailed error messages may
1154
+ # expose underlying data, including sensitive information. Recommended
1155
+ # for faster troubleshooting in development and testing environments.
1156
+ # @return [Types::ErrorMessageConfiguration]
1157
+ #
1139
1158
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationAnalysisTemplate AWS API Documentation
1140
1159
  #
1141
1160
  class CollaborationAnalysisTemplate < Struct.new(
@@ -1153,7 +1172,8 @@ module Aws::CleanRooms
1153
1172
  :source,
1154
1173
  :source_metadata,
1155
1174
  :analysis_parameters,
1156
- :validations)
1175
+ :validations,
1176
+ :error_message_configuration)
1157
1177
  SENSITIVE = [:analysis_parameters]
1158
1178
  include Aws::Structure
1159
1179
  end
@@ -2794,6 +2814,15 @@ module Aws::CleanRooms
2794
2814
  # A relation within an analysis.
2795
2815
  # @return [Types::AnalysisSchema]
2796
2816
  #
2817
+ # @!attribute [rw] error_message_configuration
2818
+ # The configuration that specifies the level of detail in error
2819
+ # messages returned by analyses using this template. When set to
2820
+ # `DETAILED`, error messages include more information to help
2821
+ # troubleshoot issues with PySpark jobs. Detailed error messages may
2822
+ # expose underlying data, including sensitive information. Recommended
2823
+ # for faster troubleshooting in development and testing environments.
2824
+ # @return [Types::ErrorMessageConfiguration]
2825
+ #
2797
2826
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateAnalysisTemplateInput AWS API Documentation
2798
2827
  #
2799
2828
  class CreateAnalysisTemplateInput < Struct.new(
@@ -2804,7 +2833,8 @@ module Aws::CleanRooms
2804
2833
  :source,
2805
2834
  :tags,
2806
2835
  :analysis_parameters,
2807
- :schema)
2836
+ :schema,
2837
+ :error_message_configuration)
2808
2838
  SENSITIVE = [:analysis_parameters]
2809
2839
  include Aws::Structure
2810
2840
  end
@@ -4005,6 +4035,28 @@ module Aws::CleanRooms
4005
4035
  include Aws::Structure
4006
4036
  end
4007
4037
 
4038
+ # A structure that defines the level of detail included in error
4039
+ # messages returned by PySpark jobs. This configuration allows you to
4040
+ # control the verbosity of error messages to help with troubleshooting
4041
+ # PySpark jobs while maintaining appropriate security controls.
4042
+ #
4043
+ # @!attribute [rw] type
4044
+ # The level of detail for error messages returned by the PySpark job.
4045
+ # When set to DETAILED, error messages include more information to
4046
+ # help troubleshoot issues with your PySpark job.
4047
+ #
4048
+ # Because this setting may expose sensitive data, it is recommended
4049
+ # for development and testing environments.
4050
+ # @return [String]
4051
+ #
4052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ErrorMessageConfiguration AWS API Documentation
4053
+ #
4054
+ class ErrorMessageConfiguration < Struct.new(
4055
+ :type)
4056
+ SENSITIVE = []
4057
+ include Aws::Structure
4058
+ end
4059
+
4008
4060
  # @!attribute [rw] membership_identifier
4009
4061
  # The identifier for a membership resource.
4010
4062
  # @return [String]
@@ -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.49.0'
58
+ GEM_VERSION = '1.51.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -159,6 +159,9 @@ module Aws
159
159
  ],
160
160
  ?schema: {
161
161
  referenced_tables: Array[::String]?
162
+ },
163
+ ?error_message_configuration: {
164
+ type: ("DETAILED")
162
165
  }
163
166
  ) -> _CreateAnalysisTemplateResponseSuccess
164
167
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnalysisTemplateResponseSuccess
data/sig/types.rbs CHANGED
@@ -160,6 +160,7 @@ module Aws::CleanRooms
160
160
  attr_accessor source_metadata: Types::AnalysisSourceMetadata
161
161
  attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
162
162
  attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
163
+ attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
163
164
  SENSITIVE: []
164
165
  end
165
166
 
@@ -318,6 +319,7 @@ module Aws::CleanRooms
318
319
  attr_accessor source_metadata: Types::AnalysisSourceMetadata
319
320
  attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
320
321
  attr_accessor validations: ::Array[Types::AnalysisTemplateValidationStatusDetail]
322
+ attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
321
323
  SENSITIVE: []
322
324
  end
323
325
 
@@ -737,6 +739,7 @@ module Aws::CleanRooms
737
739
  attr_accessor tags: ::Hash[::String, ::String]
738
740
  attr_accessor analysis_parameters: ::Array[Types::AnalysisParameter]
739
741
  attr_accessor schema: Types::AnalysisSchema
742
+ attr_accessor error_message_configuration: Types::ErrorMessageConfiguration
740
743
  SENSITIVE: []
741
744
  end
742
745
 
@@ -1088,6 +1091,11 @@ module Aws::CleanRooms
1088
1091
  SENSITIVE: []
1089
1092
  end
1090
1093
 
1094
+ class ErrorMessageConfiguration
1095
+ attr_accessor type: ("DETAILED")
1096
+ SENSITIVE: []
1097
+ end
1098
+
1091
1099
  class GetAnalysisTemplateInput
1092
1100
  attr_accessor membership_identifier: ::String
1093
1101
  attr_accessor analysis_template_identifier: ::String
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.49.0
4
+ version: 1.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services