aws-sdk-cloudwatchlogs 1.106.0 → 1.107.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: 5373db514ad6a6fe35445f7790061c10d15faa195f7a809704ebb3bb8d5052c9
4
- data.tar.gz: 3ad0c1c3325ab6f87ad88d12a3e240c27f2dcb7a9b6050e69f704c1ef3c51135
3
+ metadata.gz: 62c15304614fa28ce6ab147d2895bc78a93367488b3e5bcd87c5eff32341cabb
4
+ data.tar.gz: '0417995d810095732e854e3b32237c6cba45e19c8b77d8553db77fd7b669fa79'
5
5
  SHA512:
6
- metadata.gz: 07707b68876fb2ad1f4bfdcf61ffb735a066e1c55db175629797a424c6066fc7a97bd1b7e9173274d7a87971788a299538422638c6f1eda94810691f2bc619ee
7
- data.tar.gz: 87c2783a58a75984156615f4ba38da18f169171264d8f4fc6689dbae36798f7708d97c3705b75117a8c8e57736e69e0a8cabbf59fc024f746bebcc9042e91cf7
6
+ metadata.gz: 4552a85c2505a4ba2fd743c6d11aabc58d1b2cd11a4b0b8db84bb58b390741419a32e1a22ae6ffb9856426d713af3c3f4e152c4259bff59e6109b9f46dffda6f
7
+ data.tar.gz: 73dc9b59d6927777f40f09b567d26d1714d068afa33b3dce3f3f59ab02ded656e151036781f6ec411d756cf0d5026fcc9b2c36eee15332e05ac83d9f499cbc75
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.107.0 (2025-01-21)
5
+ ------------------
6
+
7
+ * Feature - Documentation-only update to address doc errors
8
+
4
9
  1.106.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.106.0
1
+ 1.107.0
@@ -496,9 +496,10 @@ module Aws::CloudWatchLogs
496
496
  # parameter or the `resourceIdentifier` parameter. You can't specify
497
497
  # both of those parameters in the same operation.
498
498
  #
499
- # * Specify the `logGroupName` parameter to cause all log events stored
500
- # in the log group to be encrypted with that key. Only the log events
501
- # ingested after the key is associated are encrypted with that key.
499
+ # * Specify the `logGroupName` parameter to cause log events ingested
500
+ # into that log group to be encrypted with that key. Only the log
501
+ # events ingested after the key is associated are encrypted with that
502
+ # key.
502
503
  #
503
504
  # Associating a KMS key with a log group overrides any existing
504
505
  # associations between the log group and a KMS key. After a KMS key is
@@ -782,6 +783,14 @@ module Aws::CloudWatchLogs
782
783
  # specify a prefix to be used as the Amazon S3 key prefix for all
783
784
  # exported objects.
784
785
  #
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
788
+ # recommend that you use subscriptions. For more information about
789
+ # subscriptions, see [Real-time processing of log data with
790
+ # subscriptions][3].
791
+ #
792
+ # </note>
793
+ #
785
794
  # <note markdown="1"> Time-based sorting on chunks of log data inside an exported file is
786
795
  # not guaranteed. You can sort the exported log field data by using
787
796
  # Linux utilities.
@@ -792,6 +801,7 @@ module Aws::CloudWatchLogs
792
801
  #
793
802
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeExportTasks.html
794
803
  # [2]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_CancelExportTask.html
804
+ # [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Subscriptions.html
795
805
  #
796
806
  # @option params [String] :task_name
797
807
  # The name of the export task.
@@ -1212,7 +1222,7 @@ module Aws::CloudWatchLogs
1212
1222
  req.send_request(options)
1213
1223
  end
1214
1224
 
1215
- # Deletes s *delivery*. A delivery is a connection between a logical
1225
+ # Deletes a *delivery*. A delivery is a connection between a logical
1216
1226
  # *delivery source* and a logical *delivery destination*. Deleting a
1217
1227
  # delivery only deletes the connection between the delivery source and
1218
1228
  # delivery destination. It does not delete the delivery destination or
@@ -1697,6 +1707,25 @@ module Aws::CloudWatchLogs
1697
1707
 
1698
1708
  # Returns a list of all CloudWatch Logs account policies in the account.
1699
1709
  #
1710
+ # To use this operation, you must be signed on with the correct
1711
+ # permissions depending on the type of policy that you are retrieving
1712
+ # information for.
1713
+ #
1714
+ # * To see data protection policies, you must have the
1715
+ # `logs:GetDataProtectionPolicy` and `logs:DescribeAccountPolicies`
1716
+ # permissions.
1717
+ #
1718
+ # * To see subscription filter policies, you must have the
1719
+ # `logs:DescrubeSubscriptionFilters` and
1720
+ # `logs:DescribeAccountPolicies` permissions.
1721
+ #
1722
+ # * To see transformer policies, you must have the `logs:GetTransformer`
1723
+ # and `logs:DescribeAccountPolicies` permissions.
1724
+ #
1725
+ # * To see field index policies, you must have the
1726
+ # `logs:DescribeIndexPolicies` and `logs:DescribeAccountPolicies`
1727
+ # permissions.
1728
+ #
1700
1729
  # @option params [required, String] :policy_type
1701
1730
  # Use this parameter to limit the returned policies to only the policies
1702
1731
  # that match the policy type that you specify.
@@ -2349,8 +2378,8 @@ module Aws::CloudWatchLogs
2349
2378
  # `logGroupIdentifier` or `logGroupName`. You must include one of these
2350
2379
  # two parameters, but you can't include both.
2351
2380
  #
2352
- # This operation has a limit of five transactions per second, after
2353
- # which transactions are throttled.
2381
+ # This operation has a limit of 25 transactions per second, after which
2382
+ # transactions are throttled.
2354
2383
  #
2355
2384
  # If you are using CloudWatch cross-account observability, you can use
2356
2385
  # this operation in a monitoring account and view data from the linked
@@ -4045,6 +4074,22 @@ module Aws::CloudWatchLogs
4045
4074
  # policy, or field index policy that applies to all log groups or a
4046
4075
  # subset of log groups in the account.
4047
4076
  #
4077
+ # To use this operation, you must be signed on with the correct
4078
+ # permissions depending on the type of policy that you are creating.
4079
+ #
4080
+ # * To create a data protection policy, you must have the
4081
+ # `logs:PutDataProtectionPolicy` and `logs:PutAccountPolicy`
4082
+ # permissions.
4083
+ #
4084
+ # * To create a subscription filter policy, you must have the
4085
+ # `logs:PutSubscriptionFilter` and `logs:PutccountPolicy` permissions.
4086
+ #
4087
+ # * To create a transformer policy, you must have the
4088
+ # `logs:PutTransformer` and `logs:PutAccountPolicy` permissions.
4089
+ #
4090
+ # * To create a field index policy, you must have the
4091
+ # `logs:PutIndexPolicy` and `logs:PutAccountPolicy` permissions.
4092
+ #
4048
4093
  # **Data protection policy**
4049
4094
  #
4050
4095
  # A data protection policy can help safeguard sensitive data that's
@@ -4522,9 +4567,10 @@ module Aws::CloudWatchLogs
4522
4567
  # the resource that is actually sending the logs. For more
4523
4568
  # information, see [PutDeliverySource][1].
4524
4569
  #
4525
- # * Use `PutDeliveryDestination` to create a *delivery destination*,
4526
- # which is a logical object that represents the actual delivery
4527
- # destination.
4570
+ # * Use `PutDeliveryDestination` to create a *delivery destination* in
4571
+ # the same account of the actual delivery destination. The delivery
4572
+ # destination that you create is a logical object that represents the
4573
+ # actual delivery destination.
4528
4574
  #
4529
4575
  # * If you are delivering logs cross-account, you must use
4530
4576
  # [PutDeliveryDestinationPolicy][2] in the destination account to
@@ -4741,13 +4787,27 @@ module Aws::CloudWatchLogs
4741
4787
  #
4742
4788
  # * For Amazon Bedrock, the valid value is `APPLICATION_LOGS`.
4743
4789
  #
4790
+ # * For CloudFront, the valid value is `ACCESS_LOGS`.
4791
+ #
4744
4792
  # * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
4745
4793
  #
4794
+ # * For Elemental MediaPackage, the valid values are
4795
+ # `EGRESS_ACCESS_LOGS` and `INGRESS_ACCESS_LOGS`.
4796
+ #
4797
+ # * For Elemental MediaTailor, the valid values are
4798
+ # `AD_DECISION_SERVER_LOGS`, `MANIFEST_SERVICE_LOGS`, and
4799
+ # `TRANSCODE_LOGS`.
4800
+ #
4746
4801
  # * For IAM Identity Center, the valid value is `ERROR_LOGS`.
4747
4802
  #
4803
+ # * For Amazon Q, the valid value is `EVENT_LOGS`.
4804
+ #
4805
+ # * For Amazon SES mail manager, the valid value is `APPLICATION_LOG`.
4806
+ #
4748
4807
  # * For Amazon WorkMail, the valid values are `ACCESS_CONTROL_LOGS`,
4749
- # `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`, and
4750
- # `WORKMAIL_MAILBOX_ACCESS_LOGS`.
4808
+ # `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`,
4809
+ # `WORKMAIL_MAILBOX_ACCESS_LOGS`, and
4810
+ # `WORKMAIL_PERSONAL_ACCESS_TOKEN_LOGS`.
4751
4811
  #
4752
4812
  # @option params [Hash<String,String>] :tags
4753
4813
  # An optional list of key-value pairs to associate with the resource.
@@ -5204,12 +5264,12 @@ module Aws::CloudWatchLogs
5204
5264
  # The maximum number of metric filters that can be associated with a log
5205
5265
  # group is 100.
5206
5266
  #
5207
- # Using regular expressions to create metric filters is supported. For
5208
- # these filters, there is a quota of two regular expression patterns
5209
- # within a single filter pattern. There is also a quota of five regular
5267
+ # Using regular expressions in filter patterns is supported. For these
5268
+ # filters, there is a quota of two regular expression patterns within a
5269
+ # single filter pattern. There is also a quota of five regular
5210
5270
  # expression patterns per log group. For more information about using
5211
- # regular expressions in metric filters, see [ Filter pattern syntax for
5212
- # metric filters, subscription filters, filter log events, and Live
5271
+ # regular expressions in filter patterns, see [ Filter pattern syntax
5272
+ # for metric filters, subscription filters, filter log events, and Live
5213
5273
  # Tail][2].
5214
5274
  #
5215
5275
  # When you create a metric filter, you can also optionally assign a unit
@@ -5554,13 +5614,13 @@ module Aws::CloudWatchLogs
5554
5614
  # it. If you are updating an existing filter, you must specify the
5555
5615
  # correct name in `filterName`.
5556
5616
  #
5557
- # Using regular expressions to create subscription filters is supported.
5558
- # For these filters, there is a quotas of quota of two regular
5559
- # expression patterns within a single filter pattern. There is also a
5560
- # quota of five regular expression patterns per log group. For more
5561
- # information about using regular expressions in subscription filters,
5562
- # see [ Filter pattern syntax for metric filters, subscription filters,
5563
- # filter log events, and Live Tail][3].
5617
+ # Using regular expressions in filter patterns is supported. For these
5618
+ # filters, there is a quotas of quota of two regular expression patterns
5619
+ # within a single filter pattern. There is also a quota of five regular
5620
+ # expression patterns per log group. For more information about using
5621
+ # regular expressions in filter patterns, see [ Filter pattern syntax
5622
+ # for metric filters, subscription filters, filter log events, and Live
5623
+ # Tail][3].
5564
5624
  #
5565
5625
  # To perform a `PutSubscriptionFilter` operation for any destination
5566
5626
  # except a Lambda function, you must also have the `iam:PassRole`
@@ -6941,7 +7001,7 @@ module Aws::CloudWatchLogs
6941
7001
  tracer: tracer
6942
7002
  )
6943
7003
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
6944
- context[:gem_version] = '1.106.0'
7004
+ context[:gem_version] = '1.107.0'
6945
7005
  Seahorse::Client::Request.new(handlers, context)
6946
7006
  end
6947
7007
 
@@ -4949,12 +4949,12 @@ module Aws::CloudWatchLogs
4949
4949
  # create the integration. This role must have the permissions
4950
4950
  # necessary to access the OpenSearch Service collection to be able to
4951
4951
  # create the dashboards. For more information about the permissions
4952
- # needed, see [Create an IAM role to access the OpenSearch Service
4953
- # collection][1] in the CloudWatch Logs User Guide.
4952
+ # needed, see [Permissions that the integration needs][1] in the
4953
+ # CloudWatch Logs User Guide.
4954
4954
  #
4955
4955
  #
4956
4956
  #
4957
- # [1]: https://docs.aws.amazon.com/OpenSearch-Dashboards-CreateRole
4957
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/OpenSearch-Dashboards-CreateRole.html
4958
4958
  # @return [String]
4959
4959
  #
4960
4960
  # @!attribute [rw] dashboard_viewer_principals
@@ -4962,8 +4962,12 @@ module Aws::CloudWatchLogs
4962
4962
  # permission to for viewing the dashboards.
4963
4963
  #
4964
4964
  # In addition to specifying these users here, you must also grant them
4965
- # the **CloudWatchOpenSearchDashboardsAccess** IAM policy. For more
4966
- # information, see
4965
+ # the **CloudWatchOpenSearchDashboardAccess** IAM policy. For more
4966
+ # information, see [IAM policies for users][1].
4967
+ #
4968
+ #
4969
+ #
4970
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/OpenSearch-Dashboards-UserRoles.html
4967
4971
  # @return [Array<String>]
4968
4972
  #
4969
4973
  # @!attribute [rw] application_arn
@@ -5982,13 +5986,27 @@ module Aws::CloudWatchLogs
5982
5986
  #
5983
5987
  # * For Amazon Bedrock, the valid value is `APPLICATION_LOGS`.
5984
5988
  #
5989
+ # * For CloudFront, the valid value is `ACCESS_LOGS`.
5990
+ #
5985
5991
  # * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
5986
5992
  #
5993
+ # * For Elemental MediaPackage, the valid values are
5994
+ # `EGRESS_ACCESS_LOGS` and `INGRESS_ACCESS_LOGS`.
5995
+ #
5996
+ # * For Elemental MediaTailor, the valid values are
5997
+ # `AD_DECISION_SERVER_LOGS`, `MANIFEST_SERVICE_LOGS`, and
5998
+ # `TRANSCODE_LOGS`.
5999
+ #
5987
6000
  # * For IAM Identity Center, the valid value is `ERROR_LOGS`.
5988
6001
  #
6002
+ # * For Amazon Q, the valid value is `EVENT_LOGS`.
6003
+ #
6004
+ # * For Amazon SES mail manager, the valid value is `APPLICATION_LOG`.
6005
+ #
5989
6006
  # * For Amazon WorkMail, the valid values are `ACCESS_CONTROL_LOGS`,
5990
- # `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`, and
5991
- # `WORKMAIL_MAILBOX_ACCESS_LOGS`.
6007
+ # `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`,
6008
+ # `WORKMAIL_MAILBOX_ACCESS_LOGS`, and
6009
+ # `WORKMAIL_PERSONAL_ACCESS_TOKEN_LOGS`.
5992
6010
  # @return [String]
5993
6011
  #
5994
6012
  # @!attribute [rw] tags
@@ -7033,9 +7051,14 @@ module Aws::CloudWatchLogs
7033
7051
  # @!attribute [rw] suffix_path
7034
7052
  # This string allows re-configuring the S3 object prefix to contain
7035
7053
  # either static or variable sections. The valid variables to use in
7036
- # the suffix path will vary by each log source. See
7037
- # ConfigurationTemplate$allowedSuffixPathFields for more info on what
7038
- # values are supported in the suffix path for each log source.
7054
+ # the suffix path will vary by each log source. To find the values
7055
+ # supported for the suffix path for each log source, use the
7056
+ # [DescribeConfigurationTemplates][1] operation and check the
7057
+ # `allowedSuffixPathFields` field in the response.
7058
+ #
7059
+ #
7060
+ #
7061
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeConfigurationTemplates.html
7039
7062
  # @return [String]
7040
7063
  #
7041
7064
  # @!attribute [rw] enable_hive_compatible_path
@@ -7083,7 +7106,7 @@ module Aws::CloudWatchLogs
7083
7106
  #
7084
7107
  class ServiceUnavailableException < Aws::EmptyStructure; end
7085
7108
 
7086
- # his exception is returned if an unknown error occurs during a Live
7109
+ # This exception is returned if an unknown error occurs during a Live
7087
7110
  # Tail session.
7088
7111
  #
7089
7112
  # @!attribute [rw] message
@@ -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.106.0'
58
+ GEM_VERSION = '1.107.0'
59
59
 
60
60
  end
61
61
 
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.106.0
4
+ version: 1.107.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-01-15 00:00:00.000000000 Z
11
+ date: 2025-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core