aws-sdk-cloudtrail 1.76.0 → 1.78.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: 3b3f753d66b5f673cfae2b81a01fd10e74058f49ed08f805019f60a33fbdd1d3
4
+ data.tar.gz: 9f7e39ef9e8f7ff52adec76abcf5c7d7d15d4271f2036a7ba20fdec962c506a6
5
5
  SHA512:
6
- metadata.gz: c1dd9cba547b50e4490bcbeacec3faadf275a9eec8f4da579a8062f79017d3da1950cc9fc1312455b5a83d9639b69dfecea33c1816e3f62fc1f2aa7f3a851124
7
- data.tar.gz: 35d33a2c9b826d26e18be727f5ef0c46bbf960fe2d57e01754aa5fe3cae1ac38f32ecf1e8c7b2abc2fa6399ec310174aa3756eb140e762426d77c8ccf5046120
6
+ metadata.gz: 249933ff6cf0028f9d5820cc1448ebd47c26cd6a4133fe9da66cf60a45e5dd5100a59b7323eaabb42466cc88bfc106d9826441ac930b48038805a86288df8ceb
7
+ data.tar.gz: d664669410482fa48a444dcc11cfe338104d64423ca02d72d034e1c3a667367392cd61427bff17dae36cf946f9d3b8a876a47c0e1164ef8829b7c312781bcbda
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.77.0 (2024-03-08)
10
+ ------------------
11
+
12
+ * Feature - Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.
13
+
4
14
  1.76.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.78.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::CloudTrail
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::CloudTrail
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::CloudTrail
347
356
  # @option options [Aws::CloudTrail::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CloudTrail::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -3851,7 +3875,7 @@ module Aws::CloudTrail
3851
3875
  params: params,
3852
3876
  config: config)
3853
3877
  context[:gem_name] = 'aws-sdk-cloudtrail'
3854
- context[:gem_version] = '1.76.0'
3878
+ context[:gem_version] = '1.78.0'
3855
3879
  Seahorse::Client::Request.new(handlers, context)
3856
3880
  end
3857
3881
 
@@ -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.78.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.78.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-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement