aws-sdk-datazone 1.65.0 → 1.67.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: afb2eee9d49f5595104d114ad1d286a3622758e9004835d77ca9c6204bf19f5f
4
- data.tar.gz: c653dd88c840de2f87dffbc3494b88730c474fea37ee345e7565aed67c190a06
3
+ metadata.gz: c59daf5f87fbc14d34a26862c466f6dadb99436fa629461934936c36c3e5247c
4
+ data.tar.gz: f817d2ac6e3f198a4340214690799d625809a60d174507f6456f73a42c150689
5
5
  SHA512:
6
- metadata.gz: 6d12e013b0b29fb11d8806139b952eea830c0a5945b33912990ebbc10ab4410ebd4355d73a68ea9e3c7a0076b5264e7e5d7a86ca3e61d8c8a3d24ea517a29aa4
7
- data.tar.gz: c44f793101d4cd4db3750d21bda72d6d7097fe50c1cec28e2616c938fa705544f26a76c2b47ec39da36b076acac32d720a08420ec90b9471042c895b7abc887e
6
+ metadata.gz: '037961541147537924b82c98bb5a2f7e7b10317dc285a3216d1007d7efab60819ec28895f204a2a1e41d784a065f25996efed27c191b44c8742256e9f02f8f84'
7
+ data.tar.gz: d6ede2eaf3e7d2cc50655f756ffd759d518471ec8168aece052227c36ca3baedcc09db5b01db96789323afa9656caa1e8c279ab273504650ce35e7df74ee7c1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2026-01-23)
5
+ ------------------
6
+
7
+ * Feature - Added api for deleting data export configuration for a domain
8
+
9
+ 1.66.0 (2026-01-16)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for numeric filtering and complex free-text searches cases for the Search and SearchListings APIs.
13
+
4
14
  1.65.0 (2026-01-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.0
@@ -4677,6 +4677,37 @@ module Aws::DataZone
4677
4677
  req.send_request(options)
4678
4678
  end
4679
4679
 
4680
+ # Deletes data export configuration for a domain.
4681
+ #
4682
+ # This operation does not delete the S3 table created by the
4683
+ # PutDataExportConfiguration operation.
4684
+ #
4685
+ # To temporarily disable export without deleting the configuration, use
4686
+ # the PutDataExportConfiguration operation with the `--no-enable-export`
4687
+ # flag instead. This allows you to re-enable export for the same domain
4688
+ # using the `--enable-export` flag without deleting S3 table.
4689
+ #
4690
+ # @option params [required, String] :domain_identifier
4691
+ # The domain ID for which you want to delete the data export
4692
+ # configuration.
4693
+ #
4694
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4695
+ #
4696
+ # @example Request syntax with placeholder values
4697
+ #
4698
+ # resp = client.delete_data_export_configuration({
4699
+ # domain_identifier: "DomainId", # required
4700
+ # })
4701
+ #
4702
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataExportConfiguration AWS API Documentation
4703
+ #
4704
+ # @overload delete_data_export_configuration(params = {})
4705
+ # @param [Hash] params ({})
4706
+ def delete_data_export_configuration(params = {}, options = {})
4707
+ req = build_request(:delete_data_export_configuration, params)
4708
+ req.send_request(options)
4709
+ end
4710
+
4680
4711
  # Deletes a data product in Amazon DataZone.
4681
4712
  #
4682
4713
  # Prerequisites:
@@ -11026,14 +11057,28 @@ module Aws::DataZone
11026
11057
 
11027
11058
  # Creates data export configuration details.
11028
11059
  #
11029
- # In the current release, you can enable exporting asset metadata only
11030
- # for one domain per Amazon Web Services account per region. If you
11031
- # disable exporting asset metadata feature for a domain where it's
11032
- # already enabled, you cannot enable this feature for another domain in
11033
- # the same Amazon Web Services account and region.
11060
+ # If you want to temporarily disable export and later re-enable it for
11061
+ # the same domain, use the `--no-enable-export` flag to disable and the
11062
+ # `--enable-export` flag to re-enable. This preserves the configuration
11063
+ # and allows you to re-enable export without deleting S3 table.
11064
+ #
11065
+ # <note markdown="1"> You can enable asset metadata export for only one domain per account
11066
+ # per Region. To enable export for a different domain, complete the
11067
+ # following steps:
11068
+ #
11069
+ # 1. Delete the export configuration for the currently enabled domain
11070
+ # using the DeleteDataExportConfiguration operation.
11071
+ #
11072
+ # 2. Delete the asset S3 table under the aws-sagemaker-catalog S3 table
11073
+ # bucket. We recommend backing up the S3 table before deletion.
11074
+ #
11075
+ # 3. Call the PutDataExportConfiguration API to enable export for the
11076
+ # new domain.
11077
+ #
11078
+ # </note>
11034
11079
  #
11035
11080
  # @option params [required, String] :domain_identifier
11036
- # The domain ID where you want to create data export configuration
11081
+ # The domain ID for which you want to create data export configuration
11037
11082
  # details.
11038
11083
  #
11039
11084
  # @option params [required, Boolean] :enable_export
@@ -11617,6 +11662,38 @@ module Aws::DataZone
11617
11662
  # * For paginated results, be prepared to use --next-token to fetch
11618
11663
  # additional pages.
11619
11664
  #
11665
+ # To run a standard free-text search, the `searchText` parameter must be
11666
+ # supplied. By default, all searchable fields are indexed for semantic
11667
+ # search and will return semantic matches for SearchListings queries. To
11668
+ # prevent semantic search indexing for a custom form attribute, see the
11669
+ # [CreateFormType API documentation][1]. To run a lexical search query,
11670
+ # enclose the query with double quotes (""). This will disable
11671
+ # semantic search even for fields that have semantic search enabled and
11672
+ # will only return results that contain the keywords wrapped by double
11673
+ # quotes (order of tokens in the query is not enforced). Free-text
11674
+ # search is supported for all attributes annotated with
11675
+ # @amazon.datazone#searchable.
11676
+ #
11677
+ # To run a filtered search, provide filter clause using the `filters`
11678
+ # parameter. To filter on glossary terms, use the special attribute
11679
+ # `__DataZoneGlossaryTerms`. To filter on an indexed numeric attribute
11680
+ # (i.e., a numeric attribute annotated with
11681
+ # `@amazon.datazone#sortable`), provide a filter using the `intValue`
11682
+ # parameter. The filters parameter can also be used to run more advanced
11683
+ # free-text searches that target specific attributes (attributes must be
11684
+ # annotated with `@amazon.datazone#searchable` for free-text search).
11685
+ # Create/update timestamp filtering is supported using the special
11686
+ # `creationTime`/`lastUpdatedTime` attributes. Filter types can be mixed
11687
+ # and matched to power complex queries.
11688
+ #
11689
+ # To find out whether an attribute has been annotated and indexed for a
11690
+ # given search type, use the GetFormType API to retrieve the form
11691
+ # containing the attribute.
11692
+ #
11693
+ #
11694
+ #
11695
+ # [1]: https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateFormType.html
11696
+ #
11620
11697
  # @option params [required, String] :domain_identifier
11621
11698
  # The identifier of the Amazon DataZone domain.
11622
11699
  #
@@ -11680,7 +11757,9 @@ module Aws::DataZone
11680
11757
  # filters: {
11681
11758
  # filter: {
11682
11759
  # attribute: "Attribute", # required
11683
- # value: "FilterValueString", # required
11760
+ # value: "FilterValueString",
11761
+ # int_value: 1,
11762
+ # operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
11684
11763
  # },
11685
11764
  # and: [
11686
11765
  # {
@@ -11897,7 +11976,7 @@ module Aws::DataZone
11897
11976
  # The SearchListings API gives users flexibility in specifying what kind
11898
11977
  # of search is run.
11899
11978
  #
11900
- # To run a free-text search, the `searchText` parameter must be
11979
+ # To run a standard free-text search, the `searchText` parameter must be
11901
11980
  # supplied. By default, all searchable fields are indexed for semantic
11902
11981
  # search and will return semantic matches for SearchListings queries. To
11903
11982
  # prevent semantic search indexing for a custom form attribute, see the
@@ -11909,9 +11988,17 @@ module Aws::DataZone
11909
11988
  # search is supported for all attributes annotated with
11910
11989
  # @amazon.datazone#searchable.
11911
11990
  #
11912
- # To run a filtered search, provide filter clause using the filters
11991
+ # To run a filtered search, provide filter clause using the `filters`
11913
11992
  # parameter. To filter on glossary terms, use the special attribute
11914
- # `__DataZoneGlossaryTerms`.
11993
+ # `__DataZoneGlossaryTerms`. To filter on an indexed numeric attribute
11994
+ # (i.e., a numeric attribute annotated with
11995
+ # `@amazon.datazone#sortable`), provide a filter using the `intValue`
11996
+ # parameter. The filters parameter can also be used to run more advanced
11997
+ # free-text searches that target specific attributes (attributes must be
11998
+ # annotated with `@amazon.datazone#searchable` for free-text search).
11999
+ # Create/update timestamp filtering is supported using the special
12000
+ # `creationTime`/`lastUpdatedTime` attributes. Filter types can be mixed
12001
+ # and matched to power complex queries.
11915
12002
  #
11916
12003
  # To find out whether an attribute has been annotated and indexed for a
11917
12004
  # given search type, use the GetFormType API to retrieve the form
@@ -11982,7 +12069,9 @@ module Aws::DataZone
11982
12069
  # filters: {
11983
12070
  # filter: {
11984
12071
  # attribute: "Attribute", # required
11985
- # value: "FilterValueString", # required
12072
+ # value: "FilterValueString",
12073
+ # int_value: 1,
12074
+ # operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
11986
12075
  # },
11987
12076
  # and: [
11988
12077
  # {
@@ -12169,7 +12258,9 @@ module Aws::DataZone
12169
12258
  # filters: {
12170
12259
  # filter: {
12171
12260
  # attribute: "Attribute", # required
12172
- # value: "FilterValueString", # required
12261
+ # value: "FilterValueString",
12262
+ # int_value: 1,
12263
+ # operator: "EQ", # accepts EQ, LE, LT, GE, GT, TEXT_SEARCH
12173
12264
  # },
12174
12265
  # and: [
12175
12266
  # {
@@ -14816,7 +14907,7 @@ module Aws::DataZone
14816
14907
  tracer: tracer
14817
14908
  )
14818
14909
  context[:gem_name] = 'aws-sdk-datazone'
14819
- context[:gem_version] = '1.65.0'
14910
+ context[:gem_version] = '1.67.0'
14820
14911
  Seahorse::Client::Request.new(handlers, context)
14821
14912
  end
14822
14913
 
@@ -302,6 +302,8 @@ module Aws::DataZone
302
302
  DeleteAssetTypeOutput = Shapes::StructureShape.new(name: 'DeleteAssetTypeOutput')
303
303
  DeleteConnectionInput = Shapes::StructureShape.new(name: 'DeleteConnectionInput')
304
304
  DeleteConnectionOutput = Shapes::StructureShape.new(name: 'DeleteConnectionOutput')
305
+ DeleteDataExportConfigurationInput = Shapes::StructureShape.new(name: 'DeleteDataExportConfigurationInput')
306
+ DeleteDataExportConfigurationOutput = Shapes::StructureShape.new(name: 'DeleteDataExportConfigurationOutput')
305
307
  DeleteDataProductInput = Shapes::StructureShape.new(name: 'DeleteDataProductInput')
306
308
  DeleteDataProductOutput = Shapes::StructureShape.new(name: 'DeleteDataProductOutput')
307
309
  DeleteDataSourceInput = Shapes::StructureShape.new(name: 'DeleteDataSourceInput')
@@ -439,6 +441,7 @@ module Aws::DataZone
439
441
  FilterIds = Shapes::ListShape.new(name: 'FilterIds')
440
442
  FilterList = Shapes::ListShape.new(name: 'FilterList')
441
443
  FilterName = Shapes::StringShape.new(name: 'FilterName')
444
+ FilterOperator = Shapes::StringShape.new(name: 'FilterOperator')
442
445
  FilterStatus = Shapes::StringShape.new(name: 'FilterStatus')
443
446
  FilterValueString = Shapes::StringShape.new(name: 'FilterValueString')
444
447
  FirstName = Shapes::StringShape.new(name: 'FirstName')
@@ -725,6 +728,7 @@ module Aws::DataZone
725
728
  ListingSummary = Shapes::StructureShape.new(name: 'ListingSummary')
726
729
  ListingSummaryItem = Shapes::StructureShape.new(name: 'ListingSummaryItem')
727
730
  ListingSummaryItems = Shapes::ListShape.new(name: 'ListingSummaryItems')
731
+ Long = Shapes::IntegerShape.new(name: 'Long')
728
732
  LongDescription = Shapes::StringShape.new(name: 'LongDescription')
729
733
  ManagedEndpointCredentials = Shapes::StructureShape.new(name: 'ManagedEndpointCredentials')
730
734
  ManagedEndpointCredentialsIdString = Shapes::StringShape.new(name: 'ManagedEndpointCredentialsIdString')
@@ -2593,6 +2597,11 @@ module Aws::DataZone
2593
2597
  DeleteConnectionOutput.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
2594
2598
  DeleteConnectionOutput.struct_class = Types::DeleteConnectionOutput
2595
2599
 
2600
+ DeleteDataExportConfigurationInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
2601
+ DeleteDataExportConfigurationInput.struct_class = Types::DeleteDataExportConfigurationInput
2602
+
2603
+ DeleteDataExportConfigurationOutput.struct_class = Types::DeleteDataExportConfigurationOutput
2604
+
2596
2605
  DeleteDataProductInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
2597
2606
  DeleteDataProductInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DataProductId, required: true, location: "uri", location_name: "identifier"))
2598
2607
  DeleteDataProductInput.struct_class = Types::DeleteDataProductInput
@@ -2998,7 +3007,9 @@ module Aws::DataZone
2998
3007
  FailureReasons.member = Shapes::ShapeRef.new(shape: ProjectDeletionError)
2999
3008
 
3000
3009
  Filter.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, required: true, location_name: "attribute"))
3001
- Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValueString, required: true, location_name: "value"))
3010
+ Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValueString, location_name: "value"))
3011
+ Filter.add_member(:int_value, Shapes::ShapeRef.new(shape: Long, location_name: "intValue"))
3012
+ Filter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, location_name: "operator"))
3002
3013
  Filter.struct_class = Types::Filter
3003
3014
 
3004
3015
  FilterClause.add_member(:filter, Shapes::ShapeRef.new(shape: Filter, location_name: "filter"))
@@ -6898,6 +6909,21 @@ module Aws::DataZone
6898
6909
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
6899
6910
  end)
6900
6911
 
6912
+ api.add_operation(:delete_data_export_configuration, Seahorse::Model::Operation.new.tap do |o|
6913
+ o.name = "DeleteDataExportConfiguration"
6914
+ o.http_method = "DELETE"
6915
+ o.http_request_uri = "/v2/domains/{domainIdentifier}/data-export-configuration"
6916
+ o.input = Shapes::ShapeRef.new(shape: DeleteDataExportConfigurationInput)
6917
+ o.output = Shapes::ShapeRef.new(shape: DeleteDataExportConfigurationOutput)
6918
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
6919
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
6920
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
6921
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
6922
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
6923
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
6924
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
6925
+ end)
6926
+
6901
6927
  api.add_operation(:delete_data_product, Seahorse::Model::Operation.new.tap do |o|
6902
6928
  o.name = "DeleteDataProduct"
6903
6929
  o.http_method = "DELETE"
@@ -6402,6 +6402,23 @@ module Aws::DataZone
6402
6402
  include Aws::Structure
6403
6403
  end
6404
6404
 
6405
+ # @!attribute [rw] domain_identifier
6406
+ # The domain ID for which you want to delete the data export
6407
+ # configuration.
6408
+ # @return [String]
6409
+ #
6410
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataExportConfigurationInput AWS API Documentation
6411
+ #
6412
+ class DeleteDataExportConfigurationInput < Struct.new(
6413
+ :domain_identifier)
6414
+ SENSITIVE = []
6415
+ include Aws::Structure
6416
+ end
6417
+
6418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataExportConfigurationOutput AWS API Documentation
6419
+ #
6420
+ class DeleteDataExportConfigurationOutput < Aws::EmptyStructure; end
6421
+
6405
6422
  # @!attribute [rw] domain_identifier
6406
6423
  # The ID of the Amazon DataZone domain in which the data product is
6407
6424
  # deleted.
@@ -8076,14 +8093,24 @@ module Aws::DataZone
8076
8093
  # @return [String]
8077
8094
  #
8078
8095
  # @!attribute [rw] value
8079
- # A search filter value in Amazon DataZone.
8096
+ # A search filter string value in Amazon DataZone.
8097
+ # @return [String]
8098
+ #
8099
+ # @!attribute [rw] int_value
8100
+ # A search filter integer value in Amazon DataZone.
8101
+ # @return [Integer]
8102
+ #
8103
+ # @!attribute [rw] operator
8104
+ # Specifies the search filter operator.
8080
8105
  # @return [String]
8081
8106
  #
8082
8107
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Filter AWS API Documentation
8083
8108
  #
8084
8109
  class Filter < Struct.new(
8085
8110
  :attribute,
8086
- :value)
8111
+ :value,
8112
+ :int_value,
8113
+ :operator)
8087
8114
  SENSITIVE = []
8088
8115
  include Aws::Structure
8089
8116
  end
@@ -16691,7 +16718,7 @@ module Aws::DataZone
16691
16718
  end
16692
16719
 
16693
16720
  # @!attribute [rw] domain_identifier
16694
- # The domain ID where you want to create data export configuration
16721
+ # The domain ID for which you want to create data export configuration
16695
16722
  # details.
16696
16723
  # @return [String]
16697
16724
  #
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.65.0'
58
+ GEM_VERSION = '1.67.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1630,6 +1630,15 @@ module Aws
1630
1630
  ) -> _DeleteConnectionResponseSuccess
1631
1631
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
1632
1632
 
1633
+ interface _DeleteDataExportConfigurationResponseSuccess
1634
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataExportConfigurationOutput]
1635
+ end
1636
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_data_export_configuration-instance_method
1637
+ def delete_data_export_configuration: (
1638
+ domain_identifier: ::String
1639
+ ) -> _DeleteDataExportConfigurationResponseSuccess
1640
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataExportConfigurationResponseSuccess
1641
+
1633
1642
  interface _DeleteDataProductResponseSuccess
1634
1643
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProductOutput]
1635
1644
  end
@@ -3469,7 +3478,9 @@ module Aws
3469
3478
  ?filters: {
3470
3479
  filter: {
3471
3480
  attribute: ::String,
3472
- value: ::String
3481
+ value: ::String?,
3482
+ int_value: ::Integer?,
3483
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
3473
3484
  }?,
3474
3485
  and: Array[
3475
3486
  untyped,
@@ -3522,7 +3533,9 @@ module Aws
3522
3533
  ?filters: {
3523
3534
  filter: {
3524
3535
  attribute: ::String,
3525
- value: ::String
3536
+ value: ::String?,
3537
+ int_value: ::Integer?,
3538
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
3526
3539
  }?,
3527
3540
  and: Array[
3528
3541
  untyped,
@@ -3566,7 +3579,9 @@ module Aws
3566
3579
  ?filters: {
3567
3580
  filter: {
3568
3581
  attribute: ::String,
3569
- value: ::String
3582
+ value: ::String?,
3583
+ int_value: ::Integer?,
3584
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
3570
3585
  }?,
3571
3586
  and: Array[
3572
3587
  untyped,
data/sig/types.rbs CHANGED
@@ -1718,6 +1718,14 @@ module Aws::DataZone
1718
1718
  SENSITIVE: []
1719
1719
  end
1720
1720
 
1721
+ class DeleteDataExportConfigurationInput
1722
+ attr_accessor domain_identifier: ::String
1723
+ SENSITIVE: []
1724
+ end
1725
+
1726
+ class DeleteDataExportConfigurationOutput < Aws::EmptyStructure
1727
+ end
1728
+
1721
1729
  class DeleteDataProductInput
1722
1730
  attr_accessor domain_identifier: ::String
1723
1731
  attr_accessor identifier: ::String
@@ -2214,6 +2222,8 @@ module Aws::DataZone
2214
2222
  class Filter
2215
2223
  attr_accessor attribute: ::String
2216
2224
  attr_accessor value: ::String
2225
+ attr_accessor int_value: ::Integer
2226
+ attr_accessor operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")
2217
2227
  SENSITIVE: []
2218
2228
  end
2219
2229
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.3
21
+ version: 3.241.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement