aws-sdk-cloudtrail 1.44.0 → 1.45.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: 2826b5baa925e5a3896dc8d0954ebbb36edf6ea1e15902bea2c945136f06f6c8
4
- data.tar.gz: fb0c826a690d7bcd65ec8c8ea7bf71e6cca3ac0636596e00b93a550f3a942212
3
+ metadata.gz: 3276ef98422de73bc6bbca44a481608402a79af7bde49390a2ce2784338850b2
4
+ data.tar.gz: d610f2a804bd025c9017a5e8ccd2967ed2669003b8814567c80d208a467e4fa8
5
5
  SHA512:
6
- metadata.gz: d86ad7580314250a27479ae8dce91b3d6f65a91ce8db9a191c7ead330ba12eeee698a95fb189270ec1592acea15d6d08ffc2c7fe2c60eab6318070b9228835fc
7
- data.tar.gz: dd3ac8d0a85a671eb863cdf5a4662b0083d28f8ddbdfe06b009980ae7e671c9dc721166e4043a488576bd66e8d146a08406a8cfa3b08dbe0c07300bded7c06e2
6
+ metadata.gz: d0090aebdf376c5a6b10f598c668ec2dcd072bde2b10b7d2bdc4e9f9ca75e4fe429b52cafff17b059fb023db30dc700430b2f5f707a86385057452482c9d4775
7
+ data.tar.gz: c3f349ae07f6edcf6dcae59315ec542390951f534b964d5941572bb157405d5b48be8a29aadd25a16a6e5d142a2025236b2dca0f7734841d8d05c77599293008
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2022-01-18)
5
+ ------------------
6
+
7
+ * Feature - This release fixes a documentation bug in the description for the readOnly field selector in advanced event selectors. The description now clarifies that users omit the readOnly field selector to select both Read and Write management events.
8
+
4
9
  1.44.0 (2022-01-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.45.0
@@ -736,15 +736,17 @@ module Aws::CloudTrail
736
736
 
737
737
  # Disables the event data store specified by `EventDataStore`, which
738
738
  # accepts an event data store ARN. After you run `DeleteEventDataStore`,
739
- # the event data store is automatically deleted after a wait period of
740
- # seven days. `TerminationProtectionEnabled` must be set to `False` on
741
- # the event data store; this operation cannot work if
739
+ # the event data store enters a `PENDING_DELETION` state, and is
740
+ # automatically deleted after a wait period of seven days.
741
+ # `TerminationProtectionEnabled` must be set to `False` on the event
742
+ # data store; this operation cannot work if
742
743
  # `TerminationProtectionEnabled` is `True`.
743
744
  #
744
745
  # After you run `DeleteEventDataStore` on an event data store, you
745
746
  # cannot run `ListQueries`, `DescribeQuery`, or `GetQueryResults` on
746
747
  # queries that are using an event data store in a `PENDING_DELETION`
747
- # state.
748
+ # state. An event data store in the `PENDING_DELETION` state does not
749
+ # incur costs.
748
750
  #
749
751
  # @option params [required, String] :event_data_store
750
752
  # The ARN (or the ID suffix of the ARN) of the event data store to
@@ -2406,7 +2408,7 @@ module Aws::CloudTrail
2406
2408
  params: params,
2407
2409
  config: config)
2408
2410
  context[:gem_name] = 'aws-sdk-cloudtrail'
2409
- context[:gem_version] = '1.44.0'
2411
+ context[:gem_version] = '1.45.0'
2410
2412
  Seahorse::Client::Request.new(handlers, context)
2411
2413
  end
2412
2414
 
@@ -135,8 +135,10 @@ module Aws::CloudTrail
135
135
  # `resources.ARN`.
136
136
  #
137
137
  # * <b> <code>readOnly</code> </b> - Optional. Can be set to `Equals`
138
- # a value of `true` or `false`. A value of `false` logs both `read`
139
- # and `write` events.
138
+ # a value of `true` or `false`. If you do not add this field,
139
+ # CloudTrail logs both both `read` and `write` events. A value of
140
+ # `true` logs only `read` events. A value of `false` logs only
141
+ # `write` events.
140
142
  #
141
143
  # * <b> <code>eventSource</code> </b> - For filtering management
142
144
  # events only. This can be set only to `NotEquals`
@@ -172,6 +174,8 @@ module Aws::CloudTrail
172
174
  #
173
175
  # * `AWS::DynamoDB::Stream`
174
176
  #
177
+ # * `AWS::Glue::Table`
178
+ #
175
179
  # You can have only one `resources.type` field per selector. To log
176
180
  # data events on more than one resource type, add another selector.
177
181
  #
@@ -258,6 +262,14 @@ module Aws::CloudTrail
258
262
  # * `arn:<partition>:dynamodb:<region>:<account_ID>:table/<table_name>/stream/<date_time>`
259
263
  #
260
264
  # ^
265
+ #
266
+ # When `resources.type` equals `AWS::Glue::Table`, and the operator
267
+ # is set to `Equals` or `NotEquals`, the ARN must be in the
268
+ # following format:
269
+ #
270
+ # * `arn:<partition>:glue:<region>:<account_ID>:table/<database_name>/<table_name>`
271
+ #
272
+ # ^
261
273
  # @return [String]
262
274
  #
263
275
  # @!attribute [rw] equals
@@ -907,6 +919,8 @@ module Aws::CloudTrail
907
919
  # * `AWS::S3::AccessPoint`
908
920
  #
909
921
  # * `AWS::DynamoDB::Stream`
922
+ #
923
+ # * `AWS::Glue::Table`
910
924
  # @return [String]
911
925
  #
912
926
  # @!attribute [rw] values
@@ -1405,7 +1419,8 @@ module Aws::CloudTrail
1405
1419
  # Management Service or Amazon RDS Data API events by containing
1406
1420
  # `kms.amazonaws.com` or `rdsdata.amazonaws.com`. By default,
1407
1421
  # `ExcludeManagementEventSources` is empty, and KMS and Amazon RDS
1408
- # Data API events are logged to your trail.
1422
+ # Data API events are logged to your trail. You can exclude management
1423
+ # event sources only in regions that support the event source.
1409
1424
  # @return [Array<String>]
1410
1425
  #
1411
1426
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/EventSelector AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudtrail/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudTrail
50
50
 
51
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.45.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudtrail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.45.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: 2022-01-05 00:00:00.000000000 Z
11
+ date: 2022-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core