aws-sdk-observabilityadmin 1.31.0 → 1.33.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 +42 -19
- data/lib/aws-sdk-observabilityadmin/client_api.rb +17 -0
- data/lib/aws-sdk-observabilityadmin/types.rb +68 -3
- data/lib/aws-sdk-observabilityadmin.rb +1 -1
- data/sig/client.rbs +4 -3
- data/sig/params.rbs +11 -3
- data/sig/types.rbs +24 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c47da1fb290640710654e6a07ca7ca00459032bae7eab245c1bff560003540f
|
|
4
|
+
data.tar.gz: ba20c34d2fa67422da26c283b9a7e99194f648346951e23164cb451b51f4e41d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcf814b104af6918ee451826c1c67d8341c22ddb971835692800e69cd690beb8cdf288e420e4eaa731134d8feef6cca43c19b91dbe99649dde54184599daf35a
|
|
7
|
+
data.tar.gz: 422d38e2b3986a351e69758a2e8f59b72c7dc812ed85a47f0ab69a17937dd93869d0d1eb0b8d8a54eae94f0143b40737d78fe34a2bdf0dec7593a9755450bb18
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.33.0 (2026-06-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Organization and account level telemetry rule via Observability Admin and CloudWatch pipelines for metrics
|
|
8
|
+
|
|
9
|
+
1.32.0 (2026-06-08)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - CloudWatch Observability Admin extends CentralizationRuleForOrganization APIs to support metrics, enabling centralization of metrics across accounts and Regions alongside logs.
|
|
13
|
+
|
|
4
14
|
1.31.0 (2026-05-26)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.33.0
|
|
@@ -509,6 +509,9 @@ module Aws::ObservabilityAdmin
|
|
|
509
509
|
# data_source_selection_criteria: "DataSourceFilterString",
|
|
510
510
|
# encrypted_log_group_strategy: "ALLOW", # required, accepts ALLOW, SKIP
|
|
511
511
|
# },
|
|
512
|
+
# source_metrics_configuration: {
|
|
513
|
+
# metrics_selection_criteria: "MetricsFilterString",
|
|
514
|
+
# },
|
|
512
515
|
# },
|
|
513
516
|
# destination: { # required
|
|
514
517
|
# region: "Region", # required
|
|
@@ -527,6 +530,11 @@ module Aws::ObservabilityAdmin
|
|
|
527
530
|
# log_group_name_pattern: "LogGroupNamePattern", # required
|
|
528
531
|
# },
|
|
529
532
|
# },
|
|
533
|
+
# destination_metrics_configuration: {
|
|
534
|
+
# backup_configuration: {
|
|
535
|
+
# region: "Region", # required
|
|
536
|
+
# },
|
|
537
|
+
# },
|
|
530
538
|
# },
|
|
531
539
|
# },
|
|
532
540
|
# tags: {
|
|
@@ -673,7 +681,7 @@ module Aws::ObservabilityAdmin
|
|
|
673
681
|
# resp = client.create_telemetry_rule({
|
|
674
682
|
# rule_name: "RuleName", # required
|
|
675
683
|
# rule: { # required
|
|
676
|
-
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster
|
|
684
|
+
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster, AWS::S3::Bucket
|
|
677
685
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
678
686
|
# telemetry_source_types: ["VPC_FLOW_LOGS"], # accepts VPC_FLOW_LOGS, ROUTE53_RESOLVER_QUERY_LOGS, EKS_AUDIT_LOGS, EKS_AUTHENTICATOR_LOGS, EKS_CONTROLLER_MANAGER_LOGS, EKS_SCHEDULER_LOGS, EKS_API_LOGS
|
|
679
687
|
# destination_configuration: {
|
|
@@ -740,7 +748,7 @@ module Aws::ObservabilityAdmin
|
|
|
740
748
|
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
741
749
|
# },
|
|
742
750
|
# log_delivery_parameters: {
|
|
743
|
-
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS
|
|
751
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS, S3_SERVER_ACCESS_LOGS
|
|
744
752
|
# },
|
|
745
753
|
# msk_monitoring_parameters: {
|
|
746
754
|
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
|
@@ -796,7 +804,7 @@ module Aws::ObservabilityAdmin
|
|
|
796
804
|
# resp = client.create_telemetry_rule_for_organization({
|
|
797
805
|
# rule_name: "RuleName", # required
|
|
798
806
|
# rule: { # required
|
|
799
|
-
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster
|
|
807
|
+
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster, AWS::S3::Bucket
|
|
800
808
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
801
809
|
# telemetry_source_types: ["VPC_FLOW_LOGS"], # accepts VPC_FLOW_LOGS, ROUTE53_RESOLVER_QUERY_LOGS, EKS_AUDIT_LOGS, EKS_AUTHENTICATOR_LOGS, EKS_CONTROLLER_MANAGER_LOGS, EKS_SCHEDULER_LOGS, EKS_API_LOGS
|
|
802
810
|
# destination_configuration: {
|
|
@@ -863,7 +871,7 @@ module Aws::ObservabilityAdmin
|
|
|
863
871
|
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
864
872
|
# },
|
|
865
873
|
# log_delivery_parameters: {
|
|
866
|
-
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS
|
|
874
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS, S3_SERVER_ACCESS_LOGS
|
|
867
875
|
# },
|
|
868
876
|
# msk_monitoring_parameters: {
|
|
869
877
|
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
|
@@ -1057,6 +1065,7 @@ module Aws::ObservabilityAdmin
|
|
|
1057
1065
|
# resp.centralization_rule.source.source_logs_configuration.log_group_selection_criteria #=> String
|
|
1058
1066
|
# resp.centralization_rule.source.source_logs_configuration.data_source_selection_criteria #=> String
|
|
1059
1067
|
# resp.centralization_rule.source.source_logs_configuration.encrypted_log_group_strategy #=> String, one of "ALLOW", "SKIP"
|
|
1068
|
+
# resp.centralization_rule.source.source_metrics_configuration.metrics_selection_criteria #=> String
|
|
1060
1069
|
# resp.centralization_rule.destination.region #=> String
|
|
1061
1070
|
# resp.centralization_rule.destination.account #=> String
|
|
1062
1071
|
# resp.centralization_rule.destination.destination_logs_configuration.logs_encryption_configuration.encryption_strategy #=> String, one of "CUSTOMER_MANAGED", "AWS_OWNED"
|
|
@@ -1065,6 +1074,7 @@ module Aws::ObservabilityAdmin
|
|
|
1065
1074
|
# resp.centralization_rule.destination.destination_logs_configuration.backup_configuration.region #=> String
|
|
1066
1075
|
# resp.centralization_rule.destination.destination_logs_configuration.backup_configuration.kms_key_arn #=> String
|
|
1067
1076
|
# resp.centralization_rule.destination.destination_logs_configuration.log_group_name_configuration.log_group_name_pattern #=> String
|
|
1077
|
+
# resp.centralization_rule.destination.destination_metrics_configuration.backup_configuration.region #=> String
|
|
1068
1078
|
#
|
|
1069
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetCentralizationRuleForOrganization AWS API Documentation
|
|
1070
1080
|
#
|
|
@@ -1267,7 +1277,7 @@ module Aws::ObservabilityAdmin
|
|
|
1267
1277
|
# resp.rule_arn #=> String
|
|
1268
1278
|
# resp.created_time_stamp #=> Integer
|
|
1269
1279
|
# resp.last_update_time_stamp #=> Integer
|
|
1270
|
-
# resp.telemetry_rule.resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster"
|
|
1280
|
+
# resp.telemetry_rule.resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster", "AWS::S3::Bucket"
|
|
1271
1281
|
# resp.telemetry_rule.telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1272
1282
|
# resp.telemetry_rule.telemetry_source_types #=> Array
|
|
1273
1283
|
# resp.telemetry_rule.telemetry_source_types[0] #=> String, one of "VPC_FLOW_LOGS", "ROUTE53_RESOLVER_QUERY_LOGS", "EKS_AUDIT_LOGS", "EKS_AUTHENTICATOR_LOGS", "EKS_CONTROLLER_MANAGER_LOGS", "EKS_SCHEDULER_LOGS", "EKS_API_LOGS"
|
|
@@ -1309,7 +1319,7 @@ module Aws::ObservabilityAdmin
|
|
|
1309
1319
|
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
|
|
1310
1320
|
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.log_type #=> String, one of "WAF_LOGS"
|
|
1311
1321
|
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types #=> Array
|
|
1312
|
-
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types[0] #=> String, one of "APPLICATION_LOGS", "USAGE_LOGS", "SECURITY_FINDING_LOGS", "ACCESS_LOGS", "CONNECTION_LOGS"
|
|
1322
|
+
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types[0] #=> String, one of "APPLICATION_LOGS", "USAGE_LOGS", "SECURITY_FINDING_LOGS", "ACCESS_LOGS", "CONNECTION_LOGS", "S3_SERVER_ACCESS_LOGS"
|
|
1313
1323
|
# resp.telemetry_rule.destination_configuration.msk_monitoring_parameters.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
|
|
1314
1324
|
# resp.telemetry_rule.scope #=> String
|
|
1315
1325
|
# resp.telemetry_rule.selection_criteria #=> String
|
|
@@ -1365,7 +1375,7 @@ module Aws::ObservabilityAdmin
|
|
|
1365
1375
|
# resp.rule_arn #=> String
|
|
1366
1376
|
# resp.created_time_stamp #=> Integer
|
|
1367
1377
|
# resp.last_update_time_stamp #=> Integer
|
|
1368
|
-
# resp.telemetry_rule.resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster"
|
|
1378
|
+
# resp.telemetry_rule.resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster", "AWS::S3::Bucket"
|
|
1369
1379
|
# resp.telemetry_rule.telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1370
1380
|
# resp.telemetry_rule.telemetry_source_types #=> Array
|
|
1371
1381
|
# resp.telemetry_rule.telemetry_source_types[0] #=> String, one of "VPC_FLOW_LOGS", "ROUTE53_RESOLVER_QUERY_LOGS", "EKS_AUDIT_LOGS", "EKS_AUTHENTICATOR_LOGS", "EKS_CONTROLLER_MANAGER_LOGS", "EKS_SCHEDULER_LOGS", "EKS_API_LOGS"
|
|
@@ -1407,7 +1417,7 @@ module Aws::ObservabilityAdmin
|
|
|
1407
1417
|
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
|
|
1408
1418
|
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.log_type #=> String, one of "WAF_LOGS"
|
|
1409
1419
|
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types #=> Array
|
|
1410
|
-
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types[0] #=> String, one of "APPLICATION_LOGS", "USAGE_LOGS", "SECURITY_FINDING_LOGS", "ACCESS_LOGS", "CONNECTION_LOGS"
|
|
1420
|
+
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types[0] #=> String, one of "APPLICATION_LOGS", "USAGE_LOGS", "SECURITY_FINDING_LOGS", "ACCESS_LOGS", "CONNECTION_LOGS", "S3_SERVER_ACCESS_LOGS"
|
|
1411
1421
|
# resp.telemetry_rule.destination_configuration.msk_monitoring_parameters.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
|
|
1412
1422
|
# resp.telemetry_rule.scope #=> String
|
|
1413
1423
|
# resp.telemetry_rule.selection_criteria #=> String
|
|
@@ -1541,7 +1551,7 @@ module Aws::ObservabilityAdmin
|
|
|
1541
1551
|
#
|
|
1542
1552
|
# resp = client.list_resource_telemetry({
|
|
1543
1553
|
# resource_identifier_prefix: "ResourceIdentifierPrefix",
|
|
1544
|
-
# resource_types: ["AWS::EC2::Instance"], # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster
|
|
1554
|
+
# resource_types: ["AWS::EC2::Instance"], # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster, AWS::S3::Bucket
|
|
1545
1555
|
# telemetry_configuration_state: {
|
|
1546
1556
|
# "Logs" => "Enabled", # accepts Enabled, Disabled, NotApplicable
|
|
1547
1557
|
# },
|
|
@@ -1558,7 +1568,7 @@ module Aws::ObservabilityAdmin
|
|
|
1558
1568
|
# resp.telemetry_configurations[0].account_identifier #=> String
|
|
1559
1569
|
# resp.telemetry_configurations[0].telemetry_configuration_state #=> Hash
|
|
1560
1570
|
# resp.telemetry_configurations[0].telemetry_configuration_state["TelemetryType"] #=> String, one of "Enabled", "Disabled", "NotApplicable"
|
|
1561
|
-
# resp.telemetry_configurations[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster"
|
|
1571
|
+
# resp.telemetry_configurations[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster", "AWS::S3::Bucket"
|
|
1562
1572
|
# resp.telemetry_configurations[0].resource_identifier #=> String
|
|
1563
1573
|
# resp.telemetry_configurations[0].resource_tags #=> Hash
|
|
1564
1574
|
# resp.telemetry_configurations[0].resource_tags["String"] #=> String
|
|
@@ -1625,7 +1635,7 @@ module Aws::ObservabilityAdmin
|
|
|
1625
1635
|
# resp = client.list_resource_telemetry_for_organization({
|
|
1626
1636
|
# account_identifiers: ["AccountIdentifier"],
|
|
1627
1637
|
# resource_identifier_prefix: "ResourceIdentifierPrefix",
|
|
1628
|
-
# resource_types: ["AWS::EC2::Instance"], # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster
|
|
1638
|
+
# resource_types: ["AWS::EC2::Instance"], # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster, AWS::S3::Bucket
|
|
1629
1639
|
# telemetry_configuration_state: {
|
|
1630
1640
|
# "Logs" => "Enabled", # accepts Enabled, Disabled, NotApplicable
|
|
1631
1641
|
# },
|
|
@@ -1642,7 +1652,7 @@ module Aws::ObservabilityAdmin
|
|
|
1642
1652
|
# resp.telemetry_configurations[0].account_identifier #=> String
|
|
1643
1653
|
# resp.telemetry_configurations[0].telemetry_configuration_state #=> Hash
|
|
1644
1654
|
# resp.telemetry_configurations[0].telemetry_configuration_state["TelemetryType"] #=> String, one of "Enabled", "Disabled", "NotApplicable"
|
|
1645
|
-
# resp.telemetry_configurations[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster"
|
|
1655
|
+
# resp.telemetry_configurations[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster", "AWS::S3::Bucket"
|
|
1646
1656
|
# resp.telemetry_configurations[0].resource_identifier #=> String
|
|
1647
1657
|
# resp.telemetry_configurations[0].resource_tags #=> Hash
|
|
1648
1658
|
# resp.telemetry_configurations[0].resource_tags["String"] #=> String
|
|
@@ -1825,7 +1835,7 @@ module Aws::ObservabilityAdmin
|
|
|
1825
1835
|
# resp.telemetry_rule_summaries[0].rule_arn #=> String
|
|
1826
1836
|
# resp.telemetry_rule_summaries[0].created_time_stamp #=> Integer
|
|
1827
1837
|
# resp.telemetry_rule_summaries[0].last_update_time_stamp #=> Integer
|
|
1828
|
-
# resp.telemetry_rule_summaries[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster"
|
|
1838
|
+
# resp.telemetry_rule_summaries[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster", "AWS::S3::Bucket"
|
|
1829
1839
|
# resp.telemetry_rule_summaries[0].telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1830
1840
|
# resp.telemetry_rule_summaries[0].telemetry_source_types #=> Array
|
|
1831
1841
|
# resp.telemetry_rule_summaries[0].telemetry_source_types[0] #=> String, one of "VPC_FLOW_LOGS", "ROUTE53_RESOLVER_QUERY_LOGS", "EKS_AUDIT_LOGS", "EKS_AUTHENTICATOR_LOGS", "EKS_CONTROLLER_MANAGER_LOGS", "EKS_SCHEDULER_LOGS", "EKS_API_LOGS"
|
|
@@ -1888,7 +1898,7 @@ module Aws::ObservabilityAdmin
|
|
|
1888
1898
|
# resp.telemetry_rule_summaries[0].rule_arn #=> String
|
|
1889
1899
|
# resp.telemetry_rule_summaries[0].created_time_stamp #=> Integer
|
|
1890
1900
|
# resp.telemetry_rule_summaries[0].last_update_time_stamp #=> Integer
|
|
1891
|
-
# resp.telemetry_rule_summaries[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster"
|
|
1901
|
+
# resp.telemetry_rule_summaries[0].resource_type #=> String, one of "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", "AWS::BedrockAgentCore::Gateway", "AWS::BedrockAgentCore::Memory", "AWS::BedrockAgentCore::WorkloadIdentity", "AWS::SecurityHub::Hub", "AWS::CloudFront::Distribution", "AWS::SecurityHub::HubV2", "AWS::CloudWatch::OTelEnrichment", "AWS::MSK::Cluster", "AWS::S3::Bucket"
|
|
1892
1902
|
# resp.telemetry_rule_summaries[0].telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1893
1903
|
# resp.telemetry_rule_summaries[0].telemetry_source_types #=> Array
|
|
1894
1904
|
# resp.telemetry_rule_summaries[0].telemetry_source_types[0] #=> String, one of "VPC_FLOW_LOGS", "ROUTE53_RESOLVER_QUERY_LOGS", "EKS_AUDIT_LOGS", "EKS_AUTHENTICATOR_LOGS", "EKS_CONTROLLER_MANAGER_LOGS", "EKS_SCHEDULER_LOGS", "EKS_API_LOGS"
|
|
@@ -2093,6 +2103,10 @@ module Aws::ObservabilityAdmin
|
|
|
2093
2103
|
# @option params [required, Types::TelemetryPipelineConfiguration] :configuration
|
|
2094
2104
|
# The pipeline configuration to test with the provided sample records.
|
|
2095
2105
|
#
|
|
2106
|
+
# @option params [String] :signal_type
|
|
2107
|
+
# The type of telemetry signal to test. If not specified, defaults to
|
|
2108
|
+
# log processing.
|
|
2109
|
+
#
|
|
2096
2110
|
# @return [Types::TestTelemetryPipelineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2097
2111
|
#
|
|
2098
2112
|
# * {Types::TestTelemetryPipelineOutput#results #results} => Array<Types::PipelineOutput>
|
|
@@ -2109,6 +2123,7 @@ module Aws::ObservabilityAdmin
|
|
|
2109
2123
|
# configuration: { # required
|
|
2110
2124
|
# body: "TelemetryPipelineConfigurationBody", # required
|
|
2111
2125
|
# },
|
|
2126
|
+
# signal_type: "LOG", # accepts LOG, METRIC
|
|
2112
2127
|
# })
|
|
2113
2128
|
#
|
|
2114
2129
|
# @example Response structure
|
|
@@ -2186,6 +2201,9 @@ module Aws::ObservabilityAdmin
|
|
|
2186
2201
|
# data_source_selection_criteria: "DataSourceFilterString",
|
|
2187
2202
|
# encrypted_log_group_strategy: "ALLOW", # required, accepts ALLOW, SKIP
|
|
2188
2203
|
# },
|
|
2204
|
+
# source_metrics_configuration: {
|
|
2205
|
+
# metrics_selection_criteria: "MetricsFilterString",
|
|
2206
|
+
# },
|
|
2189
2207
|
# },
|
|
2190
2208
|
# destination: { # required
|
|
2191
2209
|
# region: "Region", # required
|
|
@@ -2204,6 +2222,11 @@ module Aws::ObservabilityAdmin
|
|
|
2204
2222
|
# log_group_name_pattern: "LogGroupNamePattern", # required
|
|
2205
2223
|
# },
|
|
2206
2224
|
# },
|
|
2225
|
+
# destination_metrics_configuration: {
|
|
2226
|
+
# backup_configuration: {
|
|
2227
|
+
# region: "Region", # required
|
|
2228
|
+
# },
|
|
2229
|
+
# },
|
|
2207
2230
|
# },
|
|
2208
2231
|
# },
|
|
2209
2232
|
# })
|
|
@@ -2339,7 +2362,7 @@ module Aws::ObservabilityAdmin
|
|
|
2339
2362
|
# resp = client.update_telemetry_rule({
|
|
2340
2363
|
# rule_identifier: "RuleIdentifier", # required
|
|
2341
2364
|
# rule: { # required
|
|
2342
|
-
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster
|
|
2365
|
+
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster, AWS::S3::Bucket
|
|
2343
2366
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
2344
2367
|
# telemetry_source_types: ["VPC_FLOW_LOGS"], # accepts VPC_FLOW_LOGS, ROUTE53_RESOLVER_QUERY_LOGS, EKS_AUDIT_LOGS, EKS_AUTHENTICATOR_LOGS, EKS_CONTROLLER_MANAGER_LOGS, EKS_SCHEDULER_LOGS, EKS_API_LOGS
|
|
2345
2368
|
# destination_configuration: {
|
|
@@ -2406,7 +2429,7 @@ module Aws::ObservabilityAdmin
|
|
|
2406
2429
|
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
2407
2430
|
# },
|
|
2408
2431
|
# log_delivery_parameters: {
|
|
2409
|
-
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS
|
|
2432
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS, S3_SERVER_ACCESS_LOGS
|
|
2410
2433
|
# },
|
|
2411
2434
|
# msk_monitoring_parameters: {
|
|
2412
2435
|
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
|
@@ -2456,7 +2479,7 @@ module Aws::ObservabilityAdmin
|
|
|
2456
2479
|
# resp = client.update_telemetry_rule_for_organization({
|
|
2457
2480
|
# rule_identifier: "RuleIdentifier", # required
|
|
2458
2481
|
# rule: { # required
|
|
2459
|
-
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster
|
|
2482
|
+
# resource_type: "AWS::EC2::Instance", # accepts 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, AWS::BedrockAgentCore::Gateway, AWS::BedrockAgentCore::Memory, AWS::BedrockAgentCore::WorkloadIdentity, AWS::SecurityHub::Hub, AWS::CloudFront::Distribution, AWS::SecurityHub::HubV2, AWS::CloudWatch::OTelEnrichment, AWS::MSK::Cluster, AWS::S3::Bucket
|
|
2460
2483
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
2461
2484
|
# telemetry_source_types: ["VPC_FLOW_LOGS"], # accepts VPC_FLOW_LOGS, ROUTE53_RESOLVER_QUERY_LOGS, EKS_AUDIT_LOGS, EKS_AUTHENTICATOR_LOGS, EKS_CONTROLLER_MANAGER_LOGS, EKS_SCHEDULER_LOGS, EKS_API_LOGS
|
|
2462
2485
|
# destination_configuration: {
|
|
@@ -2523,7 +2546,7 @@ module Aws::ObservabilityAdmin
|
|
|
2523
2546
|
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
2524
2547
|
# },
|
|
2525
2548
|
# log_delivery_parameters: {
|
|
2526
|
-
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS
|
|
2549
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS, SECURITY_FINDING_LOGS, ACCESS_LOGS, CONNECTION_LOGS, S3_SERVER_ACCESS_LOGS
|
|
2527
2550
|
# },
|
|
2528
2551
|
# msk_monitoring_parameters: {
|
|
2529
2552
|
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
|
@@ -2604,7 +2627,7 @@ module Aws::ObservabilityAdmin
|
|
|
2604
2627
|
tracer: tracer
|
|
2605
2628
|
)
|
|
2606
2629
|
context[:gem_name] = 'aws-sdk-observabilityadmin'
|
|
2607
|
-
context[:gem_version] = '1.
|
|
2630
|
+
context[:gem_version] = '1.33.0'
|
|
2608
2631
|
Seahorse::Client::Request.new(handlers, context)
|
|
2609
2632
|
end
|
|
2610
2633
|
|
|
@@ -56,6 +56,7 @@ module Aws::ObservabilityAdmin
|
|
|
56
56
|
DeleteTelemetryRuleForOrganizationInput = Shapes::StructureShape.new(name: 'DeleteTelemetryRuleForOrganizationInput')
|
|
57
57
|
DeleteTelemetryRuleInput = Shapes::StructureShape.new(name: 'DeleteTelemetryRuleInput')
|
|
58
58
|
DestinationLogsConfiguration = Shapes::StructureShape.new(name: 'DestinationLogsConfiguration')
|
|
59
|
+
DestinationMetricsConfiguration = Shapes::StructureShape.new(name: 'DestinationMetricsConfiguration')
|
|
59
60
|
DestinationType = Shapes::StringShape.new(name: 'DestinationType')
|
|
60
61
|
ELBLoadBalancerLoggingParameters = Shapes::StructureShape.new(name: 'ELBLoadBalancerLoggingParameters')
|
|
61
62
|
EncryptedLogGroupStrategy = Shapes::StringShape.new(name: 'EncryptedLogGroupStrategy')
|
|
@@ -126,6 +127,8 @@ module Aws::ObservabilityAdmin
|
|
|
126
127
|
LogsEncryptionConfiguration = Shapes::StructureShape.new(name: 'LogsEncryptionConfiguration')
|
|
127
128
|
LogsFilterString = Shapes::StringShape.new(name: 'LogsFilterString')
|
|
128
129
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
130
|
+
MetricsBackupConfiguration = Shapes::StructureShape.new(name: 'MetricsBackupConfiguration')
|
|
131
|
+
MetricsFilterString = Shapes::StringShape.new(name: 'MetricsFilterString')
|
|
129
132
|
MskEnhancedMonitoringLevel = Shapes::StringShape.new(name: 'MskEnhancedMonitoringLevel')
|
|
130
133
|
MskMonitoringParameters = Shapes::StructureShape.new(name: 'MskMonitoringParameters')
|
|
131
134
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
@@ -156,12 +159,14 @@ module Aws::ObservabilityAdmin
|
|
|
156
159
|
RuleName = Shapes::StringShape.new(name: 'RuleName')
|
|
157
160
|
SSEAlgorithm = Shapes::StringShape.new(name: 'SSEAlgorithm')
|
|
158
161
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
162
|
+
SignalType = Shapes::StringShape.new(name: 'SignalType')
|
|
159
163
|
SingleHeader = Shapes::StructureShape.new(name: 'SingleHeader')
|
|
160
164
|
SingleHeaderNameString = Shapes::StringShape.new(name: 'SingleHeaderNameString')
|
|
161
165
|
Sinks = Shapes::ListShape.new(name: 'Sinks')
|
|
162
166
|
Source = Shapes::StructureShape.new(name: 'Source')
|
|
163
167
|
SourceFilterString = Shapes::StringShape.new(name: 'SourceFilterString')
|
|
164
168
|
SourceLogsConfiguration = Shapes::StructureShape.new(name: 'SourceLogsConfiguration')
|
|
169
|
+
SourceMetricsConfiguration = Shapes::StructureShape.new(name: 'SourceMetricsConfiguration')
|
|
165
170
|
Sources = Shapes::ListShape.new(name: 'Sources')
|
|
166
171
|
StartTelemetryEnrichmentOutput = Shapes::StructureShape.new(name: 'StartTelemetryEnrichmentOutput')
|
|
167
172
|
StartTelemetryEvaluationForOrganizationInput = Shapes::StructureShape.new(name: 'StartTelemetryEvaluationForOrganizationInput')
|
|
@@ -249,11 +254,13 @@ module Aws::ObservabilityAdmin
|
|
|
249
254
|
CentralizationRuleDestination.add_member(:region, Shapes::ShapeRef.new(shape: Region, required: true, location_name: "Region"))
|
|
250
255
|
CentralizationRuleDestination.add_member(:account, Shapes::ShapeRef.new(shape: AccountIdentifier, location_name: "Account"))
|
|
251
256
|
CentralizationRuleDestination.add_member(:destination_logs_configuration, Shapes::ShapeRef.new(shape: DestinationLogsConfiguration, location_name: "DestinationLogsConfiguration"))
|
|
257
|
+
CentralizationRuleDestination.add_member(:destination_metrics_configuration, Shapes::ShapeRef.new(shape: DestinationMetricsConfiguration, location_name: "DestinationMetricsConfiguration"))
|
|
252
258
|
CentralizationRuleDestination.struct_class = Types::CentralizationRuleDestination
|
|
253
259
|
|
|
254
260
|
CentralizationRuleSource.add_member(:regions, Shapes::ShapeRef.new(shape: Regions, required: true, location_name: "Regions"))
|
|
255
261
|
CentralizationRuleSource.add_member(:scope, Shapes::ShapeRef.new(shape: SourceFilterString, location_name: "Scope"))
|
|
256
262
|
CentralizationRuleSource.add_member(:source_logs_configuration, Shapes::ShapeRef.new(shape: SourceLogsConfiguration, location_name: "SourceLogsConfiguration"))
|
|
263
|
+
CentralizationRuleSource.add_member(:source_metrics_configuration, Shapes::ShapeRef.new(shape: SourceMetricsConfiguration, location_name: "SourceMetricsConfiguration"))
|
|
257
264
|
CentralizationRuleSource.struct_class = Types::CentralizationRuleSource
|
|
258
265
|
|
|
259
266
|
CentralizationRuleSummaries.member = Shapes::ShapeRef.new(shape: CentralizationRuleSummary)
|
|
@@ -359,6 +366,9 @@ module Aws::ObservabilityAdmin
|
|
|
359
366
|
DestinationLogsConfiguration.add_member(:log_group_name_configuration, Shapes::ShapeRef.new(shape: LogGroupNameConfiguration, location_name: "LogGroupNameConfiguration"))
|
|
360
367
|
DestinationLogsConfiguration.struct_class = Types::DestinationLogsConfiguration
|
|
361
368
|
|
|
369
|
+
DestinationMetricsConfiguration.add_member(:backup_configuration, Shapes::ShapeRef.new(shape: MetricsBackupConfiguration, location_name: "BackupConfiguration"))
|
|
370
|
+
DestinationMetricsConfiguration.struct_class = Types::DestinationMetricsConfiguration
|
|
371
|
+
|
|
362
372
|
ELBLoadBalancerLoggingParameters.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, location_name: "OutputFormat"))
|
|
363
373
|
ELBLoadBalancerLoggingParameters.add_member(:field_delimiter, Shapes::ShapeRef.new(shape: String, location_name: "FieldDelimiter"))
|
|
364
374
|
ELBLoadBalancerLoggingParameters.struct_class = Types::ELBLoadBalancerLoggingParameters
|
|
@@ -573,6 +583,9 @@ module Aws::ObservabilityAdmin
|
|
|
573
583
|
LogsEncryptionConfiguration.add_member(:encryption_conflict_resolution_strategy, Shapes::ShapeRef.new(shape: EncryptionConflictResolutionStrategy, location_name: "EncryptionConflictResolutionStrategy"))
|
|
574
584
|
LogsEncryptionConfiguration.struct_class = Types::LogsEncryptionConfiguration
|
|
575
585
|
|
|
586
|
+
MetricsBackupConfiguration.add_member(:region, Shapes::ShapeRef.new(shape: Region, required: true, location_name: "Region"))
|
|
587
|
+
MetricsBackupConfiguration.struct_class = Types::MetricsBackupConfiguration
|
|
588
|
+
|
|
576
589
|
MskMonitoringParameters.add_member(:enhanced_monitoring, Shapes::ShapeRef.new(shape: MskEnhancedMonitoringLevel, location_name: "EnhancedMonitoring"))
|
|
577
590
|
MskMonitoringParameters.struct_class = Types::MskMonitoringParameters
|
|
578
591
|
|
|
@@ -635,6 +648,9 @@ module Aws::ObservabilityAdmin
|
|
|
635
648
|
SourceLogsConfiguration.add_member(:encrypted_log_group_strategy, Shapes::ShapeRef.new(shape: EncryptedLogGroupStrategy, required: true, location_name: "EncryptedLogGroupStrategy"))
|
|
636
649
|
SourceLogsConfiguration.struct_class = Types::SourceLogsConfiguration
|
|
637
650
|
|
|
651
|
+
SourceMetricsConfiguration.add_member(:metrics_selection_criteria, Shapes::ShapeRef.new(shape: MetricsFilterString, location_name: "MetricsSelectionCriteria"))
|
|
652
|
+
SourceMetricsConfiguration.struct_class = Types::SourceMetricsConfiguration
|
|
653
|
+
|
|
638
654
|
Sources.member = Shapes::ShapeRef.new(shape: Source)
|
|
639
655
|
|
|
640
656
|
StartTelemetryEnrichmentOutput.add_member(:status, Shapes::ShapeRef.new(shape: TelemetryEnrichmentStatus, location_name: "Status"))
|
|
@@ -744,6 +760,7 @@ module Aws::ObservabilityAdmin
|
|
|
744
760
|
|
|
745
761
|
TestTelemetryPipelineInput.add_member(:records, Shapes::ShapeRef.new(shape: Records, required: true, location_name: "Records"))
|
|
746
762
|
TestTelemetryPipelineInput.add_member(:configuration, Shapes::ShapeRef.new(shape: TelemetryPipelineConfiguration, required: true, location_name: "Configuration"))
|
|
763
|
+
TestTelemetryPipelineInput.add_member(:signal_type, Shapes::ShapeRef.new(shape: SignalType, location_name: "SignalType"))
|
|
747
764
|
TestTelemetryPipelineInput.struct_class = Types::TestTelemetryPipelineInput
|
|
748
765
|
|
|
749
766
|
TestTelemetryPipelineOutput.add_member(:results, Shapes::ShapeRef.new(shape: PipelineOutputs, location_name: "Results"))
|
|
@@ -159,12 +159,18 @@ module Aws::ObservabilityAdmin
|
|
|
159
159
|
# groups.
|
|
160
160
|
# @return [Types::DestinationLogsConfiguration]
|
|
161
161
|
#
|
|
162
|
+
# @!attribute [rw] destination_metrics_configuration
|
|
163
|
+
# Metric specific configuration for centralization destination
|
|
164
|
+
# metrics.
|
|
165
|
+
# @return [Types::DestinationMetricsConfiguration]
|
|
166
|
+
#
|
|
162
167
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CentralizationRuleDestination AWS API Documentation
|
|
163
168
|
#
|
|
164
169
|
class CentralizationRuleDestination < Struct.new(
|
|
165
170
|
:region,
|
|
166
171
|
:account,
|
|
167
|
-
:destination_logs_configuration
|
|
172
|
+
:destination_logs_configuration,
|
|
173
|
+
:destination_metrics_configuration)
|
|
168
174
|
SENSITIVE = []
|
|
169
175
|
include Aws::Structure
|
|
170
176
|
end
|
|
@@ -187,12 +193,17 @@ module Aws::ObservabilityAdmin
|
|
|
187
193
|
# Log specific configuration for centralization source log groups.
|
|
188
194
|
# @return [Types::SourceLogsConfiguration]
|
|
189
195
|
#
|
|
196
|
+
# @!attribute [rw] source_metrics_configuration
|
|
197
|
+
# Metric specific configuration for centralization source metrics.
|
|
198
|
+
# @return [Types::SourceMetricsConfiguration]
|
|
199
|
+
#
|
|
190
200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CentralizationRuleSource AWS API Documentation
|
|
191
201
|
#
|
|
192
202
|
class CentralizationRuleSource < Struct.new(
|
|
193
203
|
:regions,
|
|
194
204
|
:scope,
|
|
195
|
-
:source_logs_configuration
|
|
205
|
+
:source_logs_configuration,
|
|
206
|
+
:source_metrics_configuration)
|
|
196
207
|
SENSITIVE = []
|
|
197
208
|
include Aws::Structure
|
|
198
209
|
end
|
|
@@ -685,6 +696,22 @@ module Aws::ObservabilityAdmin
|
|
|
685
696
|
include Aws::Structure
|
|
686
697
|
end
|
|
687
698
|
|
|
699
|
+
# Configuration for centralization destination metrics, including backup
|
|
700
|
+
# settings.
|
|
701
|
+
#
|
|
702
|
+
# @!attribute [rw] backup_configuration
|
|
703
|
+
# Configuration defining the backup region for the metrics backup
|
|
704
|
+
# destination.
|
|
705
|
+
# @return [Types::MetricsBackupConfiguration]
|
|
706
|
+
#
|
|
707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DestinationMetricsConfiguration AWS API Documentation
|
|
708
|
+
#
|
|
709
|
+
class DestinationMetricsConfiguration < Struct.new(
|
|
710
|
+
:backup_configuration)
|
|
711
|
+
SENSITIVE = []
|
|
712
|
+
include Aws::Structure
|
|
713
|
+
end
|
|
714
|
+
|
|
688
715
|
# Configuration parameters for ELB load balancer logging, including
|
|
689
716
|
# output format and field delimiter settings.
|
|
690
717
|
#
|
|
@@ -1762,6 +1789,22 @@ module Aws::ObservabilityAdmin
|
|
|
1762
1789
|
include Aws::Structure
|
|
1763
1790
|
end
|
|
1764
1791
|
|
|
1792
|
+
# Configuration for backing up centralized metrics data to a secondary
|
|
1793
|
+
# region.
|
|
1794
|
+
#
|
|
1795
|
+
# @!attribute [rw] region
|
|
1796
|
+
# Metrics specific backup destination region within the primary
|
|
1797
|
+
# destination account to which metrics data should be centralized.
|
|
1798
|
+
# @return [String]
|
|
1799
|
+
#
|
|
1800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/MetricsBackupConfiguration AWS API Documentation
|
|
1801
|
+
#
|
|
1802
|
+
class MetricsBackupConfiguration < Struct.new(
|
|
1803
|
+
:region)
|
|
1804
|
+
SENSITIVE = []
|
|
1805
|
+
include Aws::Structure
|
|
1806
|
+
end
|
|
1807
|
+
|
|
1765
1808
|
# Configuration parameters for Amazon MSK cluster monitoring, including
|
|
1766
1809
|
# enhanced monitoring level settings.
|
|
1767
1810
|
#
|
|
@@ -2004,6 +2047,22 @@ module Aws::ObservabilityAdmin
|
|
|
2004
2047
|
include Aws::Structure
|
|
2005
2048
|
end
|
|
2006
2049
|
|
|
2050
|
+
# Configuration for selecting source metrics for centralization.
|
|
2051
|
+
#
|
|
2052
|
+
# @!attribute [rw] metrics_selection_criteria
|
|
2053
|
+
# The filter expression that selects which source metrics to
|
|
2054
|
+
# centralize. Currently, only `*` (all metrics) is supported. Other
|
|
2055
|
+
# values return a validation error.
|
|
2056
|
+
# @return [String]
|
|
2057
|
+
#
|
|
2058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/SourceMetricsConfiguration AWS API Documentation
|
|
2059
|
+
#
|
|
2060
|
+
class SourceMetricsConfiguration < Struct.new(
|
|
2061
|
+
:metrics_selection_criteria)
|
|
2062
|
+
SENSITIVE = []
|
|
2063
|
+
include Aws::Structure
|
|
2064
|
+
end
|
|
2065
|
+
|
|
2007
2066
|
# @!attribute [rw] status
|
|
2008
2067
|
# The status of the resource tags for telemetry feature after the
|
|
2009
2068
|
# start operation (`Running`, `Stopped`, or `Impaired`).
|
|
@@ -2521,11 +2580,17 @@ module Aws::ObservabilityAdmin
|
|
|
2521
2580
|
# The pipeline configuration to test with the provided sample records.
|
|
2522
2581
|
# @return [Types::TelemetryPipelineConfiguration]
|
|
2523
2582
|
#
|
|
2583
|
+
# @!attribute [rw] signal_type
|
|
2584
|
+
# The type of telemetry signal to test. If not specified, defaults to
|
|
2585
|
+
# log processing.
|
|
2586
|
+
# @return [String]
|
|
2587
|
+
#
|
|
2524
2588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TestTelemetryPipelineInput AWS API Documentation
|
|
2525
2589
|
#
|
|
2526
2590
|
class TestTelemetryPipelineInput < Struct.new(
|
|
2527
2591
|
:records,
|
|
2528
|
-
:configuration
|
|
2592
|
+
:configuration,
|
|
2593
|
+
:signal_type)
|
|
2529
2594
|
SENSITIVE = []
|
|
2530
2595
|
include Aws::Structure
|
|
2531
2596
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -306,7 +306,7 @@ module Aws
|
|
|
306
306
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ObservabilityAdmin/Client.html#list_resource_telemetry-instance_method
|
|
307
307
|
def list_resource_telemetry: (
|
|
308
308
|
?resource_identifier_prefix: ::String,
|
|
309
|
-
?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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")],
|
|
309
|
+
?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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")],
|
|
310
310
|
?telemetry_configuration_state: Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")],
|
|
311
311
|
?resource_tags: Hash[::String, ::String],
|
|
312
312
|
?max_results: ::Integer,
|
|
@@ -323,7 +323,7 @@ module Aws
|
|
|
323
323
|
def list_resource_telemetry_for_organization: (
|
|
324
324
|
?account_identifiers: Array[::String],
|
|
325
325
|
?resource_identifier_prefix: ::String,
|
|
326
|
-
?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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")],
|
|
326
|
+
?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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")],
|
|
327
327
|
?telemetry_configuration_state: Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")],
|
|
328
328
|
?resource_tags: Hash[::String, ::String],
|
|
329
329
|
?max_results: ::Integer,
|
|
@@ -453,7 +453,8 @@ module Aws
|
|
|
453
453
|
],
|
|
454
454
|
configuration: {
|
|
455
455
|
body: ::String
|
|
456
|
-
}
|
|
456
|
+
},
|
|
457
|
+
?signal_type: ("LOG" | "METRIC")
|
|
457
458
|
) -> _TestTelemetryPipelineResponseSuccess
|
|
458
459
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestTelemetryPipelineResponseSuccess
|
|
459
460
|
|
data/sig/params.rbs
CHANGED
|
@@ -15,6 +15,9 @@ module Aws
|
|
|
15
15
|
log_group_selection_criteria: ::String?,
|
|
16
16
|
data_source_selection_criteria: ::String?,
|
|
17
17
|
encrypted_log_group_strategy: ("ALLOW" | "SKIP")
|
|
18
|
+
}?,
|
|
19
|
+
source_metrics_configuration: {
|
|
20
|
+
metrics_selection_criteria: ::String?
|
|
18
21
|
}?
|
|
19
22
|
}
|
|
20
23
|
|
|
@@ -36,7 +39,12 @@ module Aws
|
|
|
36
39
|
type centralization_rule_destination = {
|
|
37
40
|
region: ::String,
|
|
38
41
|
account: ::String?,
|
|
39
|
-
destination_logs_configuration: Params::destination_logs_configuration
|
|
42
|
+
destination_logs_configuration: Params::destination_logs_configuration?,
|
|
43
|
+
destination_metrics_configuration: {
|
|
44
|
+
backup_configuration: {
|
|
45
|
+
region: ::String
|
|
46
|
+
}?
|
|
47
|
+
}?
|
|
40
48
|
}
|
|
41
49
|
|
|
42
50
|
type centralization_rule = {
|
|
@@ -81,7 +89,7 @@ module Aws
|
|
|
81
89
|
}?,
|
|
82
90
|
waf_logging_parameters: Params::waf_logging_parameters?,
|
|
83
91
|
log_delivery_parameters: {
|
|
84
|
-
log_types: Array[("APPLICATION_LOGS" | "USAGE_LOGS" | "SECURITY_FINDING_LOGS" | "ACCESS_LOGS" | "CONNECTION_LOGS")]?
|
|
92
|
+
log_types: Array[("APPLICATION_LOGS" | "USAGE_LOGS" | "SECURITY_FINDING_LOGS" | "ACCESS_LOGS" | "CONNECTION_LOGS" | "S3_SERVER_ACCESS_LOGS")]?
|
|
85
93
|
}?,
|
|
86
94
|
msk_monitoring_parameters: {
|
|
87
95
|
enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")?
|
|
@@ -89,7 +97,7 @@ module Aws
|
|
|
89
97
|
}
|
|
90
98
|
|
|
91
99
|
type telemetry_rule = {
|
|
92
|
-
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")?,
|
|
100
|
+
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")?,
|
|
93
101
|
telemetry_type: ("Logs" | "Metrics" | "Traces"),
|
|
94
102
|
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")]?,
|
|
95
103
|
destination_configuration: Params::telemetry_destination_configuration?,
|
data/sig/types.rbs
CHANGED
|
@@ -46,6 +46,7 @@ module Aws::ObservabilityAdmin
|
|
|
46
46
|
attr_accessor region: ::String
|
|
47
47
|
attr_accessor account: ::String
|
|
48
48
|
attr_accessor destination_logs_configuration: Types::DestinationLogsConfiguration
|
|
49
|
+
attr_accessor destination_metrics_configuration: Types::DestinationMetricsConfiguration
|
|
49
50
|
SENSITIVE: []
|
|
50
51
|
end
|
|
51
52
|
|
|
@@ -53,6 +54,7 @@ module Aws::ObservabilityAdmin
|
|
|
53
54
|
attr_accessor regions: ::Array[::String]
|
|
54
55
|
attr_accessor scope: ::String
|
|
55
56
|
attr_accessor source_logs_configuration: Types::SourceLogsConfiguration
|
|
57
|
+
attr_accessor source_metrics_configuration: Types::SourceMetricsConfiguration
|
|
56
58
|
SENSITIVE: []
|
|
57
59
|
end
|
|
58
60
|
|
|
@@ -198,6 +200,11 @@ module Aws::ObservabilityAdmin
|
|
|
198
200
|
SENSITIVE: []
|
|
199
201
|
end
|
|
200
202
|
|
|
203
|
+
class DestinationMetricsConfiguration
|
|
204
|
+
attr_accessor backup_configuration: Types::MetricsBackupConfiguration
|
|
205
|
+
SENSITIVE: []
|
|
206
|
+
end
|
|
207
|
+
|
|
201
208
|
class ELBLoadBalancerLoggingParameters
|
|
202
209
|
attr_accessor output_format: ("plain" | "json")
|
|
203
210
|
attr_accessor field_delimiter: ::String
|
|
@@ -364,7 +371,7 @@ module Aws::ObservabilityAdmin
|
|
|
364
371
|
class ListResourceTelemetryForOrganizationInput
|
|
365
372
|
attr_accessor account_identifiers: ::Array[::String]
|
|
366
373
|
attr_accessor resource_identifier_prefix: ::String
|
|
367
|
-
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")]
|
|
374
|
+
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")]
|
|
368
375
|
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
|
369
376
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
370
377
|
attr_accessor max_results: ::Integer
|
|
@@ -380,7 +387,7 @@ module Aws::ObservabilityAdmin
|
|
|
380
387
|
|
|
381
388
|
class ListResourceTelemetryInput
|
|
382
389
|
attr_accessor resource_identifier_prefix: ::String
|
|
383
|
-
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")]
|
|
390
|
+
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")]
|
|
384
391
|
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
|
385
392
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
386
393
|
attr_accessor max_results: ::Integer
|
|
@@ -457,7 +464,7 @@ module Aws::ObservabilityAdmin
|
|
|
457
464
|
end
|
|
458
465
|
|
|
459
466
|
class LogDeliveryParameters
|
|
460
|
-
attr_accessor log_types: ::Array[("APPLICATION_LOGS" | "USAGE_LOGS" | "SECURITY_FINDING_LOGS" | "ACCESS_LOGS" | "CONNECTION_LOGS")]
|
|
467
|
+
attr_accessor log_types: ::Array[("APPLICATION_LOGS" | "USAGE_LOGS" | "SECURITY_FINDING_LOGS" | "ACCESS_LOGS" | "CONNECTION_LOGS" | "S3_SERVER_ACCESS_LOGS")]
|
|
461
468
|
SENSITIVE: []
|
|
462
469
|
end
|
|
463
470
|
|
|
@@ -485,6 +492,11 @@ module Aws::ObservabilityAdmin
|
|
|
485
492
|
SENSITIVE: []
|
|
486
493
|
end
|
|
487
494
|
|
|
495
|
+
class MetricsBackupConfiguration
|
|
496
|
+
attr_accessor region: ::String
|
|
497
|
+
SENSITIVE: []
|
|
498
|
+
end
|
|
499
|
+
|
|
488
500
|
class MskMonitoringParameters
|
|
489
501
|
attr_accessor enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")
|
|
490
502
|
SENSITIVE: []
|
|
@@ -549,6 +561,11 @@ module Aws::ObservabilityAdmin
|
|
|
549
561
|
SENSITIVE: []
|
|
550
562
|
end
|
|
551
563
|
|
|
564
|
+
class SourceMetricsConfiguration
|
|
565
|
+
attr_accessor metrics_selection_criteria: ::String
|
|
566
|
+
SENSITIVE: []
|
|
567
|
+
end
|
|
568
|
+
|
|
552
569
|
class StartTelemetryEnrichmentOutput
|
|
553
570
|
attr_accessor status: ("Running" | "Stopped" | "Impaired")
|
|
554
571
|
attr_accessor aws_resource_explorer_managed_view_arn: ::String
|
|
@@ -581,7 +598,7 @@ module Aws::ObservabilityAdmin
|
|
|
581
598
|
class TelemetryConfiguration
|
|
582
599
|
attr_accessor account_identifier: ::String
|
|
583
600
|
attr_accessor telemetry_configuration_state: ::Hash[("Logs" | "Metrics" | "Traces"), ("Enabled" | "Disabled" | "NotApplicable")]
|
|
584
|
-
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")
|
|
601
|
+
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")
|
|
585
602
|
attr_accessor resource_identifier: ::String
|
|
586
603
|
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
587
604
|
attr_accessor last_update_time_stamp: ::Integer
|
|
@@ -636,7 +653,7 @@ module Aws::ObservabilityAdmin
|
|
|
636
653
|
end
|
|
637
654
|
|
|
638
655
|
class TelemetryRule
|
|
639
|
-
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")
|
|
656
|
+
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")
|
|
640
657
|
attr_accessor telemetry_type: ("Logs" | "Metrics" | "Traces")
|
|
641
658
|
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")]
|
|
642
659
|
attr_accessor destination_configuration: Types::TelemetryDestinationConfiguration
|
|
@@ -653,7 +670,7 @@ module Aws::ObservabilityAdmin
|
|
|
653
670
|
attr_accessor rule_arn: ::String
|
|
654
671
|
attr_accessor created_time_stamp: ::Integer
|
|
655
672
|
attr_accessor last_update_time_stamp: ::Integer
|
|
656
|
-
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster")
|
|
673
|
+
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" | "AWS::BedrockAgentCore::Gateway" | "AWS::BedrockAgentCore::Memory" | "AWS::BedrockAgentCore::WorkloadIdentity" | "AWS::SecurityHub::Hub" | "AWS::CloudFront::Distribution" | "AWS::SecurityHub::HubV2" | "AWS::CloudWatch::OTelEnrichment" | "AWS::MSK::Cluster" | "AWS::S3::Bucket")
|
|
657
674
|
attr_accessor telemetry_type: ("Logs" | "Metrics" | "Traces")
|
|
658
675
|
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")]
|
|
659
676
|
SENSITIVE: []
|
|
@@ -662,6 +679,7 @@ module Aws::ObservabilityAdmin
|
|
|
662
679
|
class TestTelemetryPipelineInput
|
|
663
680
|
attr_accessor records: ::Array[Types::Record]
|
|
664
681
|
attr_accessor configuration: Types::TelemetryPipelineConfiguration
|
|
682
|
+
attr_accessor signal_type: ("LOG" | "METRIC")
|
|
665
683
|
SENSITIVE: []
|
|
666
684
|
end
|
|
667
685
|
|