aws-sdk-cloudtrail 1.76.0 → 1.77.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: 49561e7e3b18730dedacd1f75dccc6e1c2acbce86dbd419b5b7f4f3b49354c45
4
- data.tar.gz: a40b5508c8547fda8f4566cf77e247586d9da4c5e9d372e6b745529f8a8c2151
3
+ metadata.gz: e71d01178c569e7902e023eb75d94fced98f571398e6e35e602dda3b97a0a4b4
4
+ data.tar.gz: 69fb301b2c3f58f02e28575a31a7dd02deafa2e3140060a2dfff6d1c5513948a
5
5
  SHA512:
6
- metadata.gz: c1dd9cba547b50e4490bcbeacec3faadf275a9eec8f4da579a8062f79017d3da1950cc9fc1312455b5a83d9639b69dfecea33c1816e3f62fc1f2aa7f3a851124
7
- data.tar.gz: 35d33a2c9b826d26e18be727f5ef0c46bbf960fe2d57e01754aa5fe3cae1ac38f32ecf1e8c7b2abc2fa6399ec310174aa3756eb140e762426d77c8ccf5046120
6
+ metadata.gz: 160580cbb0e65979b1c8284e8f886741056649bbf5b1014aabc39c74d52c76ec2d9050147d934a8f6168abb78ed3533ec195a95cb8424787d21d3b3288bca862
7
+ data.tar.gz: 6145474c6c6ac5a14a6ce79dcca8c0961649d6d39c1b9b11c5fe63650e8223f3a7764359298e3d328659a49f619c5db427d43cab3a3e17b7c9b80b7c3ac2b38c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2024-03-08)
5
+ ------------------
6
+
7
+ * Feature - Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.
8
+
4
9
  1.76.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.77.0
@@ -3851,7 +3851,7 @@ module Aws::CloudTrail
3851
3851
  params: params,
3852
3852
  config: config)
3853
3853
  context[:gem_name] = 'aws-sdk-cloudtrail'
3854
- context[:gem_version] = '1.76.0'
3854
+ context[:gem_version] = '1.77.0'
3855
3855
  Seahorse::Client::Request.new(handlers, context)
3856
3856
  end
3857
3857
 
@@ -1372,6 +1372,7 @@ module Aws::CloudTrail
1372
1372
  o.errors << Shapes::ShapeRef.new(shape: TrailNotProvidedException)
1373
1373
  o.errors << Shapes::ShapeRef.new(shape: TagsLimitExceededException)
1374
1374
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
1375
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1375
1376
  o.errors << Shapes::ShapeRef.new(shape: KmsKeyNotFoundException)
1376
1377
  o.errors << Shapes::ShapeRef.new(shape: KmsKeyDisabledException)
1377
1378
  o.errors << Shapes::ShapeRef.new(shape: KmsException)
@@ -1503,6 +1504,7 @@ module Aws::CloudTrail
1503
1504
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
1504
1505
  o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1505
1506
  o.errors << Shapes::ShapeRef.new(shape: InvalidTrailNameException)
1507
+ o.errors << Shapes::ShapeRef.new(shape: CloudTrailARNInvalidException)
1506
1508
  o.errors << Shapes::ShapeRef.new(shape: NoManagementAccountSLRExistsException)
1507
1509
  end)
1508
1510
 
@@ -1730,6 +1732,7 @@ module Aws::CloudTrail
1730
1732
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1731
1733
  o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1732
1734
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
1735
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1733
1736
  o[:pager] = Aws::Pager.new(
1734
1737
  limit_key: "max_results",
1735
1738
  tokens: {
@@ -80,30 +80,46 @@ module Aws::CloudTrail
80
80
  #
81
81
  class AddTagsResponse < Aws::EmptyStructure; end
82
82
 
83
- # Advanced event selectors let you create fine-grained selectors for the
84
- # following CloudTrail event record fields. They help you control costs
85
- # by logging only those events that are important to you. For more
86
- # information about advanced event selectors, see [Logging data
87
- # events][1] in the *CloudTrail User Guide*.
83
+ # Advanced event selectors let you create fine-grained selectors for
84
+ # CloudTrail management and data events. They help you control costs by
85
+ # logging only those events that are important to you. For more
86
+ # information about advanced event selectors, see [Logging management
87
+ # events][1] and [Logging data events][2] in the *CloudTrail User
88
+ # Guide*.
88
89
  #
89
- # * `readOnly`
90
+ # You cannot apply both event selectors and advanced event selectors to
91
+ # a trail.
92
+ #
93
+ # **Supported CloudTrail event record fields for management events**
94
+ #
95
+ # * `eventCategory` (required)
90
96
  #
91
97
  # * `eventSource`
92
98
  #
93
- # * `eventName`
99
+ # * `readOnly`
94
100
  #
95
- # * `eventCategory`
101
+ # **Supported CloudTrail event record fields for data events**
96
102
  #
97
- # * `resources.type`
103
+ # * `eventCategory` (required)
104
+ #
105
+ # * `resources.type` (required)
106
+ #
107
+ # * `readOnly`
108
+ #
109
+ # * `eventName`
98
110
  #
99
111
  # * `resources.ARN`
100
112
  #
101
- # You cannot apply both event selectors and advanced event selectors to
102
- # a trail.
113
+ # <note markdown="1"> For event data stores for CloudTrail Insights events, Config
114
+ # configuration items, Audit Manager evidence, or events outside of
115
+ # Amazon Web Services, the only supported field is `eventCategory`.
116
+ #
117
+ # </note>
103
118
  #
104
119
  #
105
120
  #
106
- # [1]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-data-events-with-cloudtrail.html
121
+ # [1]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-events-with-cloudtrail.html
122
+ # [2]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-data-events-with-cloudtrail.html
107
123
  #
108
124
  # @!attribute [rw] name
109
125
  # An optional, descriptive name for an advanced event selector, such
@@ -187,6 +203,8 @@ module Aws::CloudTrail
187
203
  #
188
204
  # * `AWS::S3::Object`
189
205
  #
206
+ # * `AWS::AppConfig::Configuration`
207
+ #
190
208
  # * `AWS::B2BI::Transformer`
191
209
  #
192
210
  # * `AWS::Bedrock::AgentAlias`
@@ -215,8 +233,20 @@ module Aws::CloudTrail
215
233
  #
216
234
  # * `AWS::Glue::Table`
217
235
  #
236
+ # * `AWS::GreengrassV2::ComponentVersion`
237
+ #
238
+ # * `AWS::GreengrassV2::Deployment`
239
+ #
218
240
  # * `AWS::GuardDuty::Detector`
219
241
  #
242
+ # * `AWS::IoT::Certificate`
243
+ #
244
+ # * `AWS::IoT::Thing`
245
+ #
246
+ # * `AWS::IoTSiteWise::Asset`
247
+ #
248
+ # * `AWS::IoTSiteWise::TimeSeries`
249
+ #
220
250
  # * `AWS::IoTTwinMaker::Entity`
221
251
  #
222
252
  # * `AWS::IoTTwinMaker::Workspace`
@@ -245,6 +275,12 @@ module Aws::CloudTrail
245
275
  #
246
276
  # * `AWS::RDS::DBCluster`
247
277
  #
278
+ # * `AWS::S3::AccessPoint`
279
+ #
280
+ # * `AWS::S3ObjectLambda::AccessPoint`
281
+ #
282
+ # * `AWS::S3Outposts::Object`
283
+ #
248
284
  # * `AWS::SageMaker::Endpoint`
249
285
  #
250
286
  # * `AWS::SageMaker::ExperimentTrialComponent`
@@ -261,13 +297,9 @@ module Aws::CloudTrail
261
297
  #
262
298
  # * `AWS::SNS::Topic`
263
299
  #
264
- # * `AWS::SQS::Queue`
265
- #
266
- # * `AWS::S3::AccessPoint`
267
- #
268
- # * `AWS::S3ObjectLambda::AccessPoint`
300
+ # * `AWS::SWF::Domain`
269
301
  #
270
- # * `AWS::S3Outposts::Object`
302
+ # * `AWS::SQS::Queue`
271
303
  #
272
304
  # * `AWS::SSMMessages::ControlChannel`
273
305
  #
@@ -317,6 +349,14 @@ module Aws::CloudTrail
317
349
  #
318
350
  # ^
319
351
  #
352
+ # When resources.type equals `AWS::AppConfig::Configuration`, and
353
+ # the operator is set to `Equals` or `NotEquals`, the ARN must be in
354
+ # the following format:
355
+ #
356
+ # * `arn:<partition>:appconfig:<region>:<account_ID>:application/<application_ID>/environment/<environment_ID>/configuration/<configuration_profile_ID>`
357
+ #
358
+ # ^
359
+ #
320
360
  # When resources.type equals `AWS::B2BI::Transformer`, and the
321
361
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
322
362
  # following format:
@@ -429,6 +469,22 @@ module Aws::CloudTrail
429
469
  #
430
470
  # ^
431
471
  #
472
+ # When `resources.type` equals
473
+ # `AWS::GreengrassV2::ComponentVersion`, and the operator is set to
474
+ # `Equals` or `NotEquals`, the ARN must be in the following format:
475
+ #
476
+ # * `arn:<partition>:greengrass:<region>:<account_ID>:components/<component_name>`
477
+ #
478
+ # ^
479
+ #
480
+ # When `resources.type` equals `AWS::GreengrassV2::Deployment`, and
481
+ # the operator is set to `Equals` or `NotEquals`, the ARN must be in
482
+ # the following format:
483
+ #
484
+ # * `arn:<partition>:greengrass:<region>:<account_ID>:deployments/<deployment_ID`
485
+ #
486
+ # ^
487
+ #
432
488
  # When `resources.type` equals `AWS::GuardDuty::Detector`, and the
433
489
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
434
490
  # following format:
@@ -437,6 +493,38 @@ module Aws::CloudTrail
437
493
  #
438
494
  # ^
439
495
  #
496
+ # When `resources.type` equals `AWS::IoT::Certificate`, and the
497
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in the
498
+ # following format:
499
+ #
500
+ # * `arn:<partition>:iot:<region>:<account_ID>:cert/<certificate_ID>`
501
+ #
502
+ # ^
503
+ #
504
+ # When `resources.type` equals `AWS::IoT::Thing`, and the operator
505
+ # is set to `Equals` or `NotEquals`, the ARN must be in the
506
+ # following format:
507
+ #
508
+ # * `arn:<partition>:iot:<region>:<account_ID>:thing/<thing_ID>`
509
+ #
510
+ # ^
511
+ #
512
+ # When `resources.type` equals `AWS::IoTSiteWise::Asset`, and the
513
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in the
514
+ # following format:
515
+ #
516
+ # * `arn:<partition>:iotsitewise:<region>:<account_ID>:asset/<asset_ID>`
517
+ #
518
+ # ^
519
+ #
520
+ # When `resources.type` equals `AWS::IoTSiteWise::TimeSeries`, and
521
+ # the operator is set to `Equals` or `NotEquals`, the ARN must be in
522
+ # the following format:
523
+ #
524
+ # * `arn:<partition>:iotsitewise:<region>:<account_ID>:timeseries/<timeseries_ID>`
525
+ #
526
+ # ^
527
+ #
440
528
  # When `resources.type` equals `AWS::IoTTwinMaker::Entity`, and the
441
529
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
442
530
  # following format:
@@ -549,6 +637,33 @@ module Aws::CloudTrail
549
637
  #
550
638
  # ^
551
639
  #
640
+ # When `resources.type` equals `AWS::S3::AccessPoint`, and the
641
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in one
642
+ # of the following formats. To log events on all objects in an S3
643
+ # access point, we recommend that you use only the access point ARN,
644
+ # don’t include the object path, and use the `StartsWith` or
645
+ # `NotStartsWith` operators.
646
+ #
647
+ # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>`
648
+ #
649
+ # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>/object/<object_path>`
650
+ #
651
+ # When `resources.type` equals `AWS::S3ObjectLambda::AccessPoint`,
652
+ # and the operator is set to `Equals` or `NotEquals`, the ARN must
653
+ # be in the following format:
654
+ #
655
+ # * `arn:<partition>:s3-object-lambda:<region>:<account_ID>:accesspoint/<access_point_name>`
656
+ #
657
+ # ^
658
+ #
659
+ # When `resources.type` equals `AWS::S3Outposts::Object`, and the
660
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in the
661
+ # following format:
662
+ #
663
+ # * `arn:<partition>:s3-outposts:<region>:<account_ID>:<object_path>`
664
+ #
665
+ # ^
666
+ #
552
667
  # When `resources.type` equals `AWS::SageMaker::Endpoint`, and the
553
668
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
554
669
  # following format:
@@ -614,38 +729,19 @@ module Aws::CloudTrail
614
729
  #
615
730
  # ^
616
731
  #
617
- # When `resources.type` equals `AWS::SQS::Queue`, and the operator
732
+ # When `resources.type` equals `AWS::SWF::Domain`, and the operator
618
733
  # is set to `Equals` or `NotEquals`, the ARN must be in the
619
734
  # following format:
620
735
  #
621
- # * `arn:<partition>:sqs:<region>:<account_ID>:<queue_name>`
736
+ # * `arn:<partition>:swf:<region>:<account_ID>:domain/<domain_name>`
622
737
  #
623
738
  # ^
624
739
  #
625
- # When `resources.type` equals `AWS::S3::AccessPoint`, and the
626
- # operator is set to `Equals` or `NotEquals`, the ARN must be in one
627
- # of the following formats. To log events on all objects in an S3
628
- # access point, we recommend that you use only the access point ARN,
629
- # don’t include the object path, and use the `StartsWith` or
630
- # `NotStartsWith` operators.
631
- #
632
- # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>`
633
- #
634
- # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>/object/<object_path>`
635
- #
636
- # When `resources.type` equals `AWS::S3ObjectLambda::AccessPoint`,
637
- # and the operator is set to `Equals` or `NotEquals`, the ARN must
638
- # be in the following format:
639
- #
640
- # * `arn:<partition>:s3-object-lambda:<region>:<account_ID>:accesspoint/<access_point_name>`
641
- #
642
- # ^
643
- #
644
- # When `resources.type` equals `AWS::S3Outposts::Object`, and the
645
- # operator is set to `Equals` or `NotEquals`, the ARN must be in the
740
+ # When `resources.type` equals `AWS::SQS::Queue`, and the operator
741
+ # is set to `Equals` or `NotEquals`, the ARN must be in the
646
742
  # following format:
647
743
  #
648
- # * `arn:<partition>:s3-outposts:<region>:<account_ID>:<object_path>`
744
+ # * `arn:<partition>:sqs:<region>:<account_ID>:<queue_name>`
649
745
  #
650
746
  # ^
651
747
  #
@@ -3854,7 +3950,11 @@ module Aws::CloudTrail
3854
3950
  # @return [String]
3855
3951
  #
3856
3952
  # @!attribute [rw] attribute_value
3857
- # Specifies a value for the specified AttributeKey.
3953
+ # Specifies a value for the specified `AttributeKey`.
3954
+ #
3955
+ # The maximum length for the `AttributeValue` is 2000 characters. The
3956
+ # following characters ('`_`', '` `', '`,`', '`\\n`') count as
3957
+ # two characters towards the 2000 character limit.
3858
3958
  # @return [String]
3859
3959
  #
3860
3960
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/LookupAttribute AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudtrail/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudTrail
54
54
 
55
- GEM_VERSION = '1.76.0'
55
+ GEM_VERSION = '1.77.0'
56
56
 
57
57
  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.76.0
4
+ version: 1.77.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core