aws-sdk-observabilityadmin 1.15.0 → 1.17.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-observabilityadmin/client.rb +836 -20
- data/lib/aws-sdk-observabilityadmin/client_api.rb +491 -0
- data/lib/aws-sdk-observabilityadmin/errors.rb +66 -0
- data/lib/aws-sdk-observabilityadmin/types.rb +1095 -21
- data/lib/aws-sdk-observabilityadmin.rb +1 -1
- data/sig/client.rbs +373 -6
- data/sig/errors.rbs +13 -0
- data/sig/types.rbs +313 -5
- metadata +3 -3
|
@@ -36,6 +36,87 @@ module Aws::ObservabilityAdmin
|
|
|
36
36
|
include Aws::Structure
|
|
37
37
|
end
|
|
38
38
|
|
|
39
|
+
# Condition that matches based on the specific WAF action taken on the
|
|
40
|
+
# request.
|
|
41
|
+
#
|
|
42
|
+
# @!attribute [rw] action
|
|
43
|
+
# The WAF action to match against (ALLOW, BLOCK, COUNT, CAPTCHA,
|
|
44
|
+
# CHALLENGE, EXCLUDED\_AS\_COUNT).
|
|
45
|
+
# @return [String]
|
|
46
|
+
#
|
|
47
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ActionCondition AWS API Documentation
|
|
48
|
+
#
|
|
49
|
+
class ActionCondition < Struct.new(
|
|
50
|
+
:action)
|
|
51
|
+
SENSITIVE = []
|
|
52
|
+
include Aws::Structure
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# Advanced event selectors let you create fine-grained selectors for
|
|
56
|
+
# management, data, and network activity events.
|
|
57
|
+
#
|
|
58
|
+
# @!attribute [rw] name
|
|
59
|
+
# An optional, descriptive name for an advanced event selector, such
|
|
60
|
+
# as "Log data events for only two S3 buckets".
|
|
61
|
+
# @return [String]
|
|
62
|
+
#
|
|
63
|
+
# @!attribute [rw] field_selectors
|
|
64
|
+
# Contains all selector statements in an advanced event selector.
|
|
65
|
+
# @return [Array<Types::AdvancedFieldSelector>]
|
|
66
|
+
#
|
|
67
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/AdvancedEventSelector AWS API Documentation
|
|
68
|
+
#
|
|
69
|
+
class AdvancedEventSelector < Struct.new(
|
|
70
|
+
:name,
|
|
71
|
+
:field_selectors)
|
|
72
|
+
SENSITIVE = []
|
|
73
|
+
include Aws::Structure
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Defines criteria for selecting resources based on field values.
|
|
77
|
+
#
|
|
78
|
+
# @!attribute [rw] field
|
|
79
|
+
# The name of the field to use for selection.
|
|
80
|
+
# @return [String]
|
|
81
|
+
#
|
|
82
|
+
# @!attribute [rw] equals
|
|
83
|
+
# Matches if the field value equals the specified value.
|
|
84
|
+
# @return [Array<String>]
|
|
85
|
+
#
|
|
86
|
+
# @!attribute [rw] starts_with
|
|
87
|
+
# Matches if the field value starts with the specified value.
|
|
88
|
+
# @return [Array<String>]
|
|
89
|
+
#
|
|
90
|
+
# @!attribute [rw] ends_with
|
|
91
|
+
# Matches if the field value ends with the specified value.
|
|
92
|
+
# @return [Array<String>]
|
|
93
|
+
#
|
|
94
|
+
# @!attribute [rw] not_equals
|
|
95
|
+
# Matches if the field value does not equal the specified value.
|
|
96
|
+
# @return [Array<String>]
|
|
97
|
+
#
|
|
98
|
+
# @!attribute [rw] not_starts_with
|
|
99
|
+
# Matches if the field value does not start with the specified value.
|
|
100
|
+
# @return [Array<String>]
|
|
101
|
+
#
|
|
102
|
+
# @!attribute [rw] not_ends_with
|
|
103
|
+
# Matches if the field value does not end with the specified value.
|
|
104
|
+
# @return [Array<String>]
|
|
105
|
+
#
|
|
106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/AdvancedFieldSelector AWS API Documentation
|
|
107
|
+
#
|
|
108
|
+
class AdvancedFieldSelector < Struct.new(
|
|
109
|
+
:field,
|
|
110
|
+
:equals,
|
|
111
|
+
:starts_with,
|
|
112
|
+
:ends_with,
|
|
113
|
+
:not_equals,
|
|
114
|
+
:not_starts_with,
|
|
115
|
+
:not_ends_with)
|
|
116
|
+
SENSITIVE = []
|
|
117
|
+
include Aws::Structure
|
|
118
|
+
end
|
|
119
|
+
|
|
39
120
|
# Defines how telemetry data should be centralized across an Amazon Web
|
|
40
121
|
# Services Organization, including source and destination
|
|
41
122
|
# configurations.
|
|
@@ -182,16 +263,102 @@ module Aws::ObservabilityAdmin
|
|
|
182
263
|
include Aws::Structure
|
|
183
264
|
end
|
|
184
265
|
|
|
266
|
+
# Parameters specific to Amazon Web Services CloudTrail telemetry
|
|
267
|
+
# configuration.
|
|
268
|
+
#
|
|
269
|
+
# @!attribute [rw] advanced_event_selectors
|
|
270
|
+
# The advanced event selectors to use for filtering Amazon Web
|
|
271
|
+
# Services CloudTrail events.
|
|
272
|
+
# @return [Array<Types::AdvancedEventSelector>]
|
|
273
|
+
#
|
|
274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CloudtrailParameters AWS API Documentation
|
|
275
|
+
#
|
|
276
|
+
class CloudtrailParameters < Struct.new(
|
|
277
|
+
:advanced_event_selectors)
|
|
278
|
+
SENSITIVE = []
|
|
279
|
+
include Aws::Structure
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
# A single condition that can match based on WAF rule action or label
|
|
283
|
+
# name.
|
|
284
|
+
#
|
|
285
|
+
# @!attribute [rw] action_condition
|
|
286
|
+
# Matches log records based on the WAF rule action taken (ALLOW,
|
|
287
|
+
# BLOCK, COUNT, etc.).
|
|
288
|
+
# @return [Types::ActionCondition]
|
|
289
|
+
#
|
|
290
|
+
# @!attribute [rw] label_name_condition
|
|
291
|
+
# Matches log records based on WAF rule labels applied to the request.
|
|
292
|
+
# @return [Types::LabelNameCondition]
|
|
293
|
+
#
|
|
294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/Condition AWS API Documentation
|
|
295
|
+
#
|
|
296
|
+
class Condition < Struct.new(
|
|
297
|
+
:action_condition,
|
|
298
|
+
:label_name_condition)
|
|
299
|
+
SENSITIVE = []
|
|
300
|
+
include Aws::Structure
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
# Provides a summary of pipeline configuration components including
|
|
304
|
+
# sources, processors, and destinations.
|
|
305
|
+
#
|
|
306
|
+
# @!attribute [rw] sources
|
|
307
|
+
# The list of data sources configured in the pipeline.
|
|
308
|
+
# @return [Array<Types::Source>]
|
|
309
|
+
#
|
|
310
|
+
# @!attribute [rw] data_sources
|
|
311
|
+
# The list of data sources that provide telemetry data to the
|
|
312
|
+
# pipeline.
|
|
313
|
+
# @return [Array<Types::DataSource>]
|
|
314
|
+
#
|
|
315
|
+
# @!attribute [rw] processors
|
|
316
|
+
# The list of processors configured in the pipeline for data
|
|
317
|
+
# transformation.
|
|
318
|
+
# @return [Array<String>]
|
|
319
|
+
#
|
|
320
|
+
# @!attribute [rw] processor_count
|
|
321
|
+
# The total number of processors configured in the pipeline.
|
|
322
|
+
# @return [Integer]
|
|
323
|
+
#
|
|
324
|
+
# @!attribute [rw] sinks
|
|
325
|
+
# The list of destinations where processed data is sent.
|
|
326
|
+
# @return [Array<String>]
|
|
327
|
+
#
|
|
328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ConfigurationSummary AWS API Documentation
|
|
329
|
+
#
|
|
330
|
+
class ConfigurationSummary < Struct.new(
|
|
331
|
+
:sources,
|
|
332
|
+
:data_sources,
|
|
333
|
+
:processors,
|
|
334
|
+
:processor_count,
|
|
335
|
+
:sinks)
|
|
336
|
+
SENSITIVE = []
|
|
337
|
+
include Aws::Structure
|
|
338
|
+
end
|
|
339
|
+
|
|
185
340
|
# The requested operation conflicts with the current state of the
|
|
186
341
|
# specified resource or with another request.
|
|
187
342
|
#
|
|
188
343
|
# @!attribute [rw] message
|
|
189
344
|
# @return [String]
|
|
190
345
|
#
|
|
346
|
+
# @!attribute [rw] resource_id
|
|
347
|
+
# The identifier of the resource which is in conflict with the
|
|
348
|
+
# requested operation.
|
|
349
|
+
# @return [String]
|
|
350
|
+
#
|
|
351
|
+
# @!attribute [rw] resource_type
|
|
352
|
+
# The type of the resource which is in conflict with the requested
|
|
353
|
+
# operation.
|
|
354
|
+
# @return [String]
|
|
355
|
+
#
|
|
191
356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ConflictException AWS API Documentation
|
|
192
357
|
#
|
|
193
358
|
class ConflictException < Struct.new(
|
|
194
|
-
:message
|
|
359
|
+
:message,
|
|
360
|
+
:resource_id,
|
|
361
|
+
:resource_type)
|
|
195
362
|
SENSITIVE = []
|
|
196
363
|
include Aws::Structure
|
|
197
364
|
end
|
|
@@ -235,6 +402,87 @@ module Aws::ObservabilityAdmin
|
|
|
235
402
|
include Aws::Structure
|
|
236
403
|
end
|
|
237
404
|
|
|
405
|
+
# @!attribute [rw] encryption
|
|
406
|
+
# The encryption configuration for the S3 Table integration, including
|
|
407
|
+
# the encryption algorithm and KMS key settings.
|
|
408
|
+
# @return [Types::Encryption]
|
|
409
|
+
#
|
|
410
|
+
# @!attribute [rw] role_arn
|
|
411
|
+
# The Amazon Resource Name (ARN) of the IAM role that grants
|
|
412
|
+
# permissions for the S3 Table integration to access necessary
|
|
413
|
+
# resources.
|
|
414
|
+
# @return [String]
|
|
415
|
+
#
|
|
416
|
+
# @!attribute [rw] tags
|
|
417
|
+
# The key-value pairs to associate with the S3 Table integration
|
|
418
|
+
# resource for categorization and management purposes.
|
|
419
|
+
# @return [Hash<String,String>]
|
|
420
|
+
#
|
|
421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateS3TableIntegrationInput AWS API Documentation
|
|
422
|
+
#
|
|
423
|
+
class CreateS3TableIntegrationInput < Struct.new(
|
|
424
|
+
:encryption,
|
|
425
|
+
:role_arn,
|
|
426
|
+
:tags)
|
|
427
|
+
SENSITIVE = []
|
|
428
|
+
include Aws::Structure
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
# @!attribute [rw] arn
|
|
432
|
+
# The Amazon Resource Name (ARN) of the created S3 Table integration.
|
|
433
|
+
# @return [String]
|
|
434
|
+
#
|
|
435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateS3TableIntegrationOutput AWS API Documentation
|
|
436
|
+
#
|
|
437
|
+
class CreateS3TableIntegrationOutput < Struct.new(
|
|
438
|
+
:arn)
|
|
439
|
+
SENSITIVE = []
|
|
440
|
+
include Aws::Structure
|
|
441
|
+
end
|
|
442
|
+
|
|
443
|
+
# @!attribute [rw] name
|
|
444
|
+
# The name of the telemetry pipeline to create. The name must be
|
|
445
|
+
# unique within your account.
|
|
446
|
+
# @return [String]
|
|
447
|
+
#
|
|
448
|
+
# @!attribute [rw] configuration
|
|
449
|
+
# The configuration that defines how the telemetry pipeline processes
|
|
450
|
+
# data, including sources, processors, and destinations. For more
|
|
451
|
+
# information about pipeline components, see the [Amazon CloudWatch
|
|
452
|
+
# User Guide][1]
|
|
453
|
+
#
|
|
454
|
+
#
|
|
455
|
+
#
|
|
456
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/pipeline-components-reference.html
|
|
457
|
+
# @return [Types::TelemetryPipelineConfiguration]
|
|
458
|
+
#
|
|
459
|
+
# @!attribute [rw] tags
|
|
460
|
+
# The key-value pairs to associate with the telemetry pipeline
|
|
461
|
+
# resource for categorization and management purposes.
|
|
462
|
+
# @return [Hash<String,String>]
|
|
463
|
+
#
|
|
464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateTelemetryPipelineInput AWS API Documentation
|
|
465
|
+
#
|
|
466
|
+
class CreateTelemetryPipelineInput < Struct.new(
|
|
467
|
+
:name,
|
|
468
|
+
:configuration,
|
|
469
|
+
:tags)
|
|
470
|
+
SENSITIVE = []
|
|
471
|
+
include Aws::Structure
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
# @!attribute [rw] arn
|
|
475
|
+
# The Amazon Resource Name (ARN) of the created telemetry pipeline.
|
|
476
|
+
# @return [String]
|
|
477
|
+
#
|
|
478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateTelemetryPipelineOutput AWS API Documentation
|
|
479
|
+
#
|
|
480
|
+
class CreateTelemetryPipelineOutput < Struct.new(
|
|
481
|
+
:arn)
|
|
482
|
+
SENSITIVE = []
|
|
483
|
+
include Aws::Structure
|
|
484
|
+
end
|
|
485
|
+
|
|
238
486
|
# @!attribute [rw] rule_name
|
|
239
487
|
# A unique name for the organization-wide telemetry rule being
|
|
240
488
|
# created.
|
|
@@ -312,6 +560,34 @@ module Aws::ObservabilityAdmin
|
|
|
312
560
|
include Aws::Structure
|
|
313
561
|
end
|
|
314
562
|
|
|
563
|
+
# Information about a data source associated with the telemetry
|
|
564
|
+
# pipeline. For CloudWatch Logs sources, this includes both a name and
|
|
565
|
+
# type extracted from the log event metadata. For third-party sources
|
|
566
|
+
# (such as S3), this includes only a name, with the type field left
|
|
567
|
+
# empty.
|
|
568
|
+
#
|
|
569
|
+
# @!attribute [rw] name
|
|
570
|
+
# The name of the data source. For CloudWatch Logs sources, this
|
|
571
|
+
# corresponds to the `data_source_name` from the log event metadata.
|
|
572
|
+
# For third-party sources, this is either the configured
|
|
573
|
+
# `data_source_name` or defaults to the plugin name if not specified.
|
|
574
|
+
# @return [String]
|
|
575
|
+
#
|
|
576
|
+
# @!attribute [rw] type
|
|
577
|
+
# The type of the data source. For CloudWatch Logs sources, this
|
|
578
|
+
# corresponds to the `data_source_type` from the log event metadata.
|
|
579
|
+
# For third-party sources, this field is empty.
|
|
580
|
+
# @return [String]
|
|
581
|
+
#
|
|
582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DataSource AWS API Documentation
|
|
583
|
+
#
|
|
584
|
+
class DataSource < Struct.new(
|
|
585
|
+
:name,
|
|
586
|
+
:type)
|
|
587
|
+
SENSITIVE = []
|
|
588
|
+
include Aws::Structure
|
|
589
|
+
end
|
|
590
|
+
|
|
315
591
|
# @!attribute [rw] rule_identifier
|
|
316
592
|
# The identifier (name or ARN) of the organization centralization rule
|
|
317
593
|
# to delete.
|
|
@@ -325,6 +601,35 @@ module Aws::ObservabilityAdmin
|
|
|
325
601
|
include Aws::Structure
|
|
326
602
|
end
|
|
327
603
|
|
|
604
|
+
# @!attribute [rw] arn
|
|
605
|
+
# The Amazon Resource Name (ARN) of the S3 Table integration to
|
|
606
|
+
# delete.
|
|
607
|
+
# @return [String]
|
|
608
|
+
#
|
|
609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteS3TableIntegrationInput AWS API Documentation
|
|
610
|
+
#
|
|
611
|
+
class DeleteS3TableIntegrationInput < Struct.new(
|
|
612
|
+
:arn)
|
|
613
|
+
SENSITIVE = []
|
|
614
|
+
include Aws::Structure
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
# @!attribute [rw] pipeline_identifier
|
|
618
|
+
# The ARN of the telemetry pipeline to delete.
|
|
619
|
+
# @return [String]
|
|
620
|
+
#
|
|
621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteTelemetryPipelineInput AWS API Documentation
|
|
622
|
+
#
|
|
623
|
+
class DeleteTelemetryPipelineInput < Struct.new(
|
|
624
|
+
:pipeline_identifier)
|
|
625
|
+
SENSITIVE = []
|
|
626
|
+
include Aws::Structure
|
|
627
|
+
end
|
|
628
|
+
|
|
629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteTelemetryPipelineOutput AWS API Documentation
|
|
630
|
+
#
|
|
631
|
+
class DeleteTelemetryPipelineOutput < Aws::EmptyStructure; end
|
|
632
|
+
|
|
328
633
|
# @!attribute [rw] rule_identifier
|
|
329
634
|
# The identifier (name or ARN) of the organization telemetry rule to
|
|
330
635
|
# delete.
|
|
@@ -372,6 +677,107 @@ module Aws::ObservabilityAdmin
|
|
|
372
677
|
include Aws::Structure
|
|
373
678
|
end
|
|
374
679
|
|
|
680
|
+
# Configuration parameters for ELB load balancer logging, including
|
|
681
|
+
# output format and field delimiter settings.
|
|
682
|
+
#
|
|
683
|
+
# @!attribute [rw] output_format
|
|
684
|
+
# The format for ELB access log entries (plain text or JSON format).
|
|
685
|
+
# @return [String]
|
|
686
|
+
#
|
|
687
|
+
# @!attribute [rw] field_delimiter
|
|
688
|
+
# The delimiter character used to separate fields in ELB access log
|
|
689
|
+
# entries when using plain text format.
|
|
690
|
+
# @return [String]
|
|
691
|
+
#
|
|
692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ELBLoadBalancerLoggingParameters AWS API Documentation
|
|
693
|
+
#
|
|
694
|
+
class ELBLoadBalancerLoggingParameters < Struct.new(
|
|
695
|
+
:output_format,
|
|
696
|
+
:field_delimiter)
|
|
697
|
+
SENSITIVE = []
|
|
698
|
+
include Aws::Structure
|
|
699
|
+
end
|
|
700
|
+
|
|
701
|
+
# Defines the encryption configuration for S3 Table integrations,
|
|
702
|
+
# including the encryption algorithm and KMS key settings.
|
|
703
|
+
#
|
|
704
|
+
# @!attribute [rw] sse_algorithm
|
|
705
|
+
# The server-side encryption algorithm used for encrypting data in the
|
|
706
|
+
# S3 Table integration.
|
|
707
|
+
# @return [String]
|
|
708
|
+
#
|
|
709
|
+
# @!attribute [rw] kms_key_arn
|
|
710
|
+
# The Amazon Resource Name (ARN) of the KMS key used for encryption
|
|
711
|
+
# when using customer-managed keys.
|
|
712
|
+
# @return [String]
|
|
713
|
+
#
|
|
714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/Encryption AWS API Documentation
|
|
715
|
+
#
|
|
716
|
+
class Encryption < Struct.new(
|
|
717
|
+
:sse_algorithm,
|
|
718
|
+
:kms_key_arn)
|
|
719
|
+
SENSITIVE = []
|
|
720
|
+
include Aws::Structure
|
|
721
|
+
end
|
|
722
|
+
|
|
723
|
+
# Specifies a field in the request to redact from WAF logs, such as
|
|
724
|
+
# headers, query parameters, or body content.
|
|
725
|
+
#
|
|
726
|
+
# @!attribute [rw] single_header
|
|
727
|
+
# Redacts a specific header field by name from WAF logs.
|
|
728
|
+
# @return [Types::SingleHeader]
|
|
729
|
+
#
|
|
730
|
+
# @!attribute [rw] uri_path
|
|
731
|
+
# Redacts the URI path from WAF logs.
|
|
732
|
+
# @return [String]
|
|
733
|
+
#
|
|
734
|
+
# @!attribute [rw] query_string
|
|
735
|
+
# Redacts the entire query string from WAF logs.
|
|
736
|
+
# @return [String]
|
|
737
|
+
#
|
|
738
|
+
# @!attribute [rw] method
|
|
739
|
+
# Redacts the HTTP method from WAF logs.
|
|
740
|
+
# @return [String]
|
|
741
|
+
#
|
|
742
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/FieldToMatch AWS API Documentation
|
|
743
|
+
#
|
|
744
|
+
class FieldToMatch < Struct.new(
|
|
745
|
+
:single_header,
|
|
746
|
+
:uri_path,
|
|
747
|
+
:query_string,
|
|
748
|
+
:method)
|
|
749
|
+
SENSITIVE = []
|
|
750
|
+
include Aws::Structure
|
|
751
|
+
end
|
|
752
|
+
|
|
753
|
+
# A single filter condition that specifies behavior, requirement, and
|
|
754
|
+
# matching conditions for WAF log records.
|
|
755
|
+
#
|
|
756
|
+
# @!attribute [rw] behavior
|
|
757
|
+
# The action to take for log records matching this filter (KEEP or
|
|
758
|
+
# DROP).
|
|
759
|
+
# @return [String]
|
|
760
|
+
#
|
|
761
|
+
# @!attribute [rw] requirement
|
|
762
|
+
# Whether the log record must meet all conditions (MEETS\_ALL) or any
|
|
763
|
+
# condition (MEETS\_ANY) to match this filter.
|
|
764
|
+
# @return [String]
|
|
765
|
+
#
|
|
766
|
+
# @!attribute [rw] conditions
|
|
767
|
+
# The list of conditions that determine if a log record matches this
|
|
768
|
+
# filter.
|
|
769
|
+
# @return [Array<Types::Condition>]
|
|
770
|
+
#
|
|
771
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/Filter AWS API Documentation
|
|
772
|
+
#
|
|
773
|
+
class Filter < Struct.new(
|
|
774
|
+
:behavior,
|
|
775
|
+
:requirement,
|
|
776
|
+
:conditions)
|
|
777
|
+
SENSITIVE = []
|
|
778
|
+
include Aws::Structure
|
|
779
|
+
end
|
|
780
|
+
|
|
375
781
|
# @!attribute [rw] rule_identifier
|
|
376
782
|
# The identifier (name or ARN) of the organization centralization rule
|
|
377
783
|
# to retrieve.
|
|
@@ -442,15 +848,66 @@ module Aws::ObservabilityAdmin
|
|
|
442
848
|
include Aws::Structure
|
|
443
849
|
end
|
|
444
850
|
|
|
851
|
+
# @!attribute [rw] arn
|
|
852
|
+
# The Amazon Resource Name (ARN) of the S3 Table integration to
|
|
853
|
+
# retrieve.
|
|
854
|
+
# @return [String]
|
|
855
|
+
#
|
|
856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetS3TableIntegrationInput AWS API Documentation
|
|
857
|
+
#
|
|
858
|
+
class GetS3TableIntegrationInput < Struct.new(
|
|
859
|
+
:arn)
|
|
860
|
+
SENSITIVE = []
|
|
861
|
+
include Aws::Structure
|
|
862
|
+
end
|
|
863
|
+
|
|
864
|
+
# @!attribute [rw] arn
|
|
865
|
+
# The Amazon Resource Name (ARN) of the S3 Table integration.
|
|
866
|
+
# @return [String]
|
|
867
|
+
#
|
|
868
|
+
# @!attribute [rw] role_arn
|
|
869
|
+
# The Amazon Resource Name (ARN) of the IAM role used by the S3 Table
|
|
870
|
+
# integration.
|
|
871
|
+
# @return [String]
|
|
872
|
+
#
|
|
873
|
+
# @!attribute [rw] status
|
|
874
|
+
# The current status of the S3 Table integration.
|
|
875
|
+
# @return [String]
|
|
876
|
+
#
|
|
877
|
+
# @!attribute [rw] encryption
|
|
878
|
+
# The encryption configuration for the S3 Table integration.
|
|
879
|
+
# @return [Types::Encryption]
|
|
880
|
+
#
|
|
881
|
+
# @!attribute [rw] destination_table_bucket_arn
|
|
882
|
+
# The Amazon Resource Name (ARN) of the S3 bucket used as the
|
|
883
|
+
# destination for the table data.
|
|
884
|
+
# @return [String]
|
|
885
|
+
#
|
|
886
|
+
# @!attribute [rw] created_time_stamp
|
|
887
|
+
# The timestamp when the S3 Table integration was created.
|
|
888
|
+
# @return [Integer]
|
|
889
|
+
#
|
|
890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetS3TableIntegrationOutput AWS API Documentation
|
|
891
|
+
#
|
|
892
|
+
class GetS3TableIntegrationOutput < Struct.new(
|
|
893
|
+
:arn,
|
|
894
|
+
:role_arn,
|
|
895
|
+
:status,
|
|
896
|
+
:encryption,
|
|
897
|
+
:destination_table_bucket_arn,
|
|
898
|
+
:created_time_stamp)
|
|
899
|
+
SENSITIVE = []
|
|
900
|
+
include Aws::Structure
|
|
901
|
+
end
|
|
902
|
+
|
|
445
903
|
# @!attribute [rw] status
|
|
446
904
|
# The current status of the resource tags for telemetry feature
|
|
447
905
|
# (`Running`, `Stopped`, or `Impaired`).
|
|
448
906
|
# @return [String]
|
|
449
907
|
#
|
|
450
908
|
# @!attribute [rw] aws_resource_explorer_managed_view_arn
|
|
451
|
-
# The Amazon Resource Name (ARN) of the
|
|
452
|
-
#
|
|
453
|
-
# feature is enabled.
|
|
909
|
+
# The Amazon Resource Name (ARN) of the Resource Explorer managed view
|
|
910
|
+
# used for resource tags for telemetry, if the feature is enabled.
|
|
454
911
|
# @return [String]
|
|
455
912
|
#
|
|
456
913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetTelemetryEnrichmentStatusOutput AWS API Documentation
|
|
@@ -500,6 +957,31 @@ module Aws::ObservabilityAdmin
|
|
|
500
957
|
include Aws::Structure
|
|
501
958
|
end
|
|
502
959
|
|
|
960
|
+
# @!attribute [rw] pipeline_identifier
|
|
961
|
+
# The identifier (name or ARN) of the telemetry pipeline to retrieve.
|
|
962
|
+
# @return [String]
|
|
963
|
+
#
|
|
964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetTelemetryPipelineInput AWS API Documentation
|
|
965
|
+
#
|
|
966
|
+
class GetTelemetryPipelineInput < Struct.new(
|
|
967
|
+
:pipeline_identifier)
|
|
968
|
+
SENSITIVE = []
|
|
969
|
+
include Aws::Structure
|
|
970
|
+
end
|
|
971
|
+
|
|
972
|
+
# @!attribute [rw] pipeline
|
|
973
|
+
# The complete telemetry pipeline resource information, including
|
|
974
|
+
# configuration, status, and metadata.
|
|
975
|
+
# @return [Types::TelemetryPipeline]
|
|
976
|
+
#
|
|
977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetTelemetryPipelineOutput AWS API Documentation
|
|
978
|
+
#
|
|
979
|
+
class GetTelemetryPipelineOutput < Struct.new(
|
|
980
|
+
:pipeline)
|
|
981
|
+
SENSITIVE = []
|
|
982
|
+
include Aws::Structure
|
|
983
|
+
end
|
|
984
|
+
|
|
503
985
|
# @!attribute [rw] rule_identifier
|
|
504
986
|
# The identifier (name or ARN) of the organization telemetry rule to
|
|
505
987
|
# retrieve.
|
|
@@ -589,6 +1071,26 @@ module Aws::ObservabilityAdmin
|
|
|
589
1071
|
include Aws::Structure
|
|
590
1072
|
end
|
|
591
1073
|
|
|
1074
|
+
# Contains summary information about an S3 Table integration for listing
|
|
1075
|
+
# operations.
|
|
1076
|
+
#
|
|
1077
|
+
# @!attribute [rw] arn
|
|
1078
|
+
# The Amazon Resource Name (ARN) of the S3 Table integration.
|
|
1079
|
+
# @return [String]
|
|
1080
|
+
#
|
|
1081
|
+
# @!attribute [rw] status
|
|
1082
|
+
# The current status of the S3 Table integration.
|
|
1083
|
+
# @return [String]
|
|
1084
|
+
#
|
|
1085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/IntegrationSummary AWS API Documentation
|
|
1086
|
+
#
|
|
1087
|
+
class IntegrationSummary < Struct.new(
|
|
1088
|
+
:arn,
|
|
1089
|
+
:status)
|
|
1090
|
+
SENSITIVE = []
|
|
1091
|
+
include Aws::Structure
|
|
1092
|
+
end
|
|
1093
|
+
|
|
592
1094
|
# Indicates the request has failed to process because of an unknown
|
|
593
1095
|
# server error, exception, or failure.
|
|
594
1096
|
#
|
|
@@ -599,11 +1101,46 @@ module Aws::ObservabilityAdmin
|
|
|
599
1101
|
# The name of the exception.
|
|
600
1102
|
# @return [String]
|
|
601
1103
|
#
|
|
1104
|
+
# @!attribute [rw] retry_after_seconds
|
|
1105
|
+
# The number of seconds to wait before retrying the request.
|
|
1106
|
+
# @return [Integer]
|
|
1107
|
+
#
|
|
602
1108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/InternalServerException AWS API Documentation
|
|
603
1109
|
#
|
|
604
1110
|
class InternalServerException < Struct.new(
|
|
605
1111
|
:message,
|
|
606
|
-
:amzn_error_type
|
|
1112
|
+
:amzn_error_type,
|
|
1113
|
+
:retry_after_seconds)
|
|
1114
|
+
SENSITIVE = []
|
|
1115
|
+
include Aws::Structure
|
|
1116
|
+
end
|
|
1117
|
+
|
|
1118
|
+
# The requested operation cannot be completed on the specified resource
|
|
1119
|
+
# in the current state.
|
|
1120
|
+
#
|
|
1121
|
+
# @!attribute [rw] message
|
|
1122
|
+
# @return [String]
|
|
1123
|
+
#
|
|
1124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/InvalidStateException AWS API Documentation
|
|
1125
|
+
#
|
|
1126
|
+
class InvalidStateException < Struct.new(
|
|
1127
|
+
:message)
|
|
1128
|
+
SENSITIVE = []
|
|
1129
|
+
include Aws::Structure
|
|
1130
|
+
end
|
|
1131
|
+
|
|
1132
|
+
# Condition that matches based on WAF rule labels, with label names
|
|
1133
|
+
# limited to 1024 characters.
|
|
1134
|
+
#
|
|
1135
|
+
# @!attribute [rw] label_name
|
|
1136
|
+
# The label name to match, supporting alphanumeric characters,
|
|
1137
|
+
# underscores, hyphens, and colons.
|
|
1138
|
+
# @return [String]
|
|
1139
|
+
#
|
|
1140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/LabelNameCondition AWS API Documentation
|
|
1141
|
+
#
|
|
1142
|
+
class LabelNameCondition < Struct.new(
|
|
1143
|
+
:label_name)
|
|
607
1144
|
SENSITIVE = []
|
|
608
1145
|
include Aws::Structure
|
|
609
1146
|
end
|
|
@@ -787,14 +1324,51 @@ module Aws::ObservabilityAdmin
|
|
|
787
1324
|
# @return [Array<Types::TelemetryConfiguration>]
|
|
788
1325
|
#
|
|
789
1326
|
# @!attribute [rw] next_token
|
|
790
|
-
# The token for the next set of items to return. A previous call
|
|
791
|
-
# generates this token.
|
|
1327
|
+
# The token for the next set of items to return. A previous call
|
|
1328
|
+
# generates this token.
|
|
1329
|
+
# @return [String]
|
|
1330
|
+
#
|
|
1331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListResourceTelemetryOutput AWS API Documentation
|
|
1332
|
+
#
|
|
1333
|
+
class ListResourceTelemetryOutput < Struct.new(
|
|
1334
|
+
:telemetry_configurations,
|
|
1335
|
+
:next_token)
|
|
1336
|
+
SENSITIVE = []
|
|
1337
|
+
include Aws::Structure
|
|
1338
|
+
end
|
|
1339
|
+
|
|
1340
|
+
# @!attribute [rw] max_results
|
|
1341
|
+
# The maximum number of S3 Table integrations to return in a single
|
|
1342
|
+
# call.
|
|
1343
|
+
# @return [Integer]
|
|
1344
|
+
#
|
|
1345
|
+
# @!attribute [rw] next_token
|
|
1346
|
+
# The token for the next set of results. A previous call generates
|
|
1347
|
+
# this token.
|
|
1348
|
+
# @return [String]
|
|
1349
|
+
#
|
|
1350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListS3TableIntegrationsInput AWS API Documentation
|
|
1351
|
+
#
|
|
1352
|
+
class ListS3TableIntegrationsInput < Struct.new(
|
|
1353
|
+
:max_results,
|
|
1354
|
+
:next_token)
|
|
1355
|
+
SENSITIVE = []
|
|
1356
|
+
include Aws::Structure
|
|
1357
|
+
end
|
|
1358
|
+
|
|
1359
|
+
# @!attribute [rw] integration_summaries
|
|
1360
|
+
# A list of S3 Table integration summaries containing key information
|
|
1361
|
+
# about each integration.
|
|
1362
|
+
# @return [Array<Types::IntegrationSummary>]
|
|
1363
|
+
#
|
|
1364
|
+
# @!attribute [rw] next_token
|
|
1365
|
+
# A token to resume pagination of results.
|
|
792
1366
|
# @return [String]
|
|
793
1367
|
#
|
|
794
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/
|
|
1368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListS3TableIntegrationsOutput AWS API Documentation
|
|
795
1369
|
#
|
|
796
|
-
class
|
|
797
|
-
:
|
|
1370
|
+
class ListS3TableIntegrationsOutput < Struct.new(
|
|
1371
|
+
:integration_summaries,
|
|
798
1372
|
:next_token)
|
|
799
1373
|
SENSITIVE = []
|
|
800
1374
|
include Aws::Structure
|
|
@@ -825,6 +1399,43 @@ module Aws::ObservabilityAdmin
|
|
|
825
1399
|
include Aws::Structure
|
|
826
1400
|
end
|
|
827
1401
|
|
|
1402
|
+
# @!attribute [rw] max_results
|
|
1403
|
+
# The maximum number of telemetry pipelines to return in a single
|
|
1404
|
+
# call.
|
|
1405
|
+
# @return [Integer]
|
|
1406
|
+
#
|
|
1407
|
+
# @!attribute [rw] next_token
|
|
1408
|
+
# The token for the next set of results. A previous call generates
|
|
1409
|
+
# this token.
|
|
1410
|
+
# @return [String]
|
|
1411
|
+
#
|
|
1412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListTelemetryPipelinesInput AWS API Documentation
|
|
1413
|
+
#
|
|
1414
|
+
class ListTelemetryPipelinesInput < Struct.new(
|
|
1415
|
+
:max_results,
|
|
1416
|
+
:next_token)
|
|
1417
|
+
SENSITIVE = []
|
|
1418
|
+
include Aws::Structure
|
|
1419
|
+
end
|
|
1420
|
+
|
|
1421
|
+
# @!attribute [rw] pipeline_summaries
|
|
1422
|
+
# A list of telemetry pipeline summaries containing key information
|
|
1423
|
+
# about each pipeline.
|
|
1424
|
+
# @return [Array<Types::TelemetryPipelineSummary>]
|
|
1425
|
+
#
|
|
1426
|
+
# @!attribute [rw] next_token
|
|
1427
|
+
# A token to resume pagination of results.
|
|
1428
|
+
# @return [String]
|
|
1429
|
+
#
|
|
1430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListTelemetryPipelinesOutput AWS API Documentation
|
|
1431
|
+
#
|
|
1432
|
+
class ListTelemetryPipelinesOutput < Struct.new(
|
|
1433
|
+
:pipeline_summaries,
|
|
1434
|
+
:next_token)
|
|
1435
|
+
SENSITIVE = []
|
|
1436
|
+
include Aws::Structure
|
|
1437
|
+
end
|
|
1438
|
+
|
|
828
1439
|
# @!attribute [rw] rule_name_prefix
|
|
829
1440
|
# A string to filter organization telemetry rules whose names begin
|
|
830
1441
|
# with the specified prefix.
|
|
@@ -920,6 +1531,43 @@ module Aws::ObservabilityAdmin
|
|
|
920
1531
|
include Aws::Structure
|
|
921
1532
|
end
|
|
922
1533
|
|
|
1534
|
+
# Configuration parameters for Amazon Bedrock AgentCore logging,
|
|
1535
|
+
# including `logType` settings.
|
|
1536
|
+
#
|
|
1537
|
+
# @!attribute [rw] log_types
|
|
1538
|
+
# The type of log that the source is sending.
|
|
1539
|
+
# @return [Array<String>]
|
|
1540
|
+
#
|
|
1541
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/LogDeliveryParameters AWS API Documentation
|
|
1542
|
+
#
|
|
1543
|
+
class LogDeliveryParameters < Struct.new(
|
|
1544
|
+
:log_types)
|
|
1545
|
+
SENSITIVE = []
|
|
1546
|
+
include Aws::Structure
|
|
1547
|
+
end
|
|
1548
|
+
|
|
1549
|
+
# Configuration that determines which WAF log records to keep or drop
|
|
1550
|
+
# based on specified conditions.
|
|
1551
|
+
#
|
|
1552
|
+
# @!attribute [rw] filters
|
|
1553
|
+
# A list of filter conditions that determine log record handling
|
|
1554
|
+
# behavior.
|
|
1555
|
+
# @return [Array<Types::Filter>]
|
|
1556
|
+
#
|
|
1557
|
+
# @!attribute [rw] default_behavior
|
|
1558
|
+
# The default action (KEEP or DROP) for log records that don't match
|
|
1559
|
+
# any filter conditions.
|
|
1560
|
+
# @return [String]
|
|
1561
|
+
#
|
|
1562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/LoggingFilter AWS API Documentation
|
|
1563
|
+
#
|
|
1564
|
+
class LoggingFilter < Struct.new(
|
|
1565
|
+
:filters,
|
|
1566
|
+
:default_behavior)
|
|
1567
|
+
SENSITIVE = []
|
|
1568
|
+
include Aws::Structure
|
|
1569
|
+
end
|
|
1570
|
+
|
|
923
1571
|
# Configuration for backing up centralized log data to a secondary
|
|
924
1572
|
# region.
|
|
925
1573
|
#
|
|
@@ -929,7 +1577,7 @@ module Aws::ObservabilityAdmin
|
|
|
929
1577
|
# @return [String]
|
|
930
1578
|
#
|
|
931
1579
|
# @!attribute [rw] kms_key_arn
|
|
932
|
-
# KMS Key
|
|
1580
|
+
# KMS Key ARN belonging to the primary destination account and backup
|
|
933
1581
|
# region, to encrypt newly created central log groups in the backup
|
|
934
1582
|
# destination.
|
|
935
1583
|
# @return [String]
|
|
@@ -955,7 +1603,7 @@ module Aws::ObservabilityAdmin
|
|
|
955
1603
|
# @return [String]
|
|
956
1604
|
#
|
|
957
1605
|
# @!attribute [rw] kms_key_arn
|
|
958
|
-
# KMS Key
|
|
1606
|
+
# KMS Key ARN belonging to the primary destination account and region,
|
|
959
1607
|
# to encrypt newly created central log groups in the primary
|
|
960
1608
|
# destination.
|
|
961
1609
|
# @return [String]
|
|
@@ -978,15 +1626,84 @@ module Aws::ObservabilityAdmin
|
|
|
978
1626
|
include Aws::Structure
|
|
979
1627
|
end
|
|
980
1628
|
|
|
1629
|
+
# Contains the output from pipeline test operations, including processed
|
|
1630
|
+
# records and any errors encountered.
|
|
1631
|
+
#
|
|
1632
|
+
# @!attribute [rw] record
|
|
1633
|
+
# The processed record output from the pipeline test operation.
|
|
1634
|
+
# @return [Types::Record]
|
|
1635
|
+
#
|
|
1636
|
+
# @!attribute [rw] error
|
|
1637
|
+
# Any error that occurred during the pipeline test operation for this
|
|
1638
|
+
# record.
|
|
1639
|
+
# @return [Types::PipelineOutputError]
|
|
1640
|
+
#
|
|
1641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/PipelineOutput AWS API Documentation
|
|
1642
|
+
#
|
|
1643
|
+
class PipelineOutput < Struct.new(
|
|
1644
|
+
:record,
|
|
1645
|
+
:error)
|
|
1646
|
+
SENSITIVE = []
|
|
1647
|
+
include Aws::Structure
|
|
1648
|
+
end
|
|
1649
|
+
|
|
1650
|
+
# Contains detailed error information from pipeline test operations,
|
|
1651
|
+
# providing structured error responses for better debugging and
|
|
1652
|
+
# troubleshooting capabilities.
|
|
1653
|
+
#
|
|
1654
|
+
# @!attribute [rw] message
|
|
1655
|
+
# The detailed error message describing what went wrong during the
|
|
1656
|
+
# pipeline test operation for this record.
|
|
1657
|
+
# @return [String]
|
|
1658
|
+
#
|
|
1659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/PipelineOutputError AWS API Documentation
|
|
1660
|
+
#
|
|
1661
|
+
class PipelineOutputError < Struct.new(
|
|
1662
|
+
:message)
|
|
1663
|
+
SENSITIVE = []
|
|
1664
|
+
include Aws::Structure
|
|
1665
|
+
end
|
|
1666
|
+
|
|
1667
|
+
# Represents a test record structure used for pipeline testing
|
|
1668
|
+
# operations to validate data processing.
|
|
1669
|
+
#
|
|
1670
|
+
# @!attribute [rw] data
|
|
1671
|
+
# The data content of the test record used for pipeline validation.
|
|
1672
|
+
# @return [String]
|
|
1673
|
+
#
|
|
1674
|
+
# @!attribute [rw] type
|
|
1675
|
+
# The type of the test record, indicating the format or category of
|
|
1676
|
+
# the data.
|
|
1677
|
+
# @return [String]
|
|
1678
|
+
#
|
|
1679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/Record AWS API Documentation
|
|
1680
|
+
#
|
|
1681
|
+
class Record < Struct.new(
|
|
1682
|
+
:data,
|
|
1683
|
+
:type)
|
|
1684
|
+
SENSITIVE = []
|
|
1685
|
+
include Aws::Structure
|
|
1686
|
+
end
|
|
1687
|
+
|
|
981
1688
|
# The specified resource (such as a telemetry rule) could not be found.
|
|
982
1689
|
#
|
|
983
1690
|
# @!attribute [rw] message
|
|
984
1691
|
# @return [String]
|
|
985
1692
|
#
|
|
1693
|
+
# @!attribute [rw] resource_id
|
|
1694
|
+
# The identifier of the resource which could not be found.
|
|
1695
|
+
# @return [String]
|
|
1696
|
+
#
|
|
1697
|
+
# @!attribute [rw] resource_type
|
|
1698
|
+
# The type of the resource which could not be found.
|
|
1699
|
+
# @return [String]
|
|
1700
|
+
#
|
|
986
1701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ResourceNotFoundException AWS API Documentation
|
|
987
1702
|
#
|
|
988
1703
|
class ResourceNotFoundException < Struct.new(
|
|
989
|
-
:message
|
|
1704
|
+
:message,
|
|
1705
|
+
:resource_id,
|
|
1706
|
+
:resource_type)
|
|
990
1707
|
SENSITIVE = []
|
|
991
1708
|
include Aws::Structure
|
|
992
1709
|
end
|
|
@@ -997,6 +1714,22 @@ module Aws::ObservabilityAdmin
|
|
|
997
1714
|
# @!attribute [rw] message
|
|
998
1715
|
# @return [String]
|
|
999
1716
|
#
|
|
1717
|
+
# @!attribute [rw] resource_id
|
|
1718
|
+
# The identifier of the resource which exceeds the service quota.
|
|
1719
|
+
# @return [String]
|
|
1720
|
+
#
|
|
1721
|
+
# @!attribute [rw] resource_type
|
|
1722
|
+
# The type of the resource which exceeds the service quota.
|
|
1723
|
+
# @return [String]
|
|
1724
|
+
#
|
|
1725
|
+
# @!attribute [rw] service_code
|
|
1726
|
+
# The code for the service of the exceeded quota.
|
|
1727
|
+
# @return [String]
|
|
1728
|
+
#
|
|
1729
|
+
# @!attribute [rw] quota_code
|
|
1730
|
+
# The code for the exceeded service quota.
|
|
1731
|
+
# @return [String]
|
|
1732
|
+
#
|
|
1000
1733
|
# @!attribute [rw] amzn_error_type
|
|
1001
1734
|
# The name of the exception.
|
|
1002
1735
|
# @return [String]
|
|
@@ -1005,11 +1738,47 @@ module Aws::ObservabilityAdmin
|
|
|
1005
1738
|
#
|
|
1006
1739
|
class ServiceQuotaExceededException < Struct.new(
|
|
1007
1740
|
:message,
|
|
1741
|
+
:resource_id,
|
|
1742
|
+
:resource_type,
|
|
1743
|
+
:service_code,
|
|
1744
|
+
:quota_code,
|
|
1008
1745
|
:amzn_error_type)
|
|
1009
1746
|
SENSITIVE = []
|
|
1010
1747
|
include Aws::Structure
|
|
1011
1748
|
end
|
|
1012
1749
|
|
|
1750
|
+
# Structure containing a name field limited to 64 characters for header
|
|
1751
|
+
# or query parameter identification.
|
|
1752
|
+
#
|
|
1753
|
+
# @!attribute [rw] name
|
|
1754
|
+
# The name value, limited to 64 characters.
|
|
1755
|
+
# @return [String]
|
|
1756
|
+
#
|
|
1757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/SingleHeader AWS API Documentation
|
|
1758
|
+
#
|
|
1759
|
+
class SingleHeader < Struct.new(
|
|
1760
|
+
:name)
|
|
1761
|
+
SENSITIVE = []
|
|
1762
|
+
include Aws::Structure
|
|
1763
|
+
end
|
|
1764
|
+
|
|
1765
|
+
# A list of source plugin types used in the pipeline configuration (such
|
|
1766
|
+
# as `cloudwatch_logs` or `s3`). Currently supports a single source per
|
|
1767
|
+
# pipeline, but is structured as a list to accommodate multiple
|
|
1768
|
+
# pipelines in the configuration.
|
|
1769
|
+
#
|
|
1770
|
+
# @!attribute [rw] type
|
|
1771
|
+
# The plugin name of the source, such as `cloudwatch_logs` or `s3`.
|
|
1772
|
+
# @return [String]
|
|
1773
|
+
#
|
|
1774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/Source AWS API Documentation
|
|
1775
|
+
#
|
|
1776
|
+
class Source < Struct.new(
|
|
1777
|
+
:type)
|
|
1778
|
+
SENSITIVE = []
|
|
1779
|
+
include Aws::Structure
|
|
1780
|
+
end
|
|
1781
|
+
|
|
1013
1782
|
# Configuration for selecting and handling source log groups for
|
|
1014
1783
|
# centralization.
|
|
1015
1784
|
#
|
|
@@ -1041,8 +1810,8 @@ module Aws::ObservabilityAdmin
|
|
|
1041
1810
|
# @return [String]
|
|
1042
1811
|
#
|
|
1043
1812
|
# @!attribute [rw] aws_resource_explorer_managed_view_arn
|
|
1044
|
-
# The Amazon Resource Name (ARN) of the
|
|
1045
|
-
#
|
|
1813
|
+
# The Amazon Resource Name (ARN) of the Resource Explorer managed view
|
|
1814
|
+
# created for resource tags for telemetry.
|
|
1046
1815
|
# @return [String]
|
|
1047
1816
|
#
|
|
1048
1817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/StartTelemetryEnrichmentOutput AWS API Documentation
|
|
@@ -1101,11 +1870,13 @@ module Aws::ObservabilityAdmin
|
|
|
1101
1870
|
#
|
|
1102
1871
|
# @!attribute [rw] resource_type
|
|
1103
1872
|
# The type of resource, for example `Amazon Web
|
|
1104
|
-
# Services::EC2::Instance
|
|
1873
|
+
# Services::EC2::Instance`, or `Amazon Web Services::EKS::Cluster`,
|
|
1874
|
+
# etc.
|
|
1105
1875
|
# @return [String]
|
|
1106
1876
|
#
|
|
1107
1877
|
# @!attribute [rw] resource_identifier
|
|
1108
|
-
# The identifier of the resource, for example
|
|
1878
|
+
# The identifier of the resource, for example for Amazon VPC, it would
|
|
1879
|
+
# be `vpc-1a2b3c4d5e6f1a2b3`.
|
|
1109
1880
|
# @return [String]
|
|
1110
1881
|
#
|
|
1111
1882
|
# @!attribute [rw] resource_tags
|
|
@@ -1153,13 +1924,166 @@ module Aws::ObservabilityAdmin
|
|
|
1153
1924
|
# resource type.
|
|
1154
1925
|
# @return [Types::VPCFlowLogParameters]
|
|
1155
1926
|
#
|
|
1927
|
+
# @!attribute [rw] cloudtrail_parameters
|
|
1928
|
+
# Configuration parameters specific to Amazon Web Services CloudTrail
|
|
1929
|
+
# when CloudTrail is the source type.
|
|
1930
|
+
# @return [Types::CloudtrailParameters]
|
|
1931
|
+
#
|
|
1932
|
+
# @!attribute [rw] elb_load_balancer_logging_parameters
|
|
1933
|
+
# Configuration parameters specific to ELB load balancer logging when
|
|
1934
|
+
# ELB is the resource type.
|
|
1935
|
+
# @return [Types::ELBLoadBalancerLoggingParameters]
|
|
1936
|
+
#
|
|
1937
|
+
# @!attribute [rw] waf_logging_parameters
|
|
1938
|
+
# Configuration parameters specific to WAF logging when WAF is the
|
|
1939
|
+
# resource type.
|
|
1940
|
+
# @return [Types::WAFLoggingParameters]
|
|
1941
|
+
#
|
|
1942
|
+
# @!attribute [rw] log_delivery_parameters
|
|
1943
|
+
# Configuration parameters specific to Amazon Bedrock AgentCore
|
|
1944
|
+
# logging when Amazon Bedrock AgentCore is the resource type.
|
|
1945
|
+
# @return [Types::LogDeliveryParameters]
|
|
1946
|
+
#
|
|
1156
1947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TelemetryDestinationConfiguration AWS API Documentation
|
|
1157
1948
|
#
|
|
1158
1949
|
class TelemetryDestinationConfiguration < Struct.new(
|
|
1159
1950
|
:destination_type,
|
|
1160
1951
|
:destination_pattern,
|
|
1161
1952
|
:retention_in_days,
|
|
1162
|
-
:vpc_flow_log_parameters
|
|
1953
|
+
:vpc_flow_log_parameters,
|
|
1954
|
+
:cloudtrail_parameters,
|
|
1955
|
+
:elb_load_balancer_logging_parameters,
|
|
1956
|
+
:waf_logging_parameters,
|
|
1957
|
+
:log_delivery_parameters)
|
|
1958
|
+
SENSITIVE = []
|
|
1959
|
+
include Aws::Structure
|
|
1960
|
+
end
|
|
1961
|
+
|
|
1962
|
+
# Represents a complete telemetry pipeline resource with configuration,
|
|
1963
|
+
# status, and metadata for data processing and transformation.
|
|
1964
|
+
#
|
|
1965
|
+
# @!attribute [rw] created_time_stamp
|
|
1966
|
+
# The timestamp when the telemetry pipeline was created.
|
|
1967
|
+
# @return [Integer]
|
|
1968
|
+
#
|
|
1969
|
+
# @!attribute [rw] last_update_time_stamp
|
|
1970
|
+
# The timestamp when the telemetry pipeline was last updated.
|
|
1971
|
+
# @return [Integer]
|
|
1972
|
+
#
|
|
1973
|
+
# @!attribute [rw] arn
|
|
1974
|
+
# The Amazon Resource Name (ARN) of the telemetry pipeline.
|
|
1975
|
+
# @return [String]
|
|
1976
|
+
#
|
|
1977
|
+
# @!attribute [rw] name
|
|
1978
|
+
# The name of the telemetry pipeline.
|
|
1979
|
+
# @return [String]
|
|
1980
|
+
#
|
|
1981
|
+
# @!attribute [rw] configuration
|
|
1982
|
+
# The configuration that defines how the telemetry pipeline processes
|
|
1983
|
+
# data.
|
|
1984
|
+
# @return [Types::TelemetryPipelineConfiguration]
|
|
1985
|
+
#
|
|
1986
|
+
# @!attribute [rw] status
|
|
1987
|
+
# The current status of the telemetry pipeline.
|
|
1988
|
+
# @return [String]
|
|
1989
|
+
#
|
|
1990
|
+
# @!attribute [rw] status_reason
|
|
1991
|
+
# Additional information about the pipeline status, including reasons
|
|
1992
|
+
# for failure states.
|
|
1993
|
+
# @return [Types::TelemetryPipelineStatusReason]
|
|
1994
|
+
#
|
|
1995
|
+
# @!attribute [rw] tags
|
|
1996
|
+
# The key-value pairs associated with the telemetry pipeline resource.
|
|
1997
|
+
# @return [Hash<String,String>]
|
|
1998
|
+
#
|
|
1999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TelemetryPipeline AWS API Documentation
|
|
2000
|
+
#
|
|
2001
|
+
class TelemetryPipeline < Struct.new(
|
|
2002
|
+
:created_time_stamp,
|
|
2003
|
+
:last_update_time_stamp,
|
|
2004
|
+
:arn,
|
|
2005
|
+
:name,
|
|
2006
|
+
:configuration,
|
|
2007
|
+
:status,
|
|
2008
|
+
:status_reason,
|
|
2009
|
+
:tags)
|
|
2010
|
+
SENSITIVE = []
|
|
2011
|
+
include Aws::Structure
|
|
2012
|
+
end
|
|
2013
|
+
|
|
2014
|
+
# Defines the configuration for a telemetry pipeline, including how data
|
|
2015
|
+
# flows from sources through processors to destinations.
|
|
2016
|
+
#
|
|
2017
|
+
# @!attribute [rw] body
|
|
2018
|
+
# The pipeline configuration body that defines the data processing
|
|
2019
|
+
# rules and transformations.
|
|
2020
|
+
# @return [String]
|
|
2021
|
+
#
|
|
2022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TelemetryPipelineConfiguration AWS API Documentation
|
|
2023
|
+
#
|
|
2024
|
+
class TelemetryPipelineConfiguration < Struct.new(
|
|
2025
|
+
:body)
|
|
2026
|
+
SENSITIVE = []
|
|
2027
|
+
include Aws::Structure
|
|
2028
|
+
end
|
|
2029
|
+
|
|
2030
|
+
# Provides detailed information about the status of a telemetry
|
|
2031
|
+
# pipeline, including reasons for specific states.
|
|
2032
|
+
#
|
|
2033
|
+
# @!attribute [rw] description
|
|
2034
|
+
# A description of the pipeline status reason, providing additional
|
|
2035
|
+
# context about the current state.
|
|
2036
|
+
# @return [String]
|
|
2037
|
+
#
|
|
2038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TelemetryPipelineStatusReason AWS API Documentation
|
|
2039
|
+
#
|
|
2040
|
+
class TelemetryPipelineStatusReason < Struct.new(
|
|
2041
|
+
:description)
|
|
2042
|
+
SENSITIVE = []
|
|
2043
|
+
include Aws::Structure
|
|
2044
|
+
end
|
|
2045
|
+
|
|
2046
|
+
# Contains summary information about a telemetry pipeline for listing
|
|
2047
|
+
# operations.
|
|
2048
|
+
#
|
|
2049
|
+
# @!attribute [rw] created_time_stamp
|
|
2050
|
+
# The timestamp when the telemetry pipeline was created.
|
|
2051
|
+
# @return [Integer]
|
|
2052
|
+
#
|
|
2053
|
+
# @!attribute [rw] last_update_time_stamp
|
|
2054
|
+
# The timestamp when the telemetry pipeline was last updated.
|
|
2055
|
+
# @return [Integer]
|
|
2056
|
+
#
|
|
2057
|
+
# @!attribute [rw] arn
|
|
2058
|
+
# The Amazon Resource Name (ARN) of the telemetry pipeline.
|
|
2059
|
+
# @return [String]
|
|
2060
|
+
#
|
|
2061
|
+
# @!attribute [rw] name
|
|
2062
|
+
# The name of the telemetry pipeline.
|
|
2063
|
+
# @return [String]
|
|
2064
|
+
#
|
|
2065
|
+
# @!attribute [rw] status
|
|
2066
|
+
# The current status of the telemetry pipeline.
|
|
2067
|
+
# @return [String]
|
|
2068
|
+
#
|
|
2069
|
+
# @!attribute [rw] tags
|
|
2070
|
+
# The key-value pairs associated with the telemetry pipeline resource.
|
|
2071
|
+
# @return [Hash<String,String>]
|
|
2072
|
+
#
|
|
2073
|
+
# @!attribute [rw] configuration_summary
|
|
2074
|
+
# A summary of the pipeline configuration components.
|
|
2075
|
+
# @return [Types::ConfigurationSummary]
|
|
2076
|
+
#
|
|
2077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TelemetryPipelineSummary AWS API Documentation
|
|
2078
|
+
#
|
|
2079
|
+
class TelemetryPipelineSummary < Struct.new(
|
|
2080
|
+
:created_time_stamp,
|
|
2081
|
+
:last_update_time_stamp,
|
|
2082
|
+
:arn,
|
|
2083
|
+
:name,
|
|
2084
|
+
:status,
|
|
2085
|
+
:tags,
|
|
2086
|
+
:configuration_summary)
|
|
1163
2087
|
SENSITIVE = []
|
|
1164
2088
|
include Aws::Structure
|
|
1165
2089
|
end
|
|
@@ -1169,13 +2093,20 @@ module Aws::ObservabilityAdmin
|
|
|
1169
2093
|
#
|
|
1170
2094
|
# @!attribute [rw] resource_type
|
|
1171
2095
|
# The type of Amazon Web Services resource to configure telemetry for
|
|
1172
|
-
# (e.g., "AWS::EC2::VPC"
|
|
2096
|
+
# (e.g., "AWS::EC2::VPC", "AWS::EKS::Cluster",
|
|
2097
|
+
# "AWS::WAFv2::WebACL").
|
|
1173
2098
|
# @return [String]
|
|
1174
2099
|
#
|
|
1175
2100
|
# @!attribute [rw] telemetry_type
|
|
1176
2101
|
# The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
1177
2102
|
# @return [String]
|
|
1178
2103
|
#
|
|
2104
|
+
# @!attribute [rw] telemetry_source_types
|
|
2105
|
+
# The specific telemetry source types to configure for the resource,
|
|
2106
|
+
# such as VPC\_FLOW\_LOGS or EKS\_AUDIT\_LOGS. TelemetrySourceTypes
|
|
2107
|
+
# must be correlated with the specific resource type.
|
|
2108
|
+
# @return [Array<String>]
|
|
2109
|
+
#
|
|
1179
2110
|
# @!attribute [rw] destination_configuration
|
|
1180
2111
|
# Configuration specifying where and how the telemetry data should be
|
|
1181
2112
|
# delivered.
|
|
@@ -1196,6 +2127,7 @@ module Aws::ObservabilityAdmin
|
|
|
1196
2127
|
class TelemetryRule < Struct.new(
|
|
1197
2128
|
:resource_type,
|
|
1198
2129
|
:telemetry_type,
|
|
2130
|
+
:telemetry_source_types,
|
|
1199
2131
|
:destination_configuration,
|
|
1200
2132
|
:scope,
|
|
1201
2133
|
:selection_criteria)
|
|
@@ -1230,6 +2162,12 @@ module Aws::ObservabilityAdmin
|
|
|
1230
2162
|
# configures.
|
|
1231
2163
|
# @return [String]
|
|
1232
2164
|
#
|
|
2165
|
+
# @!attribute [rw] telemetry_source_types
|
|
2166
|
+
# The types of telemetry sources configured for this rule, such as VPC
|
|
2167
|
+
# Flow Logs or EKS audit logs. TelemetrySourceTypes must be correlated
|
|
2168
|
+
# with the specific resource type.
|
|
2169
|
+
# @return [Array<String>]
|
|
2170
|
+
#
|
|
1233
2171
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TelemetryRuleSummary AWS API Documentation
|
|
1234
2172
|
#
|
|
1235
2173
|
class TelemetryRuleSummary < Struct.new(
|
|
@@ -1238,7 +2176,39 @@ module Aws::ObservabilityAdmin
|
|
|
1238
2176
|
:created_time_stamp,
|
|
1239
2177
|
:last_update_time_stamp,
|
|
1240
2178
|
:resource_type,
|
|
1241
|
-
:telemetry_type
|
|
2179
|
+
:telemetry_type,
|
|
2180
|
+
:telemetry_source_types)
|
|
2181
|
+
SENSITIVE = []
|
|
2182
|
+
include Aws::Structure
|
|
2183
|
+
end
|
|
2184
|
+
|
|
2185
|
+
# @!attribute [rw] records
|
|
2186
|
+
# The sample records to process through the pipeline configuration for
|
|
2187
|
+
# testing purposes.
|
|
2188
|
+
# @return [Array<Types::Record>]
|
|
2189
|
+
#
|
|
2190
|
+
# @!attribute [rw] configuration
|
|
2191
|
+
# The pipeline configuration to test with the provided sample records.
|
|
2192
|
+
# @return [Types::TelemetryPipelineConfiguration]
|
|
2193
|
+
#
|
|
2194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TestTelemetryPipelineInput AWS API Documentation
|
|
2195
|
+
#
|
|
2196
|
+
class TestTelemetryPipelineInput < Struct.new(
|
|
2197
|
+
:records,
|
|
2198
|
+
:configuration)
|
|
2199
|
+
SENSITIVE = []
|
|
2200
|
+
include Aws::Structure
|
|
2201
|
+
end
|
|
2202
|
+
|
|
2203
|
+
# @!attribute [rw] results
|
|
2204
|
+
# The results of processing the test records through the pipeline
|
|
2205
|
+
# configuration, including any outputs or errors.
|
|
2206
|
+
# @return [Array<Types::PipelineOutput>]
|
|
2207
|
+
#
|
|
2208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TestTelemetryPipelineOutput AWS API Documentation
|
|
2209
|
+
#
|
|
2210
|
+
class TestTelemetryPipelineOutput < Struct.new(
|
|
2211
|
+
:results)
|
|
1242
2212
|
SENSITIVE = []
|
|
1243
2213
|
include Aws::Structure
|
|
1244
2214
|
end
|
|
@@ -1307,6 +2277,28 @@ module Aws::ObservabilityAdmin
|
|
|
1307
2277
|
include Aws::Structure
|
|
1308
2278
|
end
|
|
1309
2279
|
|
|
2280
|
+
# @!attribute [rw] pipeline_identifier
|
|
2281
|
+
# The ARN of the telemetry pipeline to update.
|
|
2282
|
+
# @return [String]
|
|
2283
|
+
#
|
|
2284
|
+
# @!attribute [rw] configuration
|
|
2285
|
+
# The new configuration for the telemetry pipeline, including updated
|
|
2286
|
+
# sources, processors, and destinations.
|
|
2287
|
+
# @return [Types::TelemetryPipelineConfiguration]
|
|
2288
|
+
#
|
|
2289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/UpdateTelemetryPipelineInput AWS API Documentation
|
|
2290
|
+
#
|
|
2291
|
+
class UpdateTelemetryPipelineInput < Struct.new(
|
|
2292
|
+
:pipeline_identifier,
|
|
2293
|
+
:configuration)
|
|
2294
|
+
SENSITIVE = []
|
|
2295
|
+
include Aws::Structure
|
|
2296
|
+
end
|
|
2297
|
+
|
|
2298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/UpdateTelemetryPipelineOutput AWS API Documentation
|
|
2299
|
+
#
|
|
2300
|
+
class UpdateTelemetryPipelineOutput < Aws::EmptyStructure; end
|
|
2301
|
+
|
|
1310
2302
|
# @!attribute [rw] rule_identifier
|
|
1311
2303
|
# The identifier (name or ARN) of the organization telemetry rule to
|
|
1312
2304
|
# update.
|
|
@@ -1394,16 +2386,98 @@ module Aws::ObservabilityAdmin
|
|
|
1394
2386
|
include Aws::Structure
|
|
1395
2387
|
end
|
|
1396
2388
|
|
|
2389
|
+
# @!attribute [rw] configuration
|
|
2390
|
+
# The pipeline configuration to validate for syntax and compatibility.
|
|
2391
|
+
# @return [Types::TelemetryPipelineConfiguration]
|
|
2392
|
+
#
|
|
2393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ValidateTelemetryPipelineConfigurationInput AWS API Documentation
|
|
2394
|
+
#
|
|
2395
|
+
class ValidateTelemetryPipelineConfigurationInput < Struct.new(
|
|
2396
|
+
:configuration)
|
|
2397
|
+
SENSITIVE = []
|
|
2398
|
+
include Aws::Structure
|
|
2399
|
+
end
|
|
2400
|
+
|
|
2401
|
+
# @!attribute [rw] errors
|
|
2402
|
+
# A list of validation errors found in the pipeline configuration, if
|
|
2403
|
+
# any.
|
|
2404
|
+
# @return [Array<Types::ValidationError>]
|
|
2405
|
+
#
|
|
2406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ValidateTelemetryPipelineConfigurationOutput AWS API Documentation
|
|
2407
|
+
#
|
|
2408
|
+
class ValidateTelemetryPipelineConfigurationOutput < Struct.new(
|
|
2409
|
+
:errors)
|
|
2410
|
+
SENSITIVE = []
|
|
2411
|
+
include Aws::Structure
|
|
2412
|
+
end
|
|
2413
|
+
|
|
2414
|
+
# Represents a detailed validation error with message, reason, and field
|
|
2415
|
+
# mapping for comprehensive error reporting.
|
|
2416
|
+
#
|
|
2417
|
+
# @!attribute [rw] message
|
|
2418
|
+
# The error message describing the validation issue.
|
|
2419
|
+
# @return [String]
|
|
2420
|
+
#
|
|
2421
|
+
# @!attribute [rw] reason
|
|
2422
|
+
# The reason code or category for the validation error.
|
|
2423
|
+
# @return [String]
|
|
2424
|
+
#
|
|
2425
|
+
# @!attribute [rw] field_map
|
|
2426
|
+
# A mapping of field names to specific validation issues within the
|
|
2427
|
+
# configuration.
|
|
2428
|
+
# @return [Hash<String,String>]
|
|
2429
|
+
#
|
|
2430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ValidationError AWS API Documentation
|
|
2431
|
+
#
|
|
2432
|
+
class ValidationError < Struct.new(
|
|
2433
|
+
:message,
|
|
2434
|
+
:reason,
|
|
2435
|
+
:field_map)
|
|
2436
|
+
SENSITIVE = []
|
|
2437
|
+
include Aws::Structure
|
|
2438
|
+
end
|
|
2439
|
+
|
|
1397
2440
|
# Indicates input validation failed. Check your request parameters and
|
|
1398
2441
|
# retry the request.
|
|
1399
2442
|
#
|
|
1400
2443
|
# @!attribute [rw] message
|
|
1401
2444
|
# @return [String]
|
|
1402
2445
|
#
|
|
2446
|
+
# @!attribute [rw] errors
|
|
2447
|
+
# The errors in the input which caused the exception.
|
|
2448
|
+
# @return [Array<Types::ValidationError>]
|
|
2449
|
+
#
|
|
1403
2450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ValidationException AWS API Documentation
|
|
1404
2451
|
#
|
|
1405
2452
|
class ValidationException < Struct.new(
|
|
1406
|
-
:message
|
|
2453
|
+
:message,
|
|
2454
|
+
:errors)
|
|
2455
|
+
SENSITIVE = []
|
|
2456
|
+
include Aws::Structure
|
|
2457
|
+
end
|
|
2458
|
+
|
|
2459
|
+
# Configuration parameters for WAF logging, including redacted fields
|
|
2460
|
+
# and logging filters.
|
|
2461
|
+
#
|
|
2462
|
+
# @!attribute [rw] redacted_fields
|
|
2463
|
+
# The fields to redact from WAF logs to protect sensitive information.
|
|
2464
|
+
# @return [Array<Types::FieldToMatch>]
|
|
2465
|
+
#
|
|
2466
|
+
# @!attribute [rw] logging_filter
|
|
2467
|
+
# A filter configuration that determines which WAF log records to
|
|
2468
|
+
# include or exclude.
|
|
2469
|
+
# @return [Types::LoggingFilter]
|
|
2470
|
+
#
|
|
2471
|
+
# @!attribute [rw] log_type
|
|
2472
|
+
# The type of WAF logs to collect (currently supports WAF\_LOGS).
|
|
2473
|
+
# @return [String]
|
|
2474
|
+
#
|
|
2475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/WAFLoggingParameters AWS API Documentation
|
|
2476
|
+
#
|
|
2477
|
+
class WAFLoggingParameters < Struct.new(
|
|
2478
|
+
:redacted_fields,
|
|
2479
|
+
:logging_filter,
|
|
2480
|
+
:log_type)
|
|
1407
2481
|
SENSITIVE = []
|
|
1408
2482
|
include Aws::Structure
|
|
1409
2483
|
end
|