aws-sdk-cloudtrail 1.58.0 → 1.60.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: ad00fa6a8ead4a27938d13ebf6ab1d5dc6dd2d0a1e50baef366c0934fbb63aae
4
- data.tar.gz: b00acd3019c7d87974952938c203689e00cbf35e72e0b251d8e7886981c8dc51
3
+ metadata.gz: b16eb92345b21353f92bc9fdda43ec15b2cad387f0b887c225936c6e50e00ffd
4
+ data.tar.gz: ddd9b3d1a468c27487a11e8a4e7016b7fd289ebd4b92ce7cb2260fd626b28d91
5
5
  SHA512:
6
- metadata.gz: 49c7aa752dadc9d0d6eb714344fa50784399d2bdf444ee88a32686e9bc78faae5412459438aaee2a7a24476ae4d8b2fa4bf5b922ee4cf94b1913b75ebcfe1734
7
- data.tar.gz: 5ad15a322dfe0cced51db363926f3cc747c5c1b0052fda6842536e33e173878020b36a8d78aeb6112526ad1dc650b6c8051cca552f64eafeab00e5948b41847a
6
+ metadata.gz: a17f8d9093861fd6f02c62bb8648f366d8f112cb626ee5ecf407d120c4fe4c49c821cb6ad90d49acd89d4f3997f995eb718e1ef827f44c11444105f129f75885
7
+ data.tar.gz: 598ce91b01060b113e50152e77eb95a316c6a63fbd1386ec7c84359bf2857cbffe3423e1ca869d64fbfc7760469ddb3eb3be352ad6ab29287ea424395fe56471
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.59.0 (2023-05-18)
10
+ ------------------
11
+
12
+ * Feature - Add ConflictException to PutEventSelectors, add (Channel/EDS)ARNInvalidException to Tag APIs. These exceptions provide customers with more specific error messages instead of internal errors.
13
+
4
14
  1.58.0 (2023-02-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.60.0
@@ -275,6 +275,11 @@ module Aws::CloudTrail
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1292,11 +1297,11 @@ module Aws::CloudTrail
1292
1297
  # you are logging data events.
1293
1298
  #
1294
1299
  # For more information about logging management and data events, see the
1295
- # following topics in the *CloudTrail User Guide*\:
1300
+ # following topics in the *CloudTrail User Guide*:
1296
1301
  #
1297
- # * [Logging management events for trails ][1]
1302
+ # * [Logging management events][1]
1298
1303
  #
1299
- # * [Logging data events for trails ][2]
1304
+ # * [Logging data events][2]
1300
1305
  #
1301
1306
  #
1302
1307
  #
@@ -2215,9 +2220,14 @@ module Aws::CloudTrail
2215
2220
 
2216
2221
  # Configures an event selector or advanced event selectors for your
2217
2222
  # trail. Use event selectors or advanced event selectors to specify
2218
- # management and data event settings for your trail. By default, trails
2219
- # created without specific event selectors are configured to log all
2220
- # read and write management events, and no data events.
2223
+ # management and data event settings for your trail. If you want your
2224
+ # trail to log Insights events, be sure the event selector enables
2225
+ # logging of the Insights event types you want configured for your
2226
+ # trail. For more information about logging Insights events, see
2227
+ # [Logging Insights events for trails][1] in the *CloudTrail User
2228
+ # Guide*. By default, trails created without specific event selectors
2229
+ # are configured to log all read and write management events, and no
2230
+ # data events.
2221
2231
  #
2222
2232
  # When an event occurs in your account, CloudTrail evaluates the event
2223
2233
  # selectors or advanced event selectors in all trails. For each trail,
@@ -2247,23 +2257,24 @@ module Aws::CloudTrail
2247
2257
  # `InvalidHomeRegionException` exception is thrown.
2248
2258
  #
2249
2259
  # You can configure up to five event selectors for each trail. For more
2250
- # information, see [Logging management events for trails ][1], [Logging
2251
- # data events for trails ][2], and [Quotas in CloudTrail][3] in the
2252
- # *CloudTrail User Guide*.
2260
+ # information, see [Logging management events][2], [Logging data
2261
+ # events][3], and [Quotas in CloudTrail][4] in the *CloudTrail User
2262
+ # Guide*.
2253
2263
  #
2254
2264
  # You can add advanced event selectors, and conditions for your advanced
2255
2265
  # event selectors, up to a maximum of 500 values for all conditions and
2256
2266
  # selectors on a trail. You can use either `AdvancedEventSelectors` or
2257
2267
  # `EventSelectors`, but not both. If you apply `AdvancedEventSelectors`
2258
2268
  # to a trail, any existing `EventSelectors` are overwritten. For more
2259
- # information about advanced event selectors, see [Logging data events
2260
- # for trails][2] in the *CloudTrail User Guide*.
2269
+ # information about advanced event selectors, see [Logging data
2270
+ # events][3] in the *CloudTrail User Guide*.
2261
2271
  #
2262
2272
  #
2263
2273
  #
2264
- # [1]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-events-with-cloudtrail.html
2265
- # [2]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-data-events-with-cloudtrail.html
2266
- # [3]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html
2274
+ # [1]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-insights-events-with-cloudtrail.html
2275
+ # [2]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-events-with-cloudtrail.html
2276
+ # [3]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-data-events-with-cloudtrail.html
2277
+ # [4]: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html
2267
2278
  #
2268
2279
  # @option params [required, String] :trail_name
2269
2280
  # Specifies the name of the trail or trail ARN. If you specify a trail
@@ -2299,8 +2310,8 @@ module Aws::CloudTrail
2299
2310
  # selectors on a trail. You can use either `AdvancedEventSelectors` or
2300
2311
  # `EventSelectors`, but not both. If you apply `AdvancedEventSelectors`
2301
2312
  # to a trail, any existing `EventSelectors` are overwritten. For more
2302
- # information about advanced event selectors, see [Logging data events
2303
- # for trails][1] in the *CloudTrail User Guide*.
2313
+ # information about advanced event selectors, see [Logging data
2314
+ # events][1] in the *CloudTrail User Guide*.
2304
2315
  #
2305
2316
  #
2306
2317
  #
@@ -2391,6 +2402,12 @@ module Aws::CloudTrail
2391
2402
  # an empty list of insight types. The valid Insights event types in this
2392
2403
  # release are `ApiErrorRateInsight` and `ApiCallRateInsight`.
2393
2404
  #
2405
+ # To log CloudTrail Insights events on API call volume, the trail must
2406
+ # log `write` management events. To log CloudTrail Insights events on
2407
+ # API error rate, the trail must log `read` or `write` management
2408
+ # events. You can call `GetEventSelectors` on a trail to check whether
2409
+ # the trail logs management events.
2410
+ #
2394
2411
  # @option params [required, String] :trail_name
2395
2412
  # The name of the CloudTrail trail for which you want to change or add
2396
2413
  # Insights selectors.
@@ -2398,7 +2415,15 @@ module Aws::CloudTrail
2398
2415
  # @option params [required, Array<Types::InsightSelector>] :insight_selectors
2399
2416
  # A JSON string that contains the insight types you want to log on a
2400
2417
  # trail. `ApiCallRateInsight` and `ApiErrorRateInsight` are valid
2401
- # insight types.
2418
+ # Insight types.
2419
+ #
2420
+ # The `ApiCallRateInsight` Insights type analyzes write-only management
2421
+ # API calls that are aggregated per minute against a baseline API call
2422
+ # volume.
2423
+ #
2424
+ # The `ApiErrorRateInsight` Insights type analyzes management API calls
2425
+ # that result in error codes. The error is shown if the API call is
2426
+ # unsuccessful.
2402
2427
  #
2403
2428
  # @return [Types::PutInsightSelectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2404
2429
  #
@@ -3281,7 +3306,7 @@ module Aws::CloudTrail
3281
3306
  params: params,
3282
3307
  config: config)
3283
3308
  context[:gem_name] = 'aws-sdk-cloudtrail'
3284
- context[:gem_version] = '1.58.0'
3309
+ context[:gem_version] = '1.60.0'
3285
3310
  Seahorse::Client::Request.new(handlers, context)
3286
3311
  end
3287
3312
 
@@ -1160,6 +1160,8 @@ module Aws::CloudTrail
1160
1160
  o.output = Shapes::ShapeRef.new(shape: AddTagsResponse)
1161
1161
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1162
1162
  o.errors << Shapes::ShapeRef.new(shape: CloudTrailARNInvalidException)
1163
+ o.errors << Shapes::ShapeRef.new(shape: EventDataStoreARNInvalidException)
1164
+ o.errors << Shapes::ShapeRef.new(shape: ChannelARNInvalidException)
1163
1165
  o.errors << Shapes::ShapeRef.new(shape: ResourceTypeNotSupportedException)
1164
1166
  o.errors << Shapes::ShapeRef.new(shape: TagsLimitExceededException)
1165
1167
  o.errors << Shapes::ShapeRef.new(shape: InvalidTrailNameException)
@@ -1641,6 +1643,8 @@ module Aws::CloudTrail
1641
1643
  o.output = Shapes::ShapeRef.new(shape: ListTagsResponse)
1642
1644
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1643
1645
  o.errors << Shapes::ShapeRef.new(shape: CloudTrailARNInvalidException)
1646
+ o.errors << Shapes::ShapeRef.new(shape: EventDataStoreARNInvalidException)
1647
+ o.errors << Shapes::ShapeRef.new(shape: ChannelARNInvalidException)
1644
1648
  o.errors << Shapes::ShapeRef.new(shape: ResourceTypeNotSupportedException)
1645
1649
  o.errors << Shapes::ShapeRef.new(shape: InvalidTrailNameException)
1646
1650
  o.errors << Shapes::ShapeRef.new(shape: InactiveEventDataStoreException)
@@ -1703,6 +1707,7 @@ module Aws::CloudTrail
1703
1707
  o.errors << Shapes::ShapeRef.new(shape: CloudTrailARNInvalidException)
1704
1708
  o.errors << Shapes::ShapeRef.new(shape: InvalidHomeRegionException)
1705
1709
  o.errors << Shapes::ShapeRef.new(shape: InvalidEventSelectorsException)
1710
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1706
1711
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
1707
1712
  o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
1708
1713
  o.errors << Shapes::ShapeRef.new(shape: NotOrganizationMasterAccountException)
@@ -1774,6 +1779,8 @@ module Aws::CloudTrail
1774
1779
  o.output = Shapes::ShapeRef.new(shape: RemoveTagsResponse)
1775
1780
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1776
1781
  o.errors << Shapes::ShapeRef.new(shape: CloudTrailARNInvalidException)
1782
+ o.errors << Shapes::ShapeRef.new(shape: EventDataStoreARNInvalidException)
1783
+ o.errors << Shapes::ShapeRef.new(shape: ChannelARNInvalidException)
1777
1784
  o.errors << Shapes::ShapeRef.new(shape: ResourceTypeNotSupportedException)
1778
1785
  o.errors << Shapes::ShapeRef.new(shape: InvalidTrailNameException)
1779
1786
  o.errors << Shapes::ShapeRef.new(shape: InvalidTagParameterException)
@@ -77,8 +77,8 @@ module Aws::CloudTrail
77
77
  # Advanced event selectors let you create fine-grained selectors for the
78
78
  # following CloudTrail event record fields. They help you control costs
79
79
  # by logging only those events that are important to you. For more
80
- # information about advanced event selectors, see [Logging data events
81
- # for trails][1] in the *CloudTrail User Guide*.
80
+ # information about advanced event selectors, see [Logging data
81
+ # events][1] in the *CloudTrail User Guide*.
82
82
  #
83
83
  # * `readOnly`
84
84
  #
@@ -166,34 +166,40 @@ module Aws::CloudTrail
166
166
  # CloudTrail data events. `resources.type` can only use the `Equals`
167
167
  # operator, and the value can be one of the following:
168
168
  #
169
- # * `AWS::CloudTrail::Channel`
170
- #
171
- # * `AWS::S3::Object`
169
+ # * `AWS::DynamoDB::Table`
172
170
  #
173
171
  # * `AWS::Lambda::Function`
174
172
  #
175
- # * `AWS::DynamoDB::Table`
173
+ # * `AWS::S3::Object`
176
174
  #
177
- # * `AWS::S3Outposts::Object`
175
+ # * `AWS::CloudTrail::Channel`
178
176
  #
179
- # * `AWS::ManagedBlockchain::Node`
177
+ # * `AWS::Cognito::IdentityPool`
180
178
  #
181
- # * `AWS::S3ObjectLambda::AccessPoint`
179
+ # * `AWS::DynamoDB::Stream`
182
180
  #
183
181
  # * `AWS::EC2::Snapshot`
184
182
  #
185
- # * `AWS::S3::AccessPoint`
186
- #
187
- # * `AWS::DynamoDB::Stream`
183
+ # * `AWS::FinSpace::Environment`
188
184
  #
189
185
  # * `AWS::Glue::Table`
190
186
  #
191
- # * `AWS::FinSpace::Environment`
187
+ # * `AWS::GuardDuty::Detector`
188
+ #
189
+ # * `AWS::KendraRanking::ExecutionPlan`
190
+ #
191
+ # * `AWS::ManagedBlockchain::Node`
192
192
  #
193
193
  # * `AWS::SageMaker::ExperimentTrialComponent`
194
194
  #
195
195
  # * `AWS::SageMaker::FeatureGroup`
196
196
  #
197
+ # * `AWS::S3::AccessPoint`
198
+ #
199
+ # * `AWS::S3ObjectLambda::AccessPoint`
200
+ #
201
+ # * `AWS::S3Outposts::Object`
202
+ #
197
203
  # You can have only one `resources.type` field per selector. To log
198
204
  # data events on more than one resource type, add another selector.
199
205
  #
@@ -214,30 +220,19 @@ module Aws::CloudTrail
214
220
  #
215
221
  # * `arn:<partition>:s3:::<bucket_name>/<object_path>/`
216
222
  #
217
- # When `resources.type` equals `AWS::S3::AccessPoint`, and the
218
- # operator is set to `Equals` or `NotEquals`, the ARN must be in one
219
- # of the following formats. To log events on all objects in an S3
220
- # access point, we recommend that you use only the access point ARN,
221
- # don’t include the object path, and use the `StartsWith` or
222
- # `NotStartsWith` operators.
223
- #
224
- # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>`
225
- #
226
- # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>/object/<object_path>`
227
- #
228
- # When resources.type equals `AWS::Lambda::Function`, and the
223
+ # When resources.type equals `AWS::DynamoDB::Table`, and the
229
224
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
230
225
  # following format:
231
226
  #
232
- # * `arn:<partition>:lambda:<region>:<account_ID>:function:<function_name>`
227
+ # * `arn:<partition>:dynamodb:<region>:<account_ID>:table/<table_name>`
233
228
  #
234
229
  # ^
235
230
  #
236
- # When resources.type equals `AWS::DynamoDB::Table`, and the
231
+ # When resources.type equals `AWS::Lambda::Function`, and the
237
232
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
238
233
  # following format:
239
234
  #
240
- # * `arn:<partition>:dynamodb:<region>:<account_ID>:table/<table_name>`
235
+ # * `arn:<partition>:lambda:<region>:<account_ID>:function:<function_name>`
241
236
  #
242
237
  # ^
243
238
  #
@@ -249,27 +244,19 @@ module Aws::CloudTrail
249
244
  #
250
245
  # ^
251
246
  #
252
- # When `resources.type` equals `AWS::S3Outposts::Object`, and the
247
+ # When resources.type equals `AWS::Cognito::IdentityPool`, and the
253
248
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
254
249
  # following format:
255
250
  #
256
- # * `arn:<partition>:s3-outposts:<region>:<account_ID>:<object_path>`
257
- #
258
- # ^
259
- #
260
- # When `resources.type` equals `AWS::ManagedBlockchain::Node`, and
261
- # the operator is set to `Equals` or `NotEquals`, the ARN must be in
262
- # the following format:
263
- #
264
- # * `arn:<partition>:managedblockchain:<region>:<account_ID>:nodes/<node_ID>`
251
+ # * `arn:<partition>:cognito-identity:<region>:<account_ID>:identitypool/<identity_pool_ID>`
265
252
  #
266
253
  # ^
267
254
  #
268
- # When `resources.type` equals `AWS::S3ObjectLambda::AccessPoint`,
269
- # and the operator is set to `Equals` or `NotEquals`, the ARN must
270
- # be in the following format:
255
+ # When `resources.type` equals `AWS::DynamoDB::Stream`, and the
256
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in the
257
+ # following format:
271
258
  #
272
- # * `arn:<partition>:s3-object-lambda:<region>:<account_ID>:accesspoint/<access_point_name>`
259
+ # * `arn:<partition>:dynamodb:<region>:<account_ID>:table/<table_name>/stream/<date_time>`
273
260
  #
274
261
  # ^
275
262
  #
@@ -281,11 +268,11 @@ module Aws::CloudTrail
281
268
  #
282
269
  # ^
283
270
  #
284
- # When `resources.type` equals `AWS::DynamoDB::Stream`, and the
271
+ # When `resources.type` equals `AWS::FinSpace::Environment`, and the
285
272
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
286
273
  # following format:
287
274
  #
288
- # * `arn:<partition>:dynamodb:<region>:<account_ID>:table/<table_name>/stream/<date_time>`
275
+ # * `arn:<partition>:finspace:<region>:<account_ID>:environment/<environment_ID>`
289
276
  #
290
277
  # ^
291
278
  #
@@ -297,11 +284,27 @@ module Aws::CloudTrail
297
284
  #
298
285
  # ^
299
286
  #
300
- # When `resources.type` equals `AWS::FinSpace::Environment`, and the
287
+ # When `resources.type` equals `AWS::GuardDuty::Detector`, and the
301
288
  # operator is set to `Equals` or `NotEquals`, the ARN must be in the
302
289
  # following format:
303
290
  #
304
- # * `arn:<partition>:finspace:<region>:<account_ID>:environment/<environment_ID>`
291
+ # * `arn:<partition>:guardduty:<region>:<account_ID>:detector/<detector_ID>`
292
+ #
293
+ # ^
294
+ #
295
+ # When `resources.type` equals `AWS::KendraRanking::ExecutionPlan`,
296
+ # and the operator is set to `Equals` or `NotEquals`, the ARN must
297
+ # be in the following format:
298
+ #
299
+ # * `arn:<partition>:kendra-ranking:<region>:<account_ID>:rescore-execution-plan/<rescore_execution_plan_ID>`
300
+ #
301
+ # ^
302
+ #
303
+ # When `resources.type` equals `AWS::ManagedBlockchain::Node`, and
304
+ # the operator is set to `Equals` or `NotEquals`, the ARN must be in
305
+ # the following format:
306
+ #
307
+ # * `arn:<partition>:managedblockchain:<region>:<account_ID>:nodes/<node_ID>`
305
308
  #
306
309
  # ^
307
310
  #
@@ -321,6 +324,33 @@ module Aws::CloudTrail
321
324
  # * `arn:<partition>:sagemaker:<region>:<account_ID>:feature-group/<feature_group_name>`
322
325
  #
323
326
  # ^
327
+ #
328
+ # When `resources.type` equals `AWS::S3::AccessPoint`, and the
329
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in one
330
+ # of the following formats. To log events on all objects in an S3
331
+ # access point, we recommend that you use only the access point ARN,
332
+ # don’t include the object path, and use the `StartsWith` or
333
+ # `NotStartsWith` operators.
334
+ #
335
+ # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>`
336
+ #
337
+ # * `arn:<partition>:s3:<region>:<account_ID>:accesspoint/<access_point_name>/object/<object_path>`
338
+ #
339
+ # When `resources.type` equals `AWS::S3ObjectLambda::AccessPoint`,
340
+ # and the operator is set to `Equals` or `NotEquals`, the ARN must
341
+ # be in the following format:
342
+ #
343
+ # * `arn:<partition>:s3-object-lambda:<region>:<account_ID>:accesspoint/<access_point_name>`
344
+ #
345
+ # ^
346
+ #
347
+ # When `resources.type` equals `AWS::S3Outposts::Object`, and the
348
+ # operator is set to `Equals` or `NotEquals`, the ARN must be in the
349
+ # following format:
350
+ #
351
+ # * `arn:<partition>:s3-outposts:<region>:<account_ID>:<object_path>`
352
+ #
353
+ # ^
324
354
  # @return [String]
325
355
  #
326
356
  # @!attribute [rw] equals
@@ -1085,11 +1115,11 @@ module Aws::CloudTrail
1085
1115
  # The resource type in which you want to log data events. You can
1086
1116
  # specify the following *basic* event selector resource types:
1087
1117
  #
1088
- # * `AWS::S3::Object`
1118
+ # * `AWS::DynamoDB::Table`
1089
1119
  #
1090
1120
  # * `AWS::Lambda::Function`
1091
1121
  #
1092
- # * `AWS::DynamoDB::Table`
1122
+ # * `AWS::S3::Object`
1093
1123
  #
1094
1124
  # The following resource types are also available through *advanced*
1095
1125
  # event selectors. Basic event selector resource types are valid in
@@ -1099,25 +1129,31 @@ module Aws::CloudTrail
1099
1129
  #
1100
1130
  # * `AWS::CloudTrail::Channel`
1101
1131
  #
1102
- # * `AWS::S3Outposts::Object`
1103
- #
1104
- # * `AWS::ManagedBlockchain::Node`
1132
+ # * `AWS::Cognito::IdentityPool`
1105
1133
  #
1106
- # * `AWS::S3ObjectLambda::AccessPoint`
1134
+ # * `AWS::DynamoDB::Stream`
1107
1135
  #
1108
1136
  # * `AWS::EC2::Snapshot`
1109
1137
  #
1110
- # * `AWS::S3::AccessPoint`
1111
- #
1112
- # * `AWS::DynamoDB::Stream`
1138
+ # * `AWS::FinSpace::Environment`
1113
1139
  #
1114
1140
  # * `AWS::Glue::Table`
1115
1141
  #
1116
- # * `AWS::FinSpace::Environment`
1142
+ # * `AWS::GuardDuty::Detector`
1143
+ #
1144
+ # * `AWS::KendraRanking::ExecutionPlan`
1145
+ #
1146
+ # * `AWS::ManagedBlockchain::Node`
1117
1147
  #
1118
1148
  # * `AWS::SageMaker::ExperimentTrialComponent`
1119
1149
  #
1120
1150
  # * `AWS::SageMaker::FeatureGroup`
1151
+ #
1152
+ # * `AWS::S3::AccessPoint`
1153
+ #
1154
+ # * `AWS::S3ObjectLambda::AccessPoint`
1155
+ #
1156
+ # * `AWS::S3Outposts::Object`
1121
1157
  # @return [String]
1122
1158
  #
1123
1159
  # @!attribute [rw] values
@@ -2475,12 +2511,20 @@ module Aws::CloudTrail
2475
2511
  #
2476
2512
  class InsightNotEnabledException < Aws::EmptyStructure; end
2477
2513
 
2478
- # A JSON string that contains a list of insight types that are logged on
2479
- # a trail.
2514
+ # A JSON string that contains a list of Insights types that are logged
2515
+ # on a trail.
2480
2516
  #
2481
2517
  # @!attribute [rw] insight_type
2482
- # The type of insights to log on a trail. `ApiCallRateInsight` and
2483
- # `ApiErrorRateInsight` are valid insight types.
2518
+ # The type of Insights events to log on a trail. `ApiCallRateInsight`
2519
+ # and `ApiErrorRateInsight` are valid Insight types.
2520
+ #
2521
+ # The `ApiCallRateInsight` Insights type analyzes write-only
2522
+ # management API calls that are aggregated per minute against a
2523
+ # baseline API call volume.
2524
+ #
2525
+ # The `ApiErrorRateInsight` Insights type analyzes management API
2526
+ # calls that result in error codes. The error is shown if the API call
2527
+ # is unsuccessful.
2484
2528
  # @return [String]
2485
2529
  #
2486
2530
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/InsightSelector AWS API Documentation
@@ -2491,10 +2535,9 @@ module Aws::CloudTrail
2491
2535
  include Aws::Structure
2492
2536
  end
2493
2537
 
2494
- # This exception is thrown when the IAM user or role that is used to
2495
- # create the organization resource lacks one or more required
2496
- # permissions for creating an organization resource in a required
2497
- # service.
2538
+ # This exception is thrown when the IAM identity that is used to create
2539
+ # the organization resource lacks one or more required permissions for
2540
+ # creating an organization resource in a required service.
2498
2541
  #
2499
2542
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/InsufficientDependencyServiceAccessPermissionException AWS API Documentation
2500
2543
  #
@@ -3350,8 +3393,8 @@ module Aws::CloudTrail
3350
3393
  # `EventSelectors`, but not both. If you apply
3351
3394
  # `AdvancedEventSelectors` to a trail, any existing `EventSelectors`
3352
3395
  # are overwritten. For more information about advanced event
3353
- # selectors, see [Logging data events for trails][1] in the
3354
- # *CloudTrail User Guide*.
3396
+ # selectors, see [Logging data events][1] in the *CloudTrail User
3397
+ # Guide*.
3355
3398
  #
3356
3399
  #
3357
3400
  #
@@ -3401,7 +3444,15 @@ module Aws::CloudTrail
3401
3444
  # @!attribute [rw] insight_selectors
3402
3445
  # A JSON string that contains the insight types you want to log on a
3403
3446
  # trail. `ApiCallRateInsight` and `ApiErrorRateInsight` are valid
3404
- # insight types.
3447
+ # Insight types.
3448
+ #
3449
+ # The `ApiCallRateInsight` Insights type analyzes write-only
3450
+ # management API calls that are aggregated per minute against a
3451
+ # baseline API call volume.
3452
+ #
3453
+ # The `ApiErrorRateInsight` Insights type analyzes management API
3454
+ # calls that result in error codes. The error is shown if the API call
3455
+ # is unsuccessful.
3405
3456
  # @return [Array<Types::InsightSelector>]
3406
3457
  #
3407
3458
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/PutInsightSelectorsRequest 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.58.0'
55
+ GEM_VERSION = '1.60.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.58.0
4
+ version: 1.60.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-02-15 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement