aws-sdk-cloudtrail 1.65.0 → 1.67.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudtrail/client.rb +32 -2
- data/lib/aws-sdk-cloudtrail/types.rb +81 -3
- data/lib/aws-sdk-cloudtrail.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92d0966539a7c3c8f9cb36c75c19cba8db515c60d190c11d39a4798c9fb72f89
|
4
|
+
data.tar.gz: 4434c848284136617701d6a21fe72a715bb2694af338aac089e2cea1fc9be842
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7685ce4d3350160b3537259c6ba1db2301780c21cdcd00b163f8e3878344381f73950bf5e699db91749ce62c420b9eacffe570c4b7f32b0d67dab6ce526fddda
|
7
|
+
data.tar.gz: bb0b421f21419258023899bfba83579d53bd9ecad3e1c587b28b54f723e49eb73e3b4cd016607aab610359876cdbe1857e3d740fa53b79a37a0aadeff65a6fe2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2023-08-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for CloudTrail.
|
8
|
+
|
9
|
+
1.66.0 (2023-07-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.65.0 (2023-07-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
@@ -216,6 +216,10 @@ module Aws::CloudTrail
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
218
218
|
#
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
221
|
+
# variables and the shared configuration file.
|
222
|
+
#
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
220
224
|
# The log formatter.
|
221
225
|
#
|
@@ -601,6 +605,19 @@ module Aws::CloudTrail
|
|
601
605
|
# @option params [Integer] :retention_period
|
602
606
|
# The retention period of the event data store, in days. You can set a
|
603
607
|
# retention period of up to 2557 days, the equivalent of seven years.
|
608
|
+
# CloudTrail Lake determines whether to retain an event by checking if
|
609
|
+
# the `eventTime` of the event is within the specified retention period.
|
610
|
+
# For example, if you set a retention period of 90 days, CloudTrail will
|
611
|
+
# remove events when the `eventTime` is older than 90 days.
|
612
|
+
#
|
613
|
+
# <note markdown="1"> If you plan to copy trail events to this event data store, we
|
614
|
+
# recommend that you consider both the age of the events that you want
|
615
|
+
# to copy as well as how long you want to keep the copied events in your
|
616
|
+
# event data store. For example, if you copy trail events that are 5
|
617
|
+
# years old and specify a retention period of 7 years, the event data
|
618
|
+
# store will retain those events for two years.
|
619
|
+
#
|
620
|
+
# </note>
|
604
621
|
#
|
605
622
|
# @option params [Boolean] :termination_protection_enabled
|
606
623
|
# Specifies whether termination protection is enabled for the event data
|
@@ -3089,7 +3106,20 @@ module Aws::CloudTrail
|
|
3089
3106
|
# organization in Organizations.
|
3090
3107
|
#
|
3091
3108
|
# @option params [Integer] :retention_period
|
3092
|
-
# The retention period, in days.
|
3109
|
+
# The retention period of the event data store, in days. You can set a
|
3110
|
+
# retention period of up to 2557 days, the equivalent of seven years.
|
3111
|
+
# CloudTrail Lake determines whether to retain an event by checking if
|
3112
|
+
# the `eventTime` of the event is within the specified retention period.
|
3113
|
+
# For example, if you set a retention period of 90 days, CloudTrail will
|
3114
|
+
# remove events when the `eventTime` is older than 90 days.
|
3115
|
+
#
|
3116
|
+
# <note markdown="1"> If you decrease the retention period of an event data store,
|
3117
|
+
# CloudTrail will remove any events with an `eventTime` older than the
|
3118
|
+
# new retention period. For example, if the previous retention period
|
3119
|
+
# was 365 days and you decrease it to 100 days, CloudTrail will remove
|
3120
|
+
# events with an `eventTime` older than 100 days.
|
3121
|
+
#
|
3122
|
+
# </note>
|
3093
3123
|
#
|
3094
3124
|
# @option params [Boolean] :termination_protection_enabled
|
3095
3125
|
# Indicates that termination protection is enabled and the event data
|
@@ -3407,7 +3437,7 @@ module Aws::CloudTrail
|
|
3407
3437
|
params: params,
|
3408
3438
|
config: config)
|
3409
3439
|
context[:gem_name] = 'aws-sdk-cloudtrail'
|
3410
|
-
context[:gem_version] = '1.
|
3440
|
+
context[:gem_version] = '1.67.0'
|
3411
3441
|
Seahorse::Client::Request.new(handlers, context)
|
3412
3442
|
end
|
3413
3443
|
|
@@ -192,8 +192,12 @@ module Aws::CloudTrail
|
|
192
192
|
#
|
193
193
|
# * `AWS::KendraRanking::ExecutionPlan`
|
194
194
|
#
|
195
|
+
# * `AWS::ManagedBlockchain::Network`
|
196
|
+
#
|
195
197
|
# * `AWS::ManagedBlockchain::Node`
|
196
198
|
#
|
199
|
+
# * `AWS::MedicalImaging::Datastore`
|
200
|
+
#
|
197
201
|
# * `AWS::SageMaker::ExperimentTrialComponent`
|
198
202
|
#
|
199
203
|
# * `AWS::SageMaker::FeatureGroup`
|
@@ -204,6 +208,10 @@ module Aws::CloudTrail
|
|
204
208
|
#
|
205
209
|
# * `AWS::S3Outposts::Object`
|
206
210
|
#
|
211
|
+
# * `AWS::SSMMessages::ControlChannel`
|
212
|
+
#
|
213
|
+
# * `AWS::VerifiedPermissions::PolicyStore`
|
214
|
+
#
|
207
215
|
# You can have only one `resources.type` field per selector. To log
|
208
216
|
# data events on more than one resource type, add another selector.
|
209
217
|
#
|
@@ -320,6 +328,14 @@ module Aws::CloudTrail
|
|
320
328
|
#
|
321
329
|
# ^
|
322
330
|
#
|
331
|
+
# When `resources.type` equals `AWS::ManagedBlockchain::Network`,
|
332
|
+
# and the operator is set to `Equals` or `NotEquals`, the ARN must
|
333
|
+
# be in the following format:
|
334
|
+
#
|
335
|
+
# * `arn:<partition>:managedblockchain:::networks/<network_name>`
|
336
|
+
#
|
337
|
+
# ^
|
338
|
+
#
|
323
339
|
# When `resources.type` equals `AWS::ManagedBlockchain::Node`, and
|
324
340
|
# the operator is set to `Equals` or `NotEquals`, the ARN must be in
|
325
341
|
# the following format:
|
@@ -328,6 +344,14 @@ module Aws::CloudTrail
|
|
328
344
|
#
|
329
345
|
# ^
|
330
346
|
#
|
347
|
+
# When `resources.type` equals `AWS::MedicalImaging::Datastore`, and
|
348
|
+
# the operator is set to `Equals` or `NotEquals`, the ARN must be in
|
349
|
+
# the following format:
|
350
|
+
#
|
351
|
+
# * `arn:<partition>:medical-imaging:<region>:<account_ID>:datastore/<data_store_ID>`
|
352
|
+
#
|
353
|
+
# ^
|
354
|
+
#
|
331
355
|
# When `resources.type` equals
|
332
356
|
# `AWS::SageMaker::ExperimentTrialComponent`, and the operator is
|
333
357
|
# set to `Equals` or `NotEquals`, the ARN must be in the following
|
@@ -371,6 +395,23 @@ module Aws::CloudTrail
|
|
371
395
|
# * `arn:<partition>:s3-outposts:<region>:<account_ID>:<object_path>`
|
372
396
|
#
|
373
397
|
# ^
|
398
|
+
#
|
399
|
+
# When `resources.type` equals `AWS::SSMMessages::ControlChannel`,
|
400
|
+
# and the operator is set to `Equals` or `NotEquals`, the ARN must
|
401
|
+
# be in the following format:
|
402
|
+
#
|
403
|
+
# * `arn:<partition>:ssmmessages:<region>:<account_ID>:control-channel/<channel_ID>`
|
404
|
+
#
|
405
|
+
# ^
|
406
|
+
#
|
407
|
+
# When resources.type equals
|
408
|
+
# `AWS::VerifiedPermissions::PolicyStore`, and the operator is set
|
409
|
+
# to `Equals` or `NotEquals`, the ARN must be in the following
|
410
|
+
# format:
|
411
|
+
#
|
412
|
+
# * `arn:<partition>:verifiedpermissions:<region>:<account_ID>:policy-store/<policy_store_UUID>`
|
413
|
+
#
|
414
|
+
# ^
|
374
415
|
# @return [String]
|
375
416
|
#
|
376
417
|
# @!attribute [rw] equals
|
@@ -695,6 +736,20 @@ module Aws::CloudTrail
|
|
695
736
|
# @!attribute [rw] retention_period
|
696
737
|
# The retention period of the event data store, in days. You can set a
|
697
738
|
# retention period of up to 2557 days, the equivalent of seven years.
|
739
|
+
# CloudTrail Lake determines whether to retain an event by checking if
|
740
|
+
# the `eventTime` of the event is within the specified retention
|
741
|
+
# period. For example, if you set a retention period of 90 days,
|
742
|
+
# CloudTrail will remove events when the `eventTime` is older than 90
|
743
|
+
# days.
|
744
|
+
#
|
745
|
+
# <note markdown="1"> If you plan to copy trail events to this event data store, we
|
746
|
+
# recommend that you consider both the age of the events that you want
|
747
|
+
# to copy as well as how long you want to keep the copied events in
|
748
|
+
# your event data store. For example, if you copy trail events that
|
749
|
+
# are 5 years old and specify a retention period of 7 years, the event
|
750
|
+
# data store will retain those events for two years.
|
751
|
+
#
|
752
|
+
# </note>
|
698
753
|
# @return [Integer]
|
699
754
|
#
|
700
755
|
# @!attribute [rw] termination_protection_enabled
|
@@ -1173,8 +1228,12 @@ module Aws::CloudTrail
|
|
1173
1228
|
#
|
1174
1229
|
# * `AWS::KendraRanking::ExecutionPlan`
|
1175
1230
|
#
|
1231
|
+
# * `AWS::ManagedBlockchain::Network`
|
1232
|
+
#
|
1176
1233
|
# * `AWS::ManagedBlockchain::Node`
|
1177
1234
|
#
|
1235
|
+
# * `AWS::MedicalImaging::Datastore`
|
1236
|
+
#
|
1178
1237
|
# * `AWS::SageMaker::ExperimentTrialComponent`
|
1179
1238
|
#
|
1180
1239
|
# * `AWS::SageMaker::FeatureGroup`
|
@@ -1185,6 +1244,10 @@ module Aws::CloudTrail
|
|
1185
1244
|
#
|
1186
1245
|
# * `AWS::S3Outposts::Object`
|
1187
1246
|
#
|
1247
|
+
# * `AWS::SSMMessages::ControlChannel`
|
1248
|
+
#
|
1249
|
+
# * `AWS::VerifiedPermissions::PolicyStore`
|
1250
|
+
#
|
1188
1251
|
#
|
1189
1252
|
#
|
1190
1253
|
# [1]: https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_AdvancedFieldSelector.html
|
@@ -3306,8 +3369,9 @@ module Aws::CloudTrail
|
|
3306
3369
|
include Aws::Structure
|
3307
3370
|
end
|
3308
3371
|
|
3309
|
-
# You are already running the maximum number of concurrent queries.
|
3310
|
-
#
|
3372
|
+
# You are already running the maximum number of concurrent queries. The
|
3373
|
+
# maximum number of concurrent queries is 10. Wait a minute for some
|
3374
|
+
# queries to finish, and then run the query again.
|
3311
3375
|
#
|
3312
3376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/MaxConcurrentQueriesException AWS API Documentation
|
3313
3377
|
#
|
@@ -4535,7 +4599,21 @@ module Aws::CloudTrail
|
|
4535
4599
|
# @return [Boolean]
|
4536
4600
|
#
|
4537
4601
|
# @!attribute [rw] retention_period
|
4538
|
-
# The retention period, in days.
|
4602
|
+
# The retention period of the event data store, in days. You can set a
|
4603
|
+
# retention period of up to 2557 days, the equivalent of seven years.
|
4604
|
+
# CloudTrail Lake determines whether to retain an event by checking if
|
4605
|
+
# the `eventTime` of the event is within the specified retention
|
4606
|
+
# period. For example, if you set a retention period of 90 days,
|
4607
|
+
# CloudTrail will remove events when the `eventTime` is older than 90
|
4608
|
+
# days.
|
4609
|
+
#
|
4610
|
+
# <note markdown="1"> If you decrease the retention period of an event data store,
|
4611
|
+
# CloudTrail will remove any events with an `eventTime` older than the
|
4612
|
+
# new retention period. For example, if the previous retention period
|
4613
|
+
# was 365 days and you decrease it to 100 days, CloudTrail will remove
|
4614
|
+
# events with an `eventTime` older than 100 days.
|
4615
|
+
#
|
4616
|
+
# </note>
|
4539
4617
|
# @return [Integer]
|
4540
4618
|
#
|
4541
4619
|
# @!attribute [rw] termination_protection_enabled
|
data/lib/aws-sdk-cloudtrail.rb
CHANGED
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.
|
4
|
+
version: 1.67.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-
|
11
|
+
date: 2023-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|