aws-sdk-cloudwatchlogs 1.142.0 → 1.143.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: cc0fc317811316e6011fb38f57641a3c68c18225ef5be28d2058cc29b29c61c7
4
- data.tar.gz: 2fdf519ac5f7da4d74a3be56caf4469aca13b58394ad3fa6dd383e3e069da2c0
3
+ metadata.gz: 52aa15b343b893456e017d9a4c5513cd73e074e597903f5a9e9d4ca8cb9b8f24
4
+ data.tar.gz: 74644e711b2c8d2b04c5f5bd6dba0198c3ad57ffac70c5ab634b28d0411785d6
5
5
  SHA512:
6
- metadata.gz: 284d59099761374515942d4140ffbcfbfdede49e0c5cf707c6392f728cddf12fc1f5cec4359ac766a55e0fcd5ff0b53e1226318f3d8303fed55daaf6cfc1ef78
7
- data.tar.gz: c540d281307d1f713514f80abbc85f45c3fb6ca43e4077a15200728c2ea74e4883578754464940bf51b077307cac6d7671b1632e34d97f0846d0622a7679bfb4
6
+ metadata.gz: 95b033b245fe9b1e858b65472bef0efa986677e7bc61bbfa6abb5e6d00ecaaf888ada45c0971cd6dc98ef3dc23d97e3559b1b8501f852fbfca0f1339070c82b3
7
+ data.tar.gz: 4e998cca3419f3a15400791a1673a794b78acc5632bbe54b66c039e7f001c92d346f4f59df1b468ce1c265b4b1fa482e028e636ab8d4a31b3e25f3c0ae306011
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.143.0 (2026-04-02)
5
+ ------------------
6
+
7
+ * Feature - We are pleased to announce that our logs transformation csv processor now has a destination field, allowing you to specify under which parent node parsed columns be placed under.
8
+
4
9
  1.142.0 (2026-03-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.142.0
1
+ 1.143.0
@@ -4869,6 +4869,7 @@ module Aws::CloudWatchLogs
4869
4869
  # resp.transformer_config[0].csv.columns #=> Array
4870
4870
  # resp.transformer_config[0].csv.columns[0] #=> String
4871
4871
  # resp.transformer_config[0].csv.source #=> String
4872
+ # resp.transformer_config[0].csv.destination #=> String
4872
4873
  # resp.transformer_config[0].date_time_converter.source #=> String
4873
4874
  # resp.transformer_config[0].date_time_converter.target #=> String
4874
4875
  # resp.transformer_config[0].date_time_converter.target_format #=> String
@@ -6602,6 +6603,8 @@ module Aws::CloudWatchLogs
6602
6603
  #
6603
6604
  # * For CloudFront, the valid value is `ACCESS_LOGS`.
6604
6605
  #
6606
+ # * For DevOps Agent, the valid value is `APPLICATION_LOGS`.
6607
+ #
6605
6608
  # * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
6606
6609
  #
6607
6610
  # * For Elemental MediaPackage, the valid values are
@@ -7805,6 +7808,7 @@ module Aws::CloudWatchLogs
7805
7808
  # delimiter: "Delimiter",
7806
7809
  # columns: ["Column"],
7807
7810
  # source: "Source",
7811
+ # destination: "DestinationField",
7808
7812
  # },
7809
7813
  # date_time_converter: {
7810
7814
  # source: "Source", # required
@@ -8629,6 +8633,7 @@ module Aws::CloudWatchLogs
8629
8633
  # delimiter: "Delimiter",
8630
8634
  # columns: ["Column"],
8631
8635
  # source: "Source",
8636
+ # destination: "DestinationField",
8632
8637
  # },
8633
8638
  # date_time_converter: {
8634
8639
  # source: "Source", # required
@@ -9217,7 +9222,7 @@ module Aws::CloudWatchLogs
9217
9222
  tracer: tracer
9218
9223
  )
9219
9224
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
9220
- context[:gem_version] = '1.142.0'
9225
+ context[:gem_version] = '1.143.0'
9221
9226
  Seahorse::Client::Request.new(handlers, context)
9222
9227
  end
9223
9228
 
@@ -756,6 +756,7 @@ module Aws::CloudWatchLogs
756
756
  CSV.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "delimiter"))
757
757
  CSV.add_member(:columns, Shapes::ShapeRef.new(shape: Columns, location_name: "columns"))
758
758
  CSV.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "source"))
759
+ CSV.add_member(:destination, Shapes::ShapeRef.new(shape: DestinationField, location_name: "destination"))
759
760
  CSV.struct_class = Types::CSV
760
761
 
761
762
  CancelExportTaskRequest.add_member(:task_id, Shapes::ShapeRef.new(shape: ExportTaskId, required: true, location_name: "taskId"))
@@ -483,13 +483,20 @@ module Aws::CloudWatchLogs
483
483
  # is processed.
484
484
  # @return [String]
485
485
  #
486
+ # @!attribute [rw] destination
487
+ # The path to the parent field to put transformed key value pairs
488
+ # under. If you omit this value, the key value pairs will be placed
489
+ # under the root node.
490
+ # @return [String]
491
+ #
486
492
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CSV AWS API Documentation
487
493
  #
488
494
  class CSV < Struct.new(
489
495
  :quote_character,
490
496
  :delimiter,
491
497
  :columns,
492
- :source)
498
+ :source,
499
+ :destination)
493
500
  SENSITIVE = []
494
501
  include Aws::Structure
495
502
  end
@@ -7739,6 +7746,8 @@ module Aws::CloudWatchLogs
7739
7746
  #
7740
7747
  # * For CloudFront, the valid value is `ACCESS_LOGS`.
7741
7748
  #
7749
+ # * For DevOps Agent, the valid value is `APPLICATION_LOGS`.
7750
+ #
7742
7751
  # * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
7743
7752
  #
7744
7753
  # * For Elemental MediaPackage, the valid values are
@@ -8992,12 +9001,13 @@ module Aws::CloudWatchLogs
8992
9001
  # @return [String]
8993
9002
  #
8994
9003
  # @!attribute [rw] owner_account_id
8995
- # The AWS accountId for the bucket owning account.
9004
+ # The Amazon Web Services accountId for the bucket owning account.
8996
9005
  # @return [String]
8997
9006
  #
8998
9007
  # @!attribute [rw] kms_key_id
8999
9008
  # The Amazon Resource Name (ARN) of the KMS encryption key. Must
9000
- # belong to the same AWS Region as the destination Amazon S3 bucket.
9009
+ # belong to the same Amazon Web Services Region as the destination
9010
+ # Amazon S3 bucket.
9001
9011
  # @return [String]
9002
9012
  #
9003
9013
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/S3Configuration AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::CloudWatchLogs
55
55
  autoload :Endpoints, 'aws-sdk-cloudwatchlogs/endpoints'
56
56
  autoload :EventStreams, 'aws-sdk-cloudwatchlogs/event_streams'
57
57
 
58
- GEM_VERSION = '1.142.0'
58
+ GEM_VERSION = '1.143.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1345,7 +1345,8 @@ module Aws
1345
1345
  quote_character: ::String?,
1346
1346
  delimiter: ::String?,
1347
1347
  columns: Array[::String]?,
1348
- source: ::String?
1348
+ source: ::String?,
1349
+ destination: ::String?
1349
1350
  }?,
1350
1351
  date_time_converter: {
1351
1352
  source: ::String,
@@ -1557,7 +1558,8 @@ module Aws
1557
1558
  quote_character: ::String?,
1558
1559
  delimiter: ::String?,
1559
1560
  columns: Array[::String]?,
1560
- source: ::String?
1561
+ source: ::String?,
1562
+ destination: ::String?
1561
1563
  }?,
1562
1564
  date_time_converter: {
1563
1565
  source: ::String,
data/sig/types.rbs CHANGED
@@ -100,6 +100,7 @@ module Aws::CloudWatchLogs
100
100
  attr_accessor delimiter: ::String
101
101
  attr_accessor columns: ::Array[::String]
102
102
  attr_accessor source: ::String
103
+ attr_accessor destination: ::String
103
104
  SENSITIVE: []
104
105
  end
105
106
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchlogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.142.0
4
+ version: 1.143.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services