aws-sdk-cloudtrail 1.41.0 → 1.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,6 +32,13 @@ module Aws::CloudTrail
32
32
  # * {CloudTrailInvalidClientTokenIdException}
33
33
  # * {CloudWatchLogsDeliveryUnavailableException}
34
34
  # * {ConflictException}
35
+ # * {EventDataStoreARNInvalidException}
36
+ # * {EventDataStoreAlreadyExistsException}
37
+ # * {EventDataStoreMaxLimitExceededException}
38
+ # * {EventDataStoreNotFoundException}
39
+ # * {EventDataStoreTerminationProtectedException}
40
+ # * {InactiveEventDataStoreException}
41
+ # * {InactiveQueryException}
35
42
  # * {InsightNotEnabledException}
36
43
  # * {InsufficientDependencyServiceAccessPermissionException}
37
44
  # * {InsufficientEncryptionPolicyException}
@@ -39,7 +46,9 @@ module Aws::CloudTrail
39
46
  # * {InsufficientSnsTopicPolicyException}
40
47
  # * {InvalidCloudWatchLogsLogGroupArnException}
41
48
  # * {InvalidCloudWatchLogsRoleArnException}
49
+ # * {InvalidDateRangeException}
42
50
  # * {InvalidEventCategoryException}
51
+ # * {InvalidEventDataStoreStatusException}
43
52
  # * {InvalidEventSelectorsException}
44
53
  # * {InvalidHomeRegionException}
45
54
  # * {InvalidInsightSelectorsException}
@@ -48,6 +57,9 @@ module Aws::CloudTrail
48
57
  # * {InvalidMaxResultsException}
49
58
  # * {InvalidNextTokenException}
50
59
  # * {InvalidParameterCombinationException}
60
+ # * {InvalidParameterException}
61
+ # * {InvalidQueryStatementException}
62
+ # * {InvalidQueryStatusException}
51
63
  # * {InvalidS3BucketNameException}
52
64
  # * {InvalidS3PrefixException}
53
65
  # * {InvalidSnsTopicNameException}
@@ -58,11 +70,13 @@ module Aws::CloudTrail
58
70
  # * {KmsException}
59
71
  # * {KmsKeyDisabledException}
60
72
  # * {KmsKeyNotFoundException}
73
+ # * {MaxConcurrentQueriesException}
61
74
  # * {MaximumNumberOfTrailsExceededException}
62
75
  # * {NotOrganizationMasterAccountException}
63
76
  # * {OperationNotPermittedException}
64
77
  # * {OrganizationNotInAllFeaturesModeException}
65
78
  # * {OrganizationsNotInUseException}
79
+ # * {QueryIdNotFoundException}
66
80
  # * {ResourceNotFoundException}
67
81
  # * {ResourceTypeNotSupportedException}
68
82
  # * {S3BucketDoesNotExistException}
@@ -128,6 +142,76 @@ module Aws::CloudTrail
128
142
  end
129
143
  end
130
144
 
145
+ class EventDataStoreARNInvalidException < ServiceError
146
+
147
+ # @param [Seahorse::Client::RequestContext] context
148
+ # @param [String] message
149
+ # @param [Aws::CloudTrail::Types::EventDataStoreARNInvalidException] data
150
+ def initialize(context, message, data = Aws::EmptyStructure.new)
151
+ super(context, message, data)
152
+ end
153
+ end
154
+
155
+ class EventDataStoreAlreadyExistsException < ServiceError
156
+
157
+ # @param [Seahorse::Client::RequestContext] context
158
+ # @param [String] message
159
+ # @param [Aws::CloudTrail::Types::EventDataStoreAlreadyExistsException] data
160
+ def initialize(context, message, data = Aws::EmptyStructure.new)
161
+ super(context, message, data)
162
+ end
163
+ end
164
+
165
+ class EventDataStoreMaxLimitExceededException < ServiceError
166
+
167
+ # @param [Seahorse::Client::RequestContext] context
168
+ # @param [String] message
169
+ # @param [Aws::CloudTrail::Types::EventDataStoreMaxLimitExceededException] data
170
+ def initialize(context, message, data = Aws::EmptyStructure.new)
171
+ super(context, message, data)
172
+ end
173
+ end
174
+
175
+ class EventDataStoreNotFoundException < ServiceError
176
+
177
+ # @param [Seahorse::Client::RequestContext] context
178
+ # @param [String] message
179
+ # @param [Aws::CloudTrail::Types::EventDataStoreNotFoundException] data
180
+ def initialize(context, message, data = Aws::EmptyStructure.new)
181
+ super(context, message, data)
182
+ end
183
+ end
184
+
185
+ class EventDataStoreTerminationProtectedException < ServiceError
186
+
187
+ # @param [Seahorse::Client::RequestContext] context
188
+ # @param [String] message
189
+ # @param [Aws::CloudTrail::Types::EventDataStoreTerminationProtectedException] data
190
+ def initialize(context, message, data = Aws::EmptyStructure.new)
191
+ super(context, message, data)
192
+ end
193
+ end
194
+
195
+ class InactiveEventDataStoreException < ServiceError
196
+
197
+ # @param [Seahorse::Client::RequestContext] context
198
+ # @param [String] message
199
+ # @param [Aws::CloudTrail::Types::InactiveEventDataStoreException] data
200
+ def initialize(context, message, data = Aws::EmptyStructure.new)
201
+ super(context, message, data)
202
+ end
203
+ end
204
+
205
+ class InactiveQueryException < ServiceError
206
+
207
+ # @param [Seahorse::Client::RequestContext] context
208
+ # @param [String] message
209
+ # @param [Aws::CloudTrail::Types::InactiveQueryException] data
210
+ def initialize(context, message, data = Aws::EmptyStructure.new)
211
+ super(context, message, data)
212
+ end
213
+ end
214
+
131
215
  class InsightNotEnabledException < ServiceError
132
216
 
133
217
  # @param [Seahorse::Client::RequestContext] context
@@ -198,6 +282,16 @@ module Aws::CloudTrail
198
282
  end
199
283
  end
200
284
 
285
+ class InvalidDateRangeException < ServiceError
286
+
287
+ # @param [Seahorse::Client::RequestContext] context
288
+ # @param [String] message
289
+ # @param [Aws::CloudTrail::Types::InvalidDateRangeException] data
290
+ def initialize(context, message, data = Aws::EmptyStructure.new)
291
+ super(context, message, data)
292
+ end
293
+ end
294
+
201
295
  class InvalidEventCategoryException < ServiceError
202
296
 
203
297
  # @param [Seahorse::Client::RequestContext] context
@@ -208,6 +302,16 @@ module Aws::CloudTrail
208
302
  end
209
303
  end
210
304
 
305
+ class InvalidEventDataStoreStatusException < ServiceError
306
+
307
+ # @param [Seahorse::Client::RequestContext] context
308
+ # @param [String] message
309
+ # @param [Aws::CloudTrail::Types::InvalidEventDataStoreStatusException] data
310
+ def initialize(context, message, data = Aws::EmptyStructure.new)
311
+ super(context, message, data)
312
+ end
313
+ end
314
+
211
315
  class InvalidEventSelectorsException < ServiceError
212
316
 
213
317
  # @param [Seahorse::Client::RequestContext] context
@@ -288,6 +392,36 @@ module Aws::CloudTrail
288
392
  end
289
393
  end
290
394
 
395
+ class InvalidParameterException < ServiceError
396
+
397
+ # @param [Seahorse::Client::RequestContext] context
398
+ # @param [String] message
399
+ # @param [Aws::CloudTrail::Types::InvalidParameterException] data
400
+ def initialize(context, message, data = Aws::EmptyStructure.new)
401
+ super(context, message, data)
402
+ end
403
+ end
404
+
405
+ class InvalidQueryStatementException < ServiceError
406
+
407
+ # @param [Seahorse::Client::RequestContext] context
408
+ # @param [String] message
409
+ # @param [Aws::CloudTrail::Types::InvalidQueryStatementException] data
410
+ def initialize(context, message, data = Aws::EmptyStructure.new)
411
+ super(context, message, data)
412
+ end
413
+ end
414
+
415
+ class InvalidQueryStatusException < ServiceError
416
+
417
+ # @param [Seahorse::Client::RequestContext] context
418
+ # @param [String] message
419
+ # @param [Aws::CloudTrail::Types::InvalidQueryStatusException] data
420
+ def initialize(context, message, data = Aws::EmptyStructure.new)
421
+ super(context, message, data)
422
+ end
423
+ end
424
+
291
425
  class InvalidS3BucketNameException < ServiceError
292
426
 
293
427
  # @param [Seahorse::Client::RequestContext] context
@@ -388,6 +522,16 @@ module Aws::CloudTrail
388
522
  end
389
523
  end
390
524
 
525
+ class MaxConcurrentQueriesException < ServiceError
526
+
527
+ # @param [Seahorse::Client::RequestContext] context
528
+ # @param [String] message
529
+ # @param [Aws::CloudTrail::Types::MaxConcurrentQueriesException] data
530
+ def initialize(context, message, data = Aws::EmptyStructure.new)
531
+ super(context, message, data)
532
+ end
533
+ end
534
+
391
535
  class MaximumNumberOfTrailsExceededException < ServiceError
392
536
 
393
537
  # @param [Seahorse::Client::RequestContext] context
@@ -438,6 +582,16 @@ module Aws::CloudTrail
438
582
  end
439
583
  end
440
584
 
585
+ class QueryIdNotFoundException < ServiceError
586
+
587
+ # @param [Seahorse::Client::RequestContext] context
588
+ # @param [String] message
589
+ # @param [Aws::CloudTrail::Types::QueryIdNotFoundException] data
590
+ def initialize(context, message, data = Aws::EmptyStructure.new)
591
+ super(context, message, data)
592
+ end
593
+ end
594
+
441
595
  class ResourceNotFoundException < ServiceError
442
596
 
443
597
  # @param [Seahorse::Client::RequestContext] context