aws-sdk-observabilityadmin 1.16.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 +5 -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 +1 -1
data/sig/types.rbs
CHANGED
|
@@ -14,6 +14,28 @@ module Aws::ObservabilityAdmin
|
|
|
14
14
|
SENSITIVE: []
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
+
class ActionCondition
|
|
18
|
+
attr_accessor action: ("ALLOW" | "BLOCK" | "COUNT" | "CAPTCHA" | "CHALLENGE" | "EXCLUDED_AS_COUNT")
|
|
19
|
+
SENSITIVE: []
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
class AdvancedEventSelector
|
|
23
|
+
attr_accessor name: ::String
|
|
24
|
+
attr_accessor field_selectors: ::Array[Types::AdvancedFieldSelector]
|
|
25
|
+
SENSITIVE: []
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
class AdvancedFieldSelector
|
|
29
|
+
attr_accessor field: ::String
|
|
30
|
+
attr_accessor equals: ::Array[::String]
|
|
31
|
+
attr_accessor starts_with: ::Array[::String]
|
|
32
|
+
attr_accessor ends_with: ::Array[::String]
|
|
33
|
+
attr_accessor not_equals: ::Array[::String]
|
|
34
|
+
attr_accessor not_starts_with: ::Array[::String]
|
|
35
|
+
attr_accessor not_ends_with: ::Array[::String]
|
|
36
|
+
SENSITIVE: []
|
|
37
|
+
end
|
|
38
|
+
|
|
17
39
|
class CentralizationRule
|
|
18
40
|
attr_accessor source: Types::CentralizationRuleSource
|
|
19
41
|
attr_accessor destination: Types::CentralizationRuleDestination
|
|
@@ -48,8 +70,30 @@ module Aws::ObservabilityAdmin
|
|
|
48
70
|
SENSITIVE: []
|
|
49
71
|
end
|
|
50
72
|
|
|
73
|
+
class CloudtrailParameters
|
|
74
|
+
attr_accessor advanced_event_selectors: ::Array[Types::AdvancedEventSelector]
|
|
75
|
+
SENSITIVE: []
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
class Condition
|
|
79
|
+
attr_accessor action_condition: Types::ActionCondition
|
|
80
|
+
attr_accessor label_name_condition: Types::LabelNameCondition
|
|
81
|
+
SENSITIVE: []
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
class ConfigurationSummary
|
|
85
|
+
attr_accessor sources: ::Array[Types::Source]
|
|
86
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
|
87
|
+
attr_accessor processors: ::Array[::String]
|
|
88
|
+
attr_accessor processor_count: ::Integer
|
|
89
|
+
attr_accessor sinks: ::Array[::String]
|
|
90
|
+
SENSITIVE: []
|
|
91
|
+
end
|
|
92
|
+
|
|
51
93
|
class ConflictException
|
|
52
94
|
attr_accessor message: ::String
|
|
95
|
+
attr_accessor resource_id: ::String
|
|
96
|
+
attr_accessor resource_type: ::String
|
|
53
97
|
SENSITIVE: []
|
|
54
98
|
end
|
|
55
99
|
|
|
@@ -65,6 +109,30 @@ module Aws::ObservabilityAdmin
|
|
|
65
109
|
SENSITIVE: []
|
|
66
110
|
end
|
|
67
111
|
|
|
112
|
+
class CreateS3TableIntegrationInput
|
|
113
|
+
attr_accessor encryption: Types::Encryption
|
|
114
|
+
attr_accessor role_arn: ::String
|
|
115
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
116
|
+
SENSITIVE: []
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
class CreateS3TableIntegrationOutput
|
|
120
|
+
attr_accessor arn: ::String
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
class CreateTelemetryPipelineInput
|
|
125
|
+
attr_accessor name: ::String
|
|
126
|
+
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|
|
127
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
128
|
+
SENSITIVE: []
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
class CreateTelemetryPipelineOutput
|
|
132
|
+
attr_accessor arn: ::String
|
|
133
|
+
SENSITIVE: []
|
|
134
|
+
end
|
|
135
|
+
|
|
68
136
|
class CreateTelemetryRuleForOrganizationInput
|
|
69
137
|
attr_accessor rule_name: ::String
|
|
70
138
|
attr_accessor rule: Types::TelemetryRule
|
|
@@ -89,11 +157,30 @@ module Aws::ObservabilityAdmin
|
|
|
89
157
|
SENSITIVE: []
|
|
90
158
|
end
|
|
91
159
|
|
|
160
|
+
class DataSource
|
|
161
|
+
attr_accessor name: ::String
|
|
162
|
+
attr_accessor type: ::String
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
92
166
|
class DeleteCentralizationRuleForOrganizationInput
|
|
93
167
|
attr_accessor rule_identifier: ::String
|
|
94
168
|
SENSITIVE: []
|
|
95
169
|
end
|
|
96
170
|
|
|
171
|
+
class DeleteS3TableIntegrationInput
|
|
172
|
+
attr_accessor arn: ::String
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class DeleteTelemetryPipelineInput
|
|
177
|
+
attr_accessor pipeline_identifier: ::String
|
|
178
|
+
SENSITIVE: []
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
class DeleteTelemetryPipelineOutput < Aws::EmptyStructure
|
|
182
|
+
end
|
|
183
|
+
|
|
97
184
|
class DeleteTelemetryRuleForOrganizationInput
|
|
98
185
|
attr_accessor rule_identifier: ::String
|
|
99
186
|
SENSITIVE: []
|
|
@@ -110,6 +197,33 @@ module Aws::ObservabilityAdmin
|
|
|
110
197
|
SENSITIVE: []
|
|
111
198
|
end
|
|
112
199
|
|
|
200
|
+
class ELBLoadBalancerLoggingParameters
|
|
201
|
+
attr_accessor output_format: ("plain" | "json")
|
|
202
|
+
attr_accessor field_delimiter: ::String
|
|
203
|
+
SENSITIVE: []
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
class Encryption
|
|
207
|
+
attr_accessor sse_algorithm: ("aws:kms" | "AES256")
|
|
208
|
+
attr_accessor kms_key_arn: ::String
|
|
209
|
+
SENSITIVE: []
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
class FieldToMatch
|
|
213
|
+
attr_accessor single_header: Types::SingleHeader
|
|
214
|
+
attr_accessor uri_path: ::String
|
|
215
|
+
attr_accessor query_string: ::String
|
|
216
|
+
attr_accessor method: ::String
|
|
217
|
+
SENSITIVE: []
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
class Filter
|
|
221
|
+
attr_accessor behavior: ("KEEP" | "DROP")
|
|
222
|
+
attr_accessor requirement: ("MEETS_ALL" | "MEETS_ANY")
|
|
223
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
224
|
+
SENSITIVE: []
|
|
225
|
+
end
|
|
226
|
+
|
|
113
227
|
class GetCentralizationRuleForOrganizationInput
|
|
114
228
|
attr_accessor rule_identifier: ::String
|
|
115
229
|
SENSITIVE: []
|
|
@@ -128,6 +242,21 @@ module Aws::ObservabilityAdmin
|
|
|
128
242
|
SENSITIVE: []
|
|
129
243
|
end
|
|
130
244
|
|
|
245
|
+
class GetS3TableIntegrationInput
|
|
246
|
+
attr_accessor arn: ::String
|
|
247
|
+
SENSITIVE: []
|
|
248
|
+
end
|
|
249
|
+
|
|
250
|
+
class GetS3TableIntegrationOutput
|
|
251
|
+
attr_accessor arn: ::String
|
|
252
|
+
attr_accessor role_arn: ::String
|
|
253
|
+
attr_accessor status: ("ACTIVE" | "DELETING")
|
|
254
|
+
attr_accessor encryption: Types::Encryption
|
|
255
|
+
attr_accessor destination_table_bucket_arn: ::String
|
|
256
|
+
attr_accessor created_time_stamp: ::Integer
|
|
257
|
+
SENSITIVE: []
|
|
258
|
+
end
|
|
259
|
+
|
|
131
260
|
class GetTelemetryEnrichmentStatusOutput
|
|
132
261
|
attr_accessor status: ("Running" | "Stopped" | "Impaired")
|
|
133
262
|
attr_accessor aws_resource_explorer_managed_view_arn: ::String
|
|
@@ -146,6 +275,16 @@ module Aws::ObservabilityAdmin
|
|
|
146
275
|
SENSITIVE: []
|
|
147
276
|
end
|
|
148
277
|
|
|
278
|
+
class GetTelemetryPipelineInput
|
|
279
|
+
attr_accessor pipeline_identifier: ::String
|
|
280
|
+
SENSITIVE: []
|
|
281
|
+
end
|
|
282
|
+
|
|
283
|
+
class GetTelemetryPipelineOutput
|
|
284
|
+
attr_accessor pipeline: Types::TelemetryPipeline
|
|
285
|
+
SENSITIVE: []
|
|
286
|
+
end
|
|
287
|
+
|
|
149
288
|
class GetTelemetryRuleForOrganizationInput
|
|
150
289
|
attr_accessor rule_identifier: ::String
|
|
151
290
|
SENSITIVE: []
|
|
@@ -174,9 +313,26 @@ module Aws::ObservabilityAdmin
|
|
|
174
313
|
SENSITIVE: []
|
|
175
314
|
end
|
|
176
315
|
|
|
316
|
+
class IntegrationSummary
|
|
317
|
+
attr_accessor arn: ::String
|
|
318
|
+
attr_accessor status: ("ACTIVE" | "DELETING")
|
|
319
|
+
SENSITIVE: []
|
|
320
|
+
end
|
|
321
|
+
|
|
177
322
|
class InternalServerException
|
|
178
323
|
attr_accessor message: ::String
|
|
179
324
|
attr_accessor amzn_error_type: ::String
|
|
325
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
326
|
+
SENSITIVE: []
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
class InvalidStateException
|
|
330
|
+
attr_accessor message: ::String
|
|
331
|
+
SENSITIVE: []
|
|
332
|
+
end
|
|
333
|
+
|
|
334
|
+
class LabelNameCondition
|
|
335
|
+
attr_accessor label_name: ::String
|
|
180
336
|
SENSITIVE: []
|
|
181
337
|
end
|
|
182
338
|
|
|
@@ -197,7 +353,7 @@ module Aws::ObservabilityAdmin
|
|
|
197
353
|
class ListResourceTelemetryForOrganizationInput
|
|
198
354
|
attr_accessor account_identifiers: ::Array[::String]
|
|
199
355
|
attr_accessor resource_identifier_prefix: ::String
|
|
200
|
-
attr_accessor resource_types: ::Array[("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")]
|
|
356
|
+
attr_accessor resource_types: ::Array[("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::WAFv2::WebACL" | "AWS::ElasticLoadBalancingV2::LoadBalancer" | "AWS::Route53Resolver::ResolverEndpoint" | "AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Browser" | "AWS::BedrockAgentCore::CodeInterpreter")]
|
|
201
357
|
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
|
202
358
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
203
359
|
attr_accessor max_results: ::Integer
|
|
@@ -213,7 +369,7 @@ module Aws::ObservabilityAdmin
|
|
|
213
369
|
|
|
214
370
|
class ListResourceTelemetryInput
|
|
215
371
|
attr_accessor resource_identifier_prefix: ::String
|
|
216
|
-
attr_accessor resource_types: ::Array[("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")]
|
|
372
|
+
attr_accessor resource_types: ::Array[("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::WAFv2::WebACL" | "AWS::ElasticLoadBalancingV2::LoadBalancer" | "AWS::Route53Resolver::ResolverEndpoint" | "AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Browser" | "AWS::BedrockAgentCore::CodeInterpreter")]
|
|
217
373
|
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
|
218
374
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
219
375
|
attr_accessor max_results: ::Integer
|
|
@@ -227,6 +383,18 @@ module Aws::ObservabilityAdmin
|
|
|
227
383
|
SENSITIVE: []
|
|
228
384
|
end
|
|
229
385
|
|
|
386
|
+
class ListS3TableIntegrationsInput
|
|
387
|
+
attr_accessor max_results: ::Integer
|
|
388
|
+
attr_accessor next_token: ::String
|
|
389
|
+
SENSITIVE: []
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class ListS3TableIntegrationsOutput
|
|
393
|
+
attr_accessor integration_summaries: ::Array[Types::IntegrationSummary]
|
|
394
|
+
attr_accessor next_token: ::String
|
|
395
|
+
SENSITIVE: []
|
|
396
|
+
end
|
|
397
|
+
|
|
230
398
|
class ListTagsForResourceInput
|
|
231
399
|
attr_accessor resource_arn: ::String
|
|
232
400
|
SENSITIVE: []
|
|
@@ -237,6 +405,18 @@ module Aws::ObservabilityAdmin
|
|
|
237
405
|
SENSITIVE: []
|
|
238
406
|
end
|
|
239
407
|
|
|
408
|
+
class ListTelemetryPipelinesInput
|
|
409
|
+
attr_accessor max_results: ::Integer
|
|
410
|
+
attr_accessor next_token: ::String
|
|
411
|
+
SENSITIVE: []
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
class ListTelemetryPipelinesOutput
|
|
415
|
+
attr_accessor pipeline_summaries: ::Array[Types::TelemetryPipelineSummary]
|
|
416
|
+
attr_accessor next_token: ::String
|
|
417
|
+
SENSITIVE: []
|
|
418
|
+
end
|
|
419
|
+
|
|
240
420
|
class ListTelemetryRulesForOrganizationInput
|
|
241
421
|
attr_accessor rule_name_prefix: ::String
|
|
242
422
|
attr_accessor source_account_ids: ::Array[::String]
|
|
@@ -265,6 +445,17 @@ module Aws::ObservabilityAdmin
|
|
|
265
445
|
SENSITIVE: []
|
|
266
446
|
end
|
|
267
447
|
|
|
448
|
+
class LogDeliveryParameters
|
|
449
|
+
attr_accessor log_types: ::Array[("APPLICATION_LOGS" | "USAGE_LOGS")]
|
|
450
|
+
SENSITIVE: []
|
|
451
|
+
end
|
|
452
|
+
|
|
453
|
+
class LoggingFilter
|
|
454
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
455
|
+
attr_accessor default_behavior: ("KEEP" | "DROP")
|
|
456
|
+
SENSITIVE: []
|
|
457
|
+
end
|
|
458
|
+
|
|
268
459
|
class LogsBackupConfiguration
|
|
269
460
|
attr_accessor region: ::String
|
|
270
461
|
attr_accessor kms_key_arn: ::String
|
|
@@ -278,17 +469,50 @@ module Aws::ObservabilityAdmin
|
|
|
278
469
|
SENSITIVE: []
|
|
279
470
|
end
|
|
280
471
|
|
|
472
|
+
class PipelineOutput
|
|
473
|
+
attr_accessor record: Types::Record
|
|
474
|
+
attr_accessor error: Types::PipelineOutputError
|
|
475
|
+
SENSITIVE: []
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
class PipelineOutputError
|
|
479
|
+
attr_accessor message: ::String
|
|
480
|
+
SENSITIVE: []
|
|
481
|
+
end
|
|
482
|
+
|
|
483
|
+
class Record
|
|
484
|
+
attr_accessor data: ::String
|
|
485
|
+
attr_accessor type: ("STRING" | "JSON")
|
|
486
|
+
SENSITIVE: []
|
|
487
|
+
end
|
|
488
|
+
|
|
281
489
|
class ResourceNotFoundException
|
|
282
490
|
attr_accessor message: ::String
|
|
491
|
+
attr_accessor resource_id: ::String
|
|
492
|
+
attr_accessor resource_type: ::String
|
|
283
493
|
SENSITIVE: []
|
|
284
494
|
end
|
|
285
495
|
|
|
286
496
|
class ServiceQuotaExceededException
|
|
287
497
|
attr_accessor message: ::String
|
|
498
|
+
attr_accessor resource_id: ::String
|
|
499
|
+
attr_accessor resource_type: ::String
|
|
500
|
+
attr_accessor service_code: ::String
|
|
501
|
+
attr_accessor quota_code: ::String
|
|
288
502
|
attr_accessor amzn_error_type: ::String
|
|
289
503
|
SENSITIVE: []
|
|
290
504
|
end
|
|
291
505
|
|
|
506
|
+
class SingleHeader
|
|
507
|
+
attr_accessor name: ::String
|
|
508
|
+
SENSITIVE: []
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
class Source
|
|
512
|
+
attr_accessor type: ::String
|
|
513
|
+
SENSITIVE: []
|
|
514
|
+
end
|
|
515
|
+
|
|
292
516
|
class SourceLogsConfiguration
|
|
293
517
|
attr_accessor log_group_selection_criteria: ::String
|
|
294
518
|
attr_accessor encrypted_log_group_strategy: ("ALLOW" | "SKIP")
|
|
@@ -315,7 +539,7 @@ module Aws::ObservabilityAdmin
|
|
|
315
539
|
class TelemetryConfiguration
|
|
316
540
|
attr_accessor account_identifier: ::String
|
|
317
541
|
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
|
318
|
-
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")
|
|
542
|
+
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::WAFv2::WebACL" | "AWS::ElasticLoadBalancingV2::LoadBalancer" | "AWS::Route53Resolver::ResolverEndpoint" | "AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Browser" | "AWS::BedrockAgentCore::CodeInterpreter")
|
|
319
543
|
attr_accessor resource_identifier: ::String
|
|
320
544
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
321
545
|
attr_accessor last_update_time_stamp: ::Integer
|
|
@@ -327,12 +551,50 @@ module Aws::ObservabilityAdmin
|
|
|
327
551
|
attr_accessor destination_pattern: ::String
|
|
328
552
|
attr_accessor retention_in_days: ::Integer
|
|
329
553
|
attr_accessor vpc_flow_log_parameters: Types::VPCFlowLogParameters
|
|
554
|
+
attr_accessor cloudtrail_parameters: Types::CloudtrailParameters
|
|
555
|
+
attr_accessor elb_load_balancer_logging_parameters: Types::ELBLoadBalancerLoggingParameters
|
|
556
|
+
attr_accessor waf_logging_parameters: Types::WAFLoggingParameters
|
|
557
|
+
attr_accessor log_delivery_parameters: Types::LogDeliveryParameters
|
|
558
|
+
SENSITIVE: []
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
class TelemetryPipeline
|
|
562
|
+
attr_accessor created_time_stamp: ::Integer
|
|
563
|
+
attr_accessor last_update_time_stamp: ::Integer
|
|
564
|
+
attr_accessor arn: ::String
|
|
565
|
+
attr_accessor name: ::String
|
|
566
|
+
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|
|
567
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
568
|
+
attr_accessor status_reason: Types::TelemetryPipelineStatusReason
|
|
569
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
570
|
+
SENSITIVE: []
|
|
571
|
+
end
|
|
572
|
+
|
|
573
|
+
class TelemetryPipelineConfiguration
|
|
574
|
+
attr_accessor body: ::String
|
|
575
|
+
SENSITIVE: []
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
class TelemetryPipelineStatusReason
|
|
579
|
+
attr_accessor description: ::String
|
|
580
|
+
SENSITIVE: []
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
class TelemetryPipelineSummary
|
|
584
|
+
attr_accessor created_time_stamp: ::Integer
|
|
585
|
+
attr_accessor last_update_time_stamp: ::Integer
|
|
586
|
+
attr_accessor arn: ::String
|
|
587
|
+
attr_accessor name: ::String
|
|
588
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
|
589
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
590
|
+
attr_accessor configuration_summary: Types::ConfigurationSummary
|
|
330
591
|
SENSITIVE: []
|
|
331
592
|
end
|
|
332
593
|
|
|
333
594
|
class TelemetryRule
|
|
334
|
-
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")
|
|
595
|
+
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::WAFv2::WebACL" | "AWS::ElasticLoadBalancingV2::LoadBalancer" | "AWS::Route53Resolver::ResolverEndpoint" | "AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Browser" | "AWS::BedrockAgentCore::CodeInterpreter")
|
|
335
596
|
attr_accessor telemetry_type: ("Logs" | "Metrics" | "Traces")
|
|
597
|
+
attr_accessor telemetry_source_types: ::Array[("VPC_FLOW_LOGS" | "ROUTE53_RESOLVER_QUERY_LOGS" | "EKS_AUDIT_LOGS" | "EKS_AUTHENTICATOR_LOGS" | "EKS_CONTROLLER_MANAGER_LOGS" | "EKS_SCHEDULER_LOGS" | "EKS_API_LOGS")]
|
|
336
598
|
attr_accessor destination_configuration: Types::TelemetryDestinationConfiguration
|
|
337
599
|
attr_accessor scope: ::String
|
|
338
600
|
attr_accessor selection_criteria: ::String
|
|
@@ -344,8 +606,20 @@ module Aws::ObservabilityAdmin
|
|
|
344
606
|
attr_accessor rule_arn: ::String
|
|
345
607
|
attr_accessor created_time_stamp: ::Integer
|
|
346
608
|
attr_accessor last_update_time_stamp: ::Integer
|
|
347
|
-
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function")
|
|
609
|
+
attr_accessor resource_type: ("AWS::EC2::Instance" | "AWS::EC2::VPC" | "AWS::Lambda::Function" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::WAFv2::WebACL" | "AWS::ElasticLoadBalancingV2::LoadBalancer" | "AWS::Route53Resolver::ResolverEndpoint" | "AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Browser" | "AWS::BedrockAgentCore::CodeInterpreter")
|
|
348
610
|
attr_accessor telemetry_type: ("Logs" | "Metrics" | "Traces")
|
|
611
|
+
attr_accessor telemetry_source_types: ::Array[("VPC_FLOW_LOGS" | "ROUTE53_RESOLVER_QUERY_LOGS" | "EKS_AUDIT_LOGS" | "EKS_AUTHENTICATOR_LOGS" | "EKS_CONTROLLER_MANAGER_LOGS" | "EKS_SCHEDULER_LOGS" | "EKS_API_LOGS")]
|
|
612
|
+
SENSITIVE: []
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
class TestTelemetryPipelineInput
|
|
616
|
+
attr_accessor records: ::Array[Types::Record]
|
|
617
|
+
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|
|
618
|
+
SENSITIVE: []
|
|
619
|
+
end
|
|
620
|
+
|
|
621
|
+
class TestTelemetryPipelineOutput
|
|
622
|
+
attr_accessor results: ::Array[Types::PipelineOutput]
|
|
349
623
|
SENSITIVE: []
|
|
350
624
|
end
|
|
351
625
|
|
|
@@ -371,6 +645,15 @@ module Aws::ObservabilityAdmin
|
|
|
371
645
|
SENSITIVE: []
|
|
372
646
|
end
|
|
373
647
|
|
|
648
|
+
class UpdateTelemetryPipelineInput
|
|
649
|
+
attr_accessor pipeline_identifier: ::String
|
|
650
|
+
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|
|
651
|
+
SENSITIVE: []
|
|
652
|
+
end
|
|
653
|
+
|
|
654
|
+
class UpdateTelemetryPipelineOutput < Aws::EmptyStructure
|
|
655
|
+
end
|
|
656
|
+
|
|
374
657
|
class UpdateTelemetryRuleForOrganizationInput
|
|
375
658
|
attr_accessor rule_identifier: ::String
|
|
376
659
|
attr_accessor rule: Types::TelemetryRule
|
|
@@ -400,8 +683,33 @@ module Aws::ObservabilityAdmin
|
|
|
400
683
|
SENSITIVE: []
|
|
401
684
|
end
|
|
402
685
|
|
|
686
|
+
class ValidateTelemetryPipelineConfigurationInput
|
|
687
|
+
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|
|
688
|
+
SENSITIVE: []
|
|
689
|
+
end
|
|
690
|
+
|
|
691
|
+
class ValidateTelemetryPipelineConfigurationOutput
|
|
692
|
+
attr_accessor errors: ::Array[Types::ValidationError]
|
|
693
|
+
SENSITIVE: []
|
|
694
|
+
end
|
|
695
|
+
|
|
696
|
+
class ValidationError
|
|
697
|
+
attr_accessor message: ::String
|
|
698
|
+
attr_accessor reason: ::String
|
|
699
|
+
attr_accessor field_map: ::Hash[::String, ::String]
|
|
700
|
+
SENSITIVE: []
|
|
701
|
+
end
|
|
702
|
+
|
|
403
703
|
class ValidationException
|
|
404
704
|
attr_accessor message: ::String
|
|
705
|
+
attr_accessor errors: ::Array[Types::ValidationError]
|
|
706
|
+
SENSITIVE: []
|
|
707
|
+
end
|
|
708
|
+
|
|
709
|
+
class WAFLoggingParameters
|
|
710
|
+
attr_accessor redacted_fields: ::Array[Types::FieldToMatch]
|
|
711
|
+
attr_accessor logging_filter: Types::LoggingFilter
|
|
712
|
+
attr_accessor log_type: ("WAF_LOGS")
|
|
405
713
|
SENSITIVE: []
|
|
406
714
|
end
|
|
407
715
|
end
|