aws-sdk-cloudwatchlogs 1.66.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 034aea6577406321037633d2abac636f05763ded0b780b5a3c968bc5117853e6
4
- data.tar.gz: bbd462e11c364a5188174027f8caa3d69262ded2241d11000b798b9bccb20744
3
+ metadata.gz: bdb3c2322cb472fec5d163bad38d694a65955dba0abde68f73c78ae8efa7c3c6
4
+ data.tar.gz: bb7f82ba4af6c0400663a5897e105dc0ad4198a593199f928a8ee76043802275
5
5
  SHA512:
6
- metadata.gz: f6ae101cf6104f3b0cbae3f2e4b316b52fcfdc8702d296c12c0d88685ca7a4696ca1186f7fead6832b1acf28c12ba3fe4b424e6f569a7f92e702090519a3f926
7
- data.tar.gz: 596a3bf0ef767f0a3e4e10ae6238f32601ca2164051984f6056f97906372a8f36918b2d2bd7f5ac0e7d23b9ef244d936fa7213b04c445b9569baf2d5abee0a41
6
+ metadata.gz: f3363af80f9cd6aa3592880824074a23e9f007d7c470f2d3fe8afd48e3cd4be169f1752088b78ffaa5b6a1f9e63c951af00816c48867e5affd11250a27dfb797
7
+ data.tar.gz: ce51613f3d9a6a19dd63e92355e42887e1e29568c128508cc7d93ca2acc6d088af56b02f913b52d791e06a138779cf56f18f5ee5f78ea539a0551563968f7658
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2023-07-07)
5
+ ------------------
6
+
7
+ * Feature - Add CMK encryption support for CloudWatch Logs Insights query result data
8
+
9
+ 1.67.0 (2023-07-06)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.66.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::CloudWatchLogs
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::CloudWatchLogs
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::CloudWatchLogs
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -383,19 +394,56 @@ module Aws::CloudWatchLogs
383
394
 
384
395
  # @!group API Operations
385
396
 
386
- # Associates the specified KMS key with the specified log group.
387
- #
388
- # Associating a KMS key with a log group overrides any existing
389
- # associations between the log group and a KMS key. After a KMS key is
390
- # associated with a log group, all newly ingested data for the log group
391
- # is encrypted using the KMS key. This association is stored as long as
392
- # the data encrypted with the KMS keyis still within CloudWatch Logs.
393
- # This enables CloudWatch Logs to decrypt this data whenever it is
394
- # requested.
397
+ # Associates the specified KMS key with either one log group in the
398
+ # account, or with all stored CloudWatch Logs query insights results in
399
+ # the account.
400
+ #
401
+ # When you use `AssociateKmsKey`, you specify either the `logGroupName`
402
+ # parameter or the `resourceIdentifier` parameter. You can't specify
403
+ # both of those parameters in the same operation.
404
+ #
405
+ # * Specify the `logGroupName` parameter to cause all log events stored
406
+ # in the log group to be encrypted with that key. Only the log events
407
+ # ingested after the key is associated are encrypted with that key.
408
+ #
409
+ # Associating a KMS key with a log group overrides any existing
410
+ # associations between the log group and a KMS key. After a KMS key is
411
+ # associated with a log group, all newly ingested data for the log
412
+ # group is encrypted using the KMS key. This association is stored as
413
+ # long as the data encrypted with the KMS key is still within
414
+ # CloudWatch Logs. This enables CloudWatch Logs to decrypt this data
415
+ # whenever it is requested.
416
+ #
417
+ # Associating a key with a log group does not cause the results of
418
+ # queries of that log group to be encrypted with that key. To have
419
+ # query results encrypted with a KMS key, you must use an
420
+ # `AssociateKmsKey` operation with the `resourceIdentifier` parameter
421
+ # that specifies a `query-result` resource.
422
+ #
423
+ # * Specify the `resourceIdentifier` parameter with a `query-result`
424
+ # resource, to use that key to encrypt the stored results of all
425
+ # future [StartQuery][1] operations in the account. The response from
426
+ # a [GetQueryResults][2] operation will still return the query results
427
+ # in plain text.
428
+ #
429
+ # Even if you have not associated a key with your query results, the
430
+ # query results are encrypted when stored, using the default
431
+ # CloudWatch Logs method.
432
+ #
433
+ # If you run a query from a monitoring account that queries logs in a
434
+ # source account, the query results key from the monitoring account,
435
+ # if any, is used.
436
+ #
437
+ # If you delete the key that is used to encrypt log events or log group
438
+ # query results, then all the associated stored log events or query
439
+ # results that were encrypted with that key will be unencryptable and
440
+ # unusable.
441
+ #
442
+ # <note markdown="1"> CloudWatch Logs supports only symmetric KMS keys. Do not use an
443
+ # associate an asymmetric KMS key with your log group or query results.
444
+ # For more information, see [Using Symmetric and Asymmetric Keys][3].
395
445
  #
396
- # CloudWatch Logs supports only symmetric KMS keys. Do not use an
397
- # associate an asymmetric KMS key with your log group. For more
398
- # information, see [Using Symmetric and Asymmetric Keys][1].
446
+ # </note>
399
447
  #
400
448
  # It can take up to 5 minutes for this operation to take effect.
401
449
  #
@@ -405,11 +453,17 @@ module Aws::CloudWatchLogs
405
453
  #
406
454
  #
407
455
  #
408
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
456
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
457
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html
458
+ # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
409
459
  #
410
- # @option params [required, String] :log_group_name
460
+ # @option params [String] :log_group_name
411
461
  # The name of the log group.
412
462
  #
463
+ # In your `AssociateKmsKey` operation, you must specify either the
464
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
465
+ # can't specify both.
466
+ #
413
467
  # @option params [required, String] :kms_key_id
414
468
  # The Amazon Resource Name (ARN) of the KMS key to use when encrypting
415
469
  # log data. This must be a symmetric KMS key. For more information, see
@@ -421,13 +475,40 @@ module Aws::CloudWatchLogs
421
475
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms
422
476
  # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
423
477
  #
478
+ # @option params [String] :resource_identifier
479
+ # Specifies the target for this operation. You must specify one of the
480
+ # following:
481
+ #
482
+ # * Specify the following ARN to have future [GetQueryResults][1]
483
+ # operations in this account encrypt the results with the specified
484
+ # KMS key. Replace *REGION* and *ACCOUNT\_ID* with your Region and
485
+ # account ID.
486
+ #
487
+ # `arn:aws:logs:REGION:ACCOUNT_ID:query-result:*`
488
+ #
489
+ # * Specify the ARN of a log group to have CloudWatch Logs use the KMS
490
+ # key to encrypt log events that are ingested and stored by that log
491
+ # group. The log group ARN must be in the following format. Replace
492
+ # *REGION* and *ACCOUNT\_ID* with your Region and account ID.
493
+ #
494
+ # `arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME `
495
+ #
496
+ # In your `AssociateKmsKey` operation, you must specify either the
497
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
498
+ # can't specify both.
499
+ #
500
+ #
501
+ #
502
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html
503
+ #
424
504
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
425
505
  #
426
506
  # @example Request syntax with placeholder values
427
507
  #
428
508
  # resp = client.associate_kms_key({
429
- # log_group_name: "LogGroupName", # required
509
+ # log_group_name: "LogGroupName",
430
510
  # kms_key_id: "KmsKeyId", # required
511
+ # resource_identifier: "ResourceIdentifier",
431
512
  # })
432
513
  #
433
514
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/AssociateKmsKey AWS API Documentation
@@ -1614,25 +1695,76 @@ module Aws::CloudWatchLogs
1614
1695
  req.send_request(options)
1615
1696
  end
1616
1697
 
1617
- # Disassociates the associated KMS key from the specified log group.
1698
+ # Disassociates the specified KMS key from the specified log group or
1699
+ # from all CloudWatch Logs Insights query results in the account.
1700
+ #
1701
+ # When you use `DisassociateKmsKey`, you specify either the
1702
+ # `logGroupName` parameter or the `resourceIdentifier` parameter. You
1703
+ # can't specify both of those parameters in the same operation.
1704
+ #
1705
+ # * Specify the `logGroupName` parameter to stop using the KMS key to
1706
+ # encrypt future log events ingested and stored in the log group.
1707
+ # Instead, they will be encrypted with the default CloudWatch Logs
1708
+ # method. The log events that were ingested while the key was
1709
+ # associated with the log group are still encrypted with that key.
1710
+ # Therefore, CloudWatch Logs will need permissions for the key
1711
+ # whenever that data is accessed.
1712
+ #
1713
+ # * Specify the `resourceIdentifier` parameter with the `query-result`
1714
+ # resource to stop using the KMS key to encrypt the results of all
1715
+ # future [StartQuery][1] operations in the account. They will instead
1716
+ # be encrypted with the default CloudWatch Logs method. The results
1717
+ # from queries that ran while the key was associated with the account
1718
+ # are still encrypted with that key. Therefore, CloudWatch Logs will
1719
+ # need permissions for the key whenever that data is accessed.
1618
1720
  #
1619
- # After the KMS key is disassociated from the log group, CloudWatch Logs
1620
- # stops encrypting newly ingested data for the log group. All previously
1621
- # ingested data remains encrypted, and CloudWatch Logs requires
1622
- # permissions for the KMS key whenever the encrypted data is requested.
1721
+ # It can take up to 5 minutes for this operation to take effect.
1623
1722
  #
1624
- # Note that it can take up to 5 minutes for this operation to take
1625
- # effect.
1626
1723
  #
1627
- # @option params [required, String] :log_group_name
1724
+ #
1725
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
1726
+ #
1727
+ # @option params [String] :log_group_name
1628
1728
  # The name of the log group.
1629
1729
  #
1730
+ # In your `DisassociateKmsKey` operation, you must specify either the
1731
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
1732
+ # can't specify both.
1733
+ #
1734
+ # @option params [String] :resource_identifier
1735
+ # Specifies the target for this operation. You must specify one of the
1736
+ # following:
1737
+ #
1738
+ # * Specify the ARN of a log group to stop having CloudWatch Logs use
1739
+ # the KMS key to encrypt log events that are ingested and stored by
1740
+ # that log group. After you run this operation, CloudWatch Logs
1741
+ # encrypts ingested log events with the default CloudWatch Logs
1742
+ # method. The log group ARN must be in the following format. Replace
1743
+ # *REGION* and *ACCOUNT\_ID* with your Region and account ID.
1744
+ #
1745
+ # `arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME `
1746
+ #
1747
+ # * Specify the following ARN to stop using this key to encrypt the
1748
+ # results of future [StartQuery][1] operations in this account.
1749
+ # Replace *REGION* and *ACCOUNT\_ID* with your Region and account ID.
1750
+ #
1751
+ # `arn:aws:logs:REGION:ACCOUNT_ID:query-result:*`
1752
+ #
1753
+ # In your `DisssociateKmsKey` operation, you must specify either the
1754
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
1755
+ # can't specify both.
1756
+ #
1757
+ #
1758
+ #
1759
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
1760
+ #
1630
1761
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1631
1762
  #
1632
1763
  # @example Request syntax with placeholder values
1633
1764
  #
1634
1765
  # resp = client.disassociate_kms_key({
1635
- # log_group_name: "LogGroupName", # required
1766
+ # log_group_name: "LogGroupName",
1767
+ # resource_identifier: "ResourceIdentifier",
1636
1768
  # })
1637
1769
  #
1638
1770
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DisassociateKmsKey AWS API Documentation
@@ -1990,8 +2122,9 @@ module Aws::CloudWatchLogs
1990
2122
  #
1991
2123
  # @option params [Integer] :time
1992
2124
  # The time to set as the center of the query. If you specify `time`, the
1993
- # 15 minutes before this time are queries. If you omit `time`, the 8
1994
- # minutes before and 8 minutes after this time are searched.
2125
+ # 8 minutes before and 8 minutes after this time are searched. If you
2126
+ # omit `time`, the most recent 15 minutes up to the current time are
2127
+ # searched.
1995
2128
  #
1996
2129
  # The `time` value is specified as epoch time, which is the number of
1997
2130
  # seconds since `January 1, 1970, 00:00:00 UTC`.
@@ -2113,6 +2246,7 @@ module Aws::CloudWatchLogs
2113
2246
  # * {Types::GetQueryResultsResponse#results #results} => Array&lt;Array&lt;Types::ResultField&gt;&gt;
2114
2247
  # * {Types::GetQueryResultsResponse#statistics #statistics} => Types::QueryStatistics
2115
2248
  # * {Types::GetQueryResultsResponse#status #status} => String
2249
+ # * {Types::GetQueryResultsResponse#encryption_key #encryption_key} => String
2116
2250
  #
2117
2251
  # @example Request syntax with placeholder values
2118
2252
  #
@@ -2130,6 +2264,7 @@ module Aws::CloudWatchLogs
2130
2264
  # resp.statistics.records_scanned #=> Float
2131
2265
  # resp.statistics.bytes_scanned #=> Float
2132
2266
  # resp.status #=> String, one of "Scheduled", "Running", "Complete", "Failed", "Cancelled", "Timeout", "Unknown"
2267
+ # resp.encryption_key #=> String
2133
2268
  #
2134
2269
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResults AWS API Documentation
2135
2270
  #
@@ -2318,10 +2453,9 @@ module Aws::CloudWatchLogs
2318
2453
  # `DATA_PROTECTION_POLICY`.
2319
2454
  #
2320
2455
  # @option params [String] :scope
2321
- # Currently the only valid value for this parameter is `GLOBAL`, which
2456
+ # Currently the only valid value for this parameter is `ALL`, which
2322
2457
  # specifies that the data protection policy applies to all log groups in
2323
- # the account. If you omit this parameter, the default of `GLOBAL` is
2324
- # used.
2458
+ # the account. If you omit this parameter, the default of `ALL` is used.
2325
2459
  #
2326
2460
  # @return [Types::PutAccountPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2327
2461
  #
@@ -2983,8 +3117,10 @@ module Aws::CloudWatchLogs
2983
3117
  # * An Amazon Kinesis data stream belonging to the same account as the
2984
3118
  # subscription filter, for same-account delivery.
2985
3119
  #
2986
- # * A logical destination that belongs to a different account, for
2987
- # cross-account delivery.
3120
+ # * A logical destination created with [PutDestination][2] that belongs
3121
+ # to a different account, for cross-account delivery. We currently
3122
+ # support Kinesis Data Streams and Kinesis Data Firehose as logical
3123
+ # destinations.
2988
3124
  #
2989
3125
  # * An Amazon Kinesis Data Firehose delivery stream that belongs to the
2990
3126
  # same account as the subscription filter, for same-account delivery.
@@ -3003,6 +3139,7 @@ module Aws::CloudWatchLogs
3003
3139
  #
3004
3140
  #
3005
3141
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutLogEvents.html
3142
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDestination.html
3006
3143
  #
3007
3144
  # @option params [required, String] :log_group_name
3008
3145
  # The name of the log group.
@@ -3085,6 +3222,16 @@ module Aws::CloudWatchLogs
3085
3222
  #
3086
3223
  # For more information, see [CloudWatch Logs Insights Query Syntax][1].
3087
3224
  #
3225
+ # After you run a query using `StartQuery`, the query results are stored
3226
+ # by CloudWatch Logs. You can use [GetQueryResults][2] to retrieve the
3227
+ # results of a query, using the `queryId` that `StartQuery` returns.
3228
+ #
3229
+ # If you have associated a KMS key with the query results in this
3230
+ # account, then [StartQuery][3] uses that key to encrypt the results
3231
+ # when it stores them. If no key is associated with query results, the
3232
+ # query results are encrypted with the default CloudWatch Logs
3233
+ # encryption method.
3234
+ #
3088
3235
  # Queries time out after 60 minutes of runtime. If your queries are
3089
3236
  # timing out, reduce the time range being searched or partition your
3090
3237
  # query into a number of queries.
@@ -3092,7 +3239,7 @@ module Aws::CloudWatchLogs
3092
3239
  # If you are using CloudWatch cross-account observability, you can use
3093
3240
  # this operation in a monitoring account to start a query in a linked
3094
3241
  # source account. For more information, see [CloudWatch cross-account
3095
- # observability][2]. For a cross-account `StartQuery` operation, the
3242
+ # observability][4]. For a cross-account `StartQuery` operation, the
3096
3243
  # query definition must be defined in the monitoring account.
3097
3244
  #
3098
3245
  # You can have up to 30 concurrent CloudWatch Logs insights queries,
@@ -3101,13 +3248,15 @@ module Aws::CloudWatchLogs
3101
3248
  #
3102
3249
  #
3103
3250
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html
3104
- # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
3251
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html
3252
+ # [3]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
3253
+ # [4]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
3105
3254
  #
3106
3255
  # @option params [String] :log_group_name
3107
3256
  # The log group on which to perform the query.
3108
3257
  #
3109
3258
  # <note markdown="1"> A `StartQuery` operation must include exactly one of the following
3110
- # parameters: `logGroupName`, `logGroupNames` or `logGroupIdentifiers`.
3259
+ # parameters: `logGroupName`, `logGroupNames`, or `logGroupIdentifiers`.
3111
3260
  #
3112
3261
  # </note>
3113
3262
  #
@@ -3116,7 +3265,7 @@ module Aws::CloudWatchLogs
3116
3265
  # groups.
3117
3266
  #
3118
3267
  # <note markdown="1"> A `StartQuery` operation must include exactly one of the following
3119
- # parameters: `logGroupName`, `logGroupNames` or `logGroupIdentifiers`.
3268
+ # parameters: `logGroupName`, `logGroupNames`, or `logGroupIdentifiers`.
3120
3269
  #
3121
3270
  # </note>
3122
3271
  #
@@ -3131,7 +3280,7 @@ module Aws::CloudWatchLogs
3131
3280
  # If you specify an ARN, the ARN can't end with an asterisk (*).
3132
3281
  #
3133
3282
  # A `StartQuery` operation must include exactly one of the following
3134
- # parameters: `logGroupName`, `logGroupNames` or `logGroupIdentifiers`.
3283
+ # parameters: `logGroupName`, `logGroupNames`, or `logGroupIdentifiers`.
3135
3284
  #
3136
3285
  # @option params [required, Integer] :start_time
3137
3286
  # The beginning of the time range to query. The range is inclusive, so
@@ -3461,7 +3610,7 @@ module Aws::CloudWatchLogs
3461
3610
  params: params,
3462
3611
  config: config)
3463
3612
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
3464
- context[:gem_version] = '1.66.0'
3613
+ context[:gem_version] = '1.68.0'
3465
3614
  Seahorse::Client::Request.new(handlers, context)
3466
3615
  end
3467
3616
 
@@ -75,6 +75,7 @@ module Aws::CloudWatchLogs
75
75
  DimensionsValue = Shapes::StringShape.new(name: 'DimensionsValue')
76
76
  DisassociateKmsKeyRequest = Shapes::StructureShape.new(name: 'DisassociateKmsKeyRequest')
77
77
  Distribution = Shapes::StringShape.new(name: 'Distribution')
78
+ EncryptionKey = Shapes::StringShape.new(name: 'EncryptionKey')
78
79
  EventId = Shapes::StringShape.new(name: 'EventId')
79
80
  EventMessage = Shapes::StringShape.new(name: 'EventMessage')
80
81
  EventNumber = Shapes::IntegerShape.new(name: 'EventNumber')
@@ -194,6 +195,7 @@ module Aws::CloudWatchLogs
194
195
  QueryString = Shapes::StringShape.new(name: 'QueryString')
195
196
  RejectedLogEventsInfo = Shapes::StructureShape.new(name: 'RejectedLogEventsInfo')
196
197
  ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
198
+ ResourceIdentifier = Shapes::StringShape.new(name: 'ResourceIdentifier')
197
199
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
198
200
  ResourcePolicies = Shapes::ListShape.new(name: 'ResourcePolicies')
199
201
  ResourcePolicy = Shapes::StructureShape.new(name: 'ResourcePolicy')
@@ -248,8 +250,9 @@ module Aws::CloudWatchLogs
248
250
  AccountPolicy.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "accountId"))
249
251
  AccountPolicy.struct_class = Types::AccountPolicy
250
252
 
251
- AssociateKmsKeyRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
253
+ AssociateKmsKeyRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
252
254
  AssociateKmsKeyRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, required: true, location_name: "kmsKeyId"))
255
+ AssociateKmsKeyRequest.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "resourceIdentifier"))
253
256
  AssociateKmsKeyRequest.struct_class = Types::AssociateKmsKeyRequest
254
257
 
255
258
  CancelExportTaskRequest.add_member(:task_id, Shapes::ShapeRef.new(shape: ExportTaskId, required: true, location_name: "taskId"))
@@ -430,7 +433,8 @@ module Aws::CloudWatchLogs
430
433
  Dimensions.key = Shapes::ShapeRef.new(shape: DimensionsKey)
431
434
  Dimensions.value = Shapes::ShapeRef.new(shape: DimensionsValue)
432
435
 
433
- DisassociateKmsKeyRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
436
+ DisassociateKmsKeyRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
437
+ DisassociateKmsKeyRequest.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "resourceIdentifier"))
434
438
  DisassociateKmsKeyRequest.struct_class = Types::DisassociateKmsKeyRequest
435
439
 
436
440
  ExportTask.add_member(:task_id, Shapes::ShapeRef.new(shape: ExportTaskId, location_name: "taskId"))
@@ -529,6 +533,7 @@ module Aws::CloudWatchLogs
529
533
  GetQueryResultsResponse.add_member(:results, Shapes::ShapeRef.new(shape: QueryResults, location_name: "results"))
530
534
  GetQueryResultsResponse.add_member(:statistics, Shapes::ShapeRef.new(shape: QueryStatistics, location_name: "statistics"))
531
535
  GetQueryResultsResponse.add_member(:status, Shapes::ShapeRef.new(shape: QueryStatus, location_name: "status"))
536
+ GetQueryResultsResponse.add_member(:encryption_key, Shapes::ShapeRef.new(shape: EncryptionKey, location_name: "encryptionKey"))
532
537
  GetQueryResultsResponse.struct_class = Types::GetQueryResultsResponse
533
538
 
534
539
  InheritedProperties.member = Shapes::ShapeRef.new(shape: InheritedProperty)
@@ -55,6 +55,10 @@ module Aws::CloudWatchLogs
55
55
 
56
56
  # @!attribute [rw] log_group_name
57
57
  # The name of the log group.
58
+ #
59
+ # In your `AssociateKmsKey` operation, you must specify either the
60
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
61
+ # can't specify both.
58
62
  # @return [String]
59
63
  #
60
64
  # @!attribute [rw] kms_key_id
@@ -69,11 +73,39 @@ module Aws::CloudWatchLogs
69
73
  # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
70
74
  # @return [String]
71
75
  #
76
+ # @!attribute [rw] resource_identifier
77
+ # Specifies the target for this operation. You must specify one of the
78
+ # following:
79
+ #
80
+ # * Specify the following ARN to have future [GetQueryResults][1]
81
+ # operations in this account encrypt the results with the specified
82
+ # KMS key. Replace *REGION* and *ACCOUNT\_ID* with your Region and
83
+ # account ID.
84
+ #
85
+ # `arn:aws:logs:REGION:ACCOUNT_ID:query-result:*`
86
+ #
87
+ # * Specify the ARN of a log group to have CloudWatch Logs use the KMS
88
+ # key to encrypt log events that are ingested and stored by that log
89
+ # group. The log group ARN must be in the following format. Replace
90
+ # *REGION* and *ACCOUNT\_ID* with your Region and account ID.
91
+ #
92
+ # `arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME `
93
+ #
94
+ # In your `AssociateKmsKey` operation, you must specify either the
95
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
96
+ # can't specify both.
97
+ #
98
+ #
99
+ #
100
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html
101
+ # @return [String]
102
+ #
72
103
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/AssociateKmsKeyRequest AWS API Documentation
73
104
  #
74
105
  class AssociateKmsKeyRequest < Struct.new(
75
106
  :log_group_name,
76
- :kms_key_id)
107
+ :kms_key_id,
108
+ :resource_identifier)
77
109
  SENSITIVE = []
78
110
  include Aws::Structure
79
111
  end
@@ -990,12 +1022,46 @@ module Aws::CloudWatchLogs
990
1022
 
991
1023
  # @!attribute [rw] log_group_name
992
1024
  # The name of the log group.
1025
+ #
1026
+ # In your `DisassociateKmsKey` operation, you must specify either the
1027
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
1028
+ # can't specify both.
1029
+ # @return [String]
1030
+ #
1031
+ # @!attribute [rw] resource_identifier
1032
+ # Specifies the target for this operation. You must specify one of the
1033
+ # following:
1034
+ #
1035
+ # * Specify the ARN of a log group to stop having CloudWatch Logs use
1036
+ # the KMS key to encrypt log events that are ingested and stored by
1037
+ # that log group. After you run this operation, CloudWatch Logs
1038
+ # encrypts ingested log events with the default CloudWatch Logs
1039
+ # method. The log group ARN must be in the following format. Replace
1040
+ # *REGION* and *ACCOUNT\_ID* with your Region and account ID.
1041
+ #
1042
+ # `arn:aws:logs:REGION:ACCOUNT_ID:log-group:LOG_GROUP_NAME `
1043
+ #
1044
+ # * Specify the following ARN to stop using this key to encrypt the
1045
+ # results of future [StartQuery][1] operations in this account.
1046
+ # Replace *REGION* and *ACCOUNT\_ID* with your Region and account
1047
+ # ID.
1048
+ #
1049
+ # `arn:aws:logs:REGION:ACCOUNT_ID:query-result:*`
1050
+ #
1051
+ # In your `DisssociateKmsKey` operation, you must specify either the
1052
+ # `resourceIdentifier` parameter or the `logGroup` parameter, but you
1053
+ # can't specify both.
1054
+ #
1055
+ #
1056
+ #
1057
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
993
1058
  # @return [String]
994
1059
  #
995
1060
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DisassociateKmsKeyRequest AWS API Documentation
996
1061
  #
997
1062
  class DisassociateKmsKeyRequest < Struct.new(
998
- :log_group_name)
1063
+ :log_group_name,
1064
+ :resource_identifier)
999
1065
  SENSITIVE = []
1000
1066
  include Aws::Structure
1001
1067
  end
@@ -1426,8 +1492,9 @@ module Aws::CloudWatchLogs
1426
1492
  #
1427
1493
  # @!attribute [rw] time
1428
1494
  # The time to set as the center of the query. If you specify `time`,
1429
- # the 15 minutes before this time are queries. If you omit `time`, the
1430
- # 8 minutes before and 8 minutes after this time are searched.
1495
+ # the 8 minutes before and 8 minutes after this time are searched. If
1496
+ # you omit `time`, the most recent 15 minutes up to the current time
1497
+ # are searched.
1431
1498
  #
1432
1499
  # The `time` value is specified as epoch time, which is the number of
1433
1500
  # seconds since `January 1, 1970, 00:00:00 UTC`.
@@ -1529,8 +1596,8 @@ module Aws::CloudWatchLogs
1529
1596
  # @!attribute [rw] statistics
1530
1597
  # Includes the number of log events scanned by the query, the number
1531
1598
  # of log events that matched the query criteria, and the total number
1532
- # of bytes in the log events that were scanned. These values reflect
1533
- # the full raw results of the query.
1599
+ # of bytes in the scanned log events. These values reflect the full
1600
+ # raw results of the query.
1534
1601
  # @return [Types::QueryStatistics]
1535
1602
  #
1536
1603
  # @!attribute [rw] status
@@ -1543,12 +1610,24 @@ module Aws::CloudWatchLogs
1543
1610
  # your query into a number of queries.
1544
1611
  # @return [String]
1545
1612
  #
1613
+ # @!attribute [rw] encryption_key
1614
+ # If you associated an KMS key with the CloudWatch Logs Insights query
1615
+ # results in this account, this field displays the ARN of the key
1616
+ # that's used to encrypt the query results when [StartQuery][1]
1617
+ # stores them.
1618
+ #
1619
+ #
1620
+ #
1621
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html
1622
+ # @return [String]
1623
+ #
1546
1624
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetQueryResultsResponse AWS API Documentation
1547
1625
  #
1548
1626
  class GetQueryResultsResponse < Struct.new(
1549
1627
  :results,
1550
1628
  :statistics,
1551
- :status)
1629
+ :status,
1630
+ :encryption_key)
1552
1631
  SENSITIVE = []
1553
1632
  include Aws::Structure
1554
1633
  end
@@ -2084,10 +2163,10 @@ module Aws::CloudWatchLogs
2084
2163
  # @return [String]
2085
2164
  #
2086
2165
  # @!attribute [rw] scope
2087
- # Currently the only valid value for this parameter is `GLOBAL`, which
2166
+ # Currently the only valid value for this parameter is `ALL`, which
2088
2167
  # specifies that the data protection policy applies to all log groups
2089
- # in the account. If you omit this parameter, the default of `GLOBAL`
2090
- # is used.
2168
+ # in the account. If you omit this parameter, the default of `ALL` is
2169
+ # used.
2091
2170
  # @return [String]
2092
2171
  #
2093
2172
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutAccountPolicyRequest AWS API Documentation
@@ -2855,7 +2934,7 @@ module Aws::CloudWatchLogs
2855
2934
  # The log group on which to perform the query.
2856
2935
  #
2857
2936
  # <note markdown="1"> A `StartQuery` operation must include exactly one of the following
2858
- # parameters: `logGroupName`, `logGroupNames` or
2937
+ # parameters: `logGroupName`, `logGroupNames`, or
2859
2938
  # `logGroupIdentifiers`.
2860
2939
  #
2861
2940
  # </note>
@@ -2866,7 +2945,7 @@ module Aws::CloudWatchLogs
2866
2945
  # groups.
2867
2946
  #
2868
2947
  # <note markdown="1"> A `StartQuery` operation must include exactly one of the following
2869
- # parameters: `logGroupName`, `logGroupNames` or
2948
+ # parameters: `logGroupName`, `logGroupNames`, or
2870
2949
  # `logGroupIdentifiers`.
2871
2950
  #
2872
2951
  # </note>
@@ -2884,7 +2963,7 @@ module Aws::CloudWatchLogs
2884
2963
  # If you specify an ARN, the ARN can't end with an asterisk (*).
2885
2964
  #
2886
2965
  # A `StartQuery` operation must include exactly one of the following
2887
- # parameters: `logGroupName`, `logGroupNames` or
2966
+ # parameters: `logGroupName`, `logGroupNames`, or
2888
2967
  # `logGroupIdentifiers`.
2889
2968
  # @return [Array<String>]
2890
2969
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudwatchlogs/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudWatchLogs
54
54
 
55
- GEM_VERSION = '1.66.0'
55
+ GEM_VERSION = '1.68.0'
56
56
 
57
57
  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.66.0
4
+ version: 1.68.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: 2023-06-28 00:00:00.000000000 Z
11
+ date: 2023-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.176.0
22
+ version: 3.177.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.176.0
32
+ version: 3.177.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement