aws-sdk-cloudwatchlogs 1.111.0 → 1.112.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: 31ff82080bdc70e8104d3d54c360381d1f0f4c7dbe3b120d6bce7b26cc35db39
4
- data.tar.gz: 65de672eb9153530f99266d4a801cceb79f3497cfeef76713fd22c9a378a7712
3
+ metadata.gz: f356e6ecac844b071bde533cfef48a424dfb2fc891699f9342b4dd82abcdc7fd
4
+ data.tar.gz: 8e3ec9b7154eb91d193beadbe42ff6cde43ec05b3b4a9a58ce398a2b2d697def
5
5
  SHA512:
6
- metadata.gz: ec70940e88a925ed8e8fcb007df71b81f982559490ccf87899e5943d3ccf3bb7e70aae85eeb7713d33e02c74e9424cf6efc7df01539e7a18280c9928bbac2929
7
- data.tar.gz: b53f204b30bcb5270822ed293407d5f8d8d871d20692258a7309f81bb3e1aa56213092e087eb7e917272c80b0efd7327c084fd2d95db5d347b1f21885a44a4c7
6
+ metadata.gz: 8a2fbf49eeacbe84ca5f7af9c2774af186e2fbf79a7345821c049feda2918fa4114b4be71d354c650a19476ebd5d71dd76965f1076855d2b5c82edec073dea46
7
+ data.tar.gz: 20a96ac9ba5a94c095274df7831cb834b78b39bfab363e2b88b6fba22ff7a26f6fc5ee5bd99a6cb80001e7ae4b3005aa002217595a9c89145699cfb2a2236393
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.112.0 (2025-04-30)
5
+ ------------------
6
+
7
+ * Feature - CloudWatch Logs supports "DELIVERY" log class. This log class is used only for delivering AWS Lambda logs to Amazon S3 or Amazon Data Firehose.
8
+
4
9
  1.111.0 (2025-04-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.111.0
1
+ 1.112.0
@@ -534,9 +534,9 @@ module Aws::CloudWatchLogs
534
534
  # results that were encrypted with that key will be unencryptable and
535
535
  # unusable.
536
536
  #
537
- # <note markdown="1"> CloudWatch Logs supports only symmetric KMS keys. Do not use an
538
- # associate an asymmetric KMS key with your log group or query results.
539
- # For more information, see [Using Symmetric and Asymmetric Keys][3].
537
+ # <note markdown="1"> CloudWatch Logs supports only symmetric KMS keys. Do not associate an
538
+ # asymmetric KMS key with your log group or query results. For more
539
+ # information, see [Using Symmetric and Asymmetric Keys][3].
540
540
  #
541
541
  # </note>
542
542
  #
@@ -784,7 +784,7 @@ module Aws::CloudWatchLogs
784
784
  # exported objects.
785
785
  #
786
786
  # <note markdown="1"> We recommend that you don't regularly export to Amazon S3 as a way to
787
- # continuously archive your logs. For that use case, we instaed
787
+ # continuously archive your logs. For that use case, we instead
788
788
  # recommend that you use subscriptions. For more information about
789
789
  # subscriptions, see [Real-time processing of log data with
790
790
  # subscriptions][3].
@@ -1062,13 +1062,19 @@ module Aws::CloudWatchLogs
1062
1062
  #
1063
1063
  # @option params [String] :log_group_class
1064
1064
  # Use this parameter to specify the log group class for this log group.
1065
- # There are two classes:
1065
+ # There are three classes:
1066
1066
  #
1067
1067
  # * The `Standard` log class supports all CloudWatch Logs features.
1068
1068
  #
1069
1069
  # * The `Infrequent Access` log class supports a subset of CloudWatch
1070
1070
  # Logs features and incurs lower costs.
1071
1071
  #
1072
+ # * Use the `Delivery` log class only for delivering Lambda logs to
1073
+ # store in Amazon S3 or Amazon Data Firehose. Log events in log groups
1074
+ # in the Delivery class are kept in CloudWatch Logs for only one day.
1075
+ # This log class doesn't offer rich CloudWatch Logs capabilities such
1076
+ # as CloudWatch Logs Insights queries.
1077
+ #
1072
1078
  # If you omit this parameter, the default of `STANDARD` is used.
1073
1079
  #
1074
1080
  # The value of `logGroupClass` can't be changed after a log group is
@@ -1091,7 +1097,7 @@ module Aws::CloudWatchLogs
1091
1097
  # tags: {
1092
1098
  # "TagKey" => "TagValue",
1093
1099
  # },
1094
- # log_group_class: "STANDARD", # accepts STANDARD, INFREQUENT_ACCESS
1100
+ # log_group_class: "STANDARD", # accepts STANDARD, INFREQUENT_ACCESS, DELIVERY
1095
1101
  # })
1096
1102
  #
1097
1103
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/CreateLogGroup AWS API Documentation
@@ -1717,7 +1723,7 @@ module Aws::CloudWatchLogs
1717
1723
  # permissions.
1718
1724
  #
1719
1725
  # * To see subscription filter policies, you must have the
1720
- # `logs:DescrubeSubscriptionFilters` and
1726
+ # `logs:DescribeSubscriptionFilters` and
1721
1727
  # `logs:DescribeAccountPolicies` permissions.
1722
1728
  #
1723
1729
  # * To see transformer policies, you must have the `logs:GetTransformer`
@@ -2311,7 +2317,7 @@ module Aws::CloudWatchLogs
2311
2317
  # the monitoring account.
2312
2318
  #
2313
2319
  # @option params [String] :log_group_class
2314
- # Specifies the log group class for this log group. There are two
2320
+ # Specifies the log group class for this log group. There are three
2315
2321
  # classes:
2316
2322
  #
2317
2323
  # * The `Standard` log class supports all CloudWatch Logs features.
@@ -2319,6 +2325,12 @@ module Aws::CloudWatchLogs
2319
2325
  # * The `Infrequent Access` log class supports a subset of CloudWatch
2320
2326
  # Logs features and incurs lower costs.
2321
2327
  #
2328
+ # * Use the `Delivery` log class only for delivering Lambda logs to
2329
+ # store in Amazon S3 or Amazon Data Firehose. Log events in log groups
2330
+ # in the Delivery class are kept in CloudWatch Logs for only one day.
2331
+ # This log class doesn't offer rich CloudWatch Logs capabilities such
2332
+ # as CloudWatch Logs Insights queries.
2333
+ #
2322
2334
  # For details about the features supported by each class, see [Log
2323
2335
  # classes][1]
2324
2336
  #
@@ -2342,7 +2354,7 @@ module Aws::CloudWatchLogs
2342
2354
  # next_token: "NextToken",
2343
2355
  # limit: 1,
2344
2356
  # include_linked_accounts: false,
2345
- # log_group_class: "STANDARD", # accepts STANDARD, INFREQUENT_ACCESS
2357
+ # log_group_class: "STANDARD", # accepts STANDARD, INFREQUENT_ACCESS, DELIVERY
2346
2358
  # })
2347
2359
  #
2348
2360
  # @example Response structure
@@ -2358,7 +2370,7 @@ module Aws::CloudWatchLogs
2358
2370
  # resp.log_groups[0].data_protection_status #=> String, one of "ACTIVATED", "DELETED", "ARCHIVED", "DISABLED"
2359
2371
  # resp.log_groups[0].inherited_properties #=> Array
2360
2372
  # resp.log_groups[0].inherited_properties[0] #=> String, one of "ACCOUNT_DATA_PROTECTION"
2361
- # resp.log_groups[0].log_group_class #=> String, one of "STANDARD", "INFREQUENT_ACCESS"
2373
+ # resp.log_groups[0].log_group_class #=> String, one of "STANDARD", "INFREQUENT_ACCESS", "DELIVERY"
2362
2374
  # resp.log_groups[0].log_group_arn #=> String
2363
2375
  # resp.next_token #=> String
2364
2376
  #
@@ -5237,7 +5249,7 @@ module Aws::CloudWatchLogs
5237
5249
  # * A batch of log events in a single request cannot span more than 24
5238
5250
  # hours. Otherwise, the operation fails.
5239
5251
  #
5240
- # * Each log event can be no larger than 256 KB.
5252
+ # * Each log event can be no larger than 1 MB.
5241
5253
  #
5242
5254
  # * The maximum number of log events in a batch is 10,000.
5243
5255
  #
@@ -6023,6 +6035,12 @@ module Aws::CloudWatchLogs
6023
6035
  # * A [SessionTimeoutException][5] object is returned when the session
6024
6036
  # times out, after it has been kept open for three hours.
6025
6037
  #
6038
+ # <note markdown="1"> The `StartLiveTail` API routes requests to
6039
+ # `streaming-logs.Region.amazonaws.com` using SDK host prefix injection.
6040
+ # VPC endpoint support is not available for this API.
6041
+ #
6042
+ # </note>
6043
+ #
6026
6044
  # You can end a session before it times out by closing the session
6027
6045
  # stream or by closing the client that is receiving the stream. The
6028
6046
  # session also ends if the established connection between the client and
@@ -7067,7 +7085,7 @@ module Aws::CloudWatchLogs
7067
7085
  tracer: tracer
7068
7086
  )
7069
7087
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
7070
- context[:gem_version] = '1.111.0'
7088
+ context[:gem_version] = '1.112.0'
7071
7089
  Seahorse::Client::Request.new(handlers, context)
7072
7090
  end
7073
7091
 
@@ -904,13 +904,19 @@ module Aws::CloudWatchLogs
904
904
  #
905
905
  # @!attribute [rw] log_group_class
906
906
  # Use this parameter to specify the log group class for this log
907
- # group. There are two classes:
907
+ # group. There are three classes:
908
908
  #
909
909
  # * The `Standard` log class supports all CloudWatch Logs features.
910
910
  #
911
911
  # * The `Infrequent Access` log class supports a subset of CloudWatch
912
912
  # Logs features and incurs lower costs.
913
913
  #
914
+ # * Use the `Delivery` log class only for delivering Lambda logs to
915
+ # store in Amazon S3 or Amazon Data Firehose. Log events in log
916
+ # groups in the Delivery class are kept in CloudWatch Logs for only
917
+ # one day. This log class doesn't offer rich CloudWatch Logs
918
+ # capabilities such as CloudWatch Logs Insights queries.
919
+ #
914
920
  # If you omit this parameter, the default of `STANDARD` is used.
915
921
  #
916
922
  # The value of `logGroupClass` can't be changed after a log group is
@@ -2055,7 +2061,7 @@ module Aws::CloudWatchLogs
2055
2061
  # @return [Boolean]
2056
2062
  #
2057
2063
  # @!attribute [rw] log_group_class
2058
- # Specifies the log group class for this log group. There are two
2064
+ # Specifies the log group class for this log group. There are three
2059
2065
  # classes:
2060
2066
  #
2061
2067
  # * The `Standard` log class supports all CloudWatch Logs features.
@@ -2063,6 +2069,12 @@ module Aws::CloudWatchLogs
2063
2069
  # * The `Infrequent Access` log class supports a subset of CloudWatch
2064
2070
  # Logs features and incurs lower costs.
2065
2071
  #
2072
+ # * Use the `Delivery` log class only for delivering Lambda logs to
2073
+ # store in Amazon S3 or Amazon Data Firehose. Log events in log
2074
+ # groups in the Delivery class are kept in CloudWatch Logs for only
2075
+ # one day. This log class doesn't offer rich CloudWatch Logs
2076
+ # capabilities such as CloudWatch Logs Insights queries.
2077
+ #
2066
2078
  # For details about the features supported by each class, see [Log
2067
2079
  # classes][1]
2068
2080
  #
@@ -3560,7 +3572,7 @@ module Aws::CloudWatchLogs
3560
3572
  # @return [Integer]
3561
3573
  #
3562
3574
  # @!attribute [rw] message
3563
- # The raw event message. Each log event can be no larger than 256 KB.
3575
+ # The raw event message. Each log event can be no larger than 1 MB.
3564
3576
  # @return [String]
3565
3577
  #
3566
3578
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/InputLogEvent AWS API Documentation
@@ -4205,16 +4217,22 @@ module Aws::CloudWatchLogs
4205
4217
  # @return [Array<String>]
4206
4218
  #
4207
4219
  # @!attribute [rw] log_group_class
4208
- # This specifies the log group class for this log group. There are two
4209
- # classes:
4220
+ # This specifies the log group class for this log group. There are
4221
+ # three classes:
4210
4222
  #
4211
4223
  # * The `Standard` log class supports all CloudWatch Logs features.
4212
4224
  #
4213
4225
  # * The `Infrequent Access` log class supports a subset of CloudWatch
4214
4226
  # Logs features and incurs lower costs.
4215
4227
  #
4216
- # For details about the features supported by each class, see [Log
4217
- # classes][1]
4228
+ # * Use the `Delivery` log class only for delivering Lambda logs to
4229
+ # store in Amazon S3 or Amazon Data Firehose. Log events in log
4230
+ # groups in the Delivery class are kept in CloudWatch Logs for only
4231
+ # one day. This log class doesn't offer rich CloudWatch Logs
4232
+ # capabilities such as CloudWatch Logs Insights queries.
4233
+ #
4234
+ # For details about the features supported by the Standard and
4235
+ # Infrequent Access classes, see [Log classes][1]
4218
4236
  #
4219
4237
  #
4220
4238
  #
@@ -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.111.0'
58
+ GEM_VERSION = '1.112.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -150,7 +150,7 @@ module Aws
150
150
  log_group_name: ::String,
151
151
  ?kms_key_id: ::String,
152
152
  ?tags: Hash[::String, ::String],
153
- ?log_group_class: ("STANDARD" | "INFREQUENT_ACCESS")
153
+ ?log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY")
154
154
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
155
155
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
156
156
 
@@ -414,7 +414,7 @@ module Aws
414
414
  ?next_token: ::String,
415
415
  ?limit: ::Integer,
416
416
  ?include_linked_accounts: bool,
417
- ?log_group_class: ("STANDARD" | "INFREQUENT_ACCESS")
417
+ ?log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY")
418
418
  ) -> _DescribeLogGroupsResponseSuccess
419
419
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLogGroupsResponseSuccess
420
420
 
data/sig/types.rbs CHANGED
@@ -178,7 +178,7 @@ module Aws::CloudWatchLogs
178
178
  attr_accessor log_group_name: ::String
179
179
  attr_accessor kms_key_id: ::String
180
180
  attr_accessor tags: ::Hash[::String, ::String]
181
- attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS")
181
+ attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY")
182
182
  SENSITIVE: []
183
183
  end
184
184
 
@@ -477,7 +477,7 @@ module Aws::CloudWatchLogs
477
477
  attr_accessor next_token: ::String
478
478
  attr_accessor limit: ::Integer
479
479
  attr_accessor include_linked_accounts: bool
480
- attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS")
480
+ attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY")
481
481
  SENSITIVE: []
482
482
  end
483
483
 
@@ -998,7 +998,7 @@ module Aws::CloudWatchLogs
998
998
  attr_accessor kms_key_id: ::String
999
999
  attr_accessor data_protection_status: ("ACTIVATED" | "DELETED" | "ARCHIVED" | "DISABLED")
1000
1000
  attr_accessor inherited_properties: ::Array[("ACCOUNT_DATA_PROTECTION")]
1001
- attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS")
1001
+ attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY")
1002
1002
  attr_accessor log_group_arn: ::String
1003
1003
  SENSITIVE: []
1004
1004
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchlogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.111.0
4
+ version: 1.112.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-04-28 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