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
|
@@ -545,6 +545,105 @@ module Aws::ObservabilityAdmin
|
|
|
545
545
|
req.send_request(options)
|
|
546
546
|
end
|
|
547
547
|
|
|
548
|
+
# Creates an integration between CloudWatch and S3 Tables for analytics.
|
|
549
|
+
# This integration enables querying CloudWatch telemetry data using
|
|
550
|
+
# analytics engines like Amazon Athena, Amazon Redshift, and Apache
|
|
551
|
+
# Spark.
|
|
552
|
+
#
|
|
553
|
+
# @option params [required, Types::Encryption] :encryption
|
|
554
|
+
# The encryption configuration for the S3 Table integration, including
|
|
555
|
+
# the encryption algorithm and KMS key settings.
|
|
556
|
+
#
|
|
557
|
+
# @option params [required, String] :role_arn
|
|
558
|
+
# The Amazon Resource Name (ARN) of the IAM role that grants permissions
|
|
559
|
+
# for the S3 Table integration to access necessary resources.
|
|
560
|
+
#
|
|
561
|
+
# @option params [Hash<String,String>] :tags
|
|
562
|
+
# The key-value pairs to associate with the S3 Table integration
|
|
563
|
+
# resource for categorization and management purposes.
|
|
564
|
+
#
|
|
565
|
+
# @return [Types::CreateS3TableIntegrationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
566
|
+
#
|
|
567
|
+
# * {Types::CreateS3TableIntegrationOutput#arn #arn} => String
|
|
568
|
+
#
|
|
569
|
+
# @example Request syntax with placeholder values
|
|
570
|
+
#
|
|
571
|
+
# resp = client.create_s3_table_integration({
|
|
572
|
+
# encryption: { # required
|
|
573
|
+
# sse_algorithm: "aws:kms", # required, accepts aws:kms, AES256
|
|
574
|
+
# kms_key_arn: "ResourceArn",
|
|
575
|
+
# },
|
|
576
|
+
# role_arn: "ResourceArn", # required
|
|
577
|
+
# tags: {
|
|
578
|
+
# "TagKey" => "TagValue",
|
|
579
|
+
# },
|
|
580
|
+
# })
|
|
581
|
+
#
|
|
582
|
+
# @example Response structure
|
|
583
|
+
#
|
|
584
|
+
# resp.arn #=> String
|
|
585
|
+
#
|
|
586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateS3TableIntegration AWS API Documentation
|
|
587
|
+
#
|
|
588
|
+
# @overload create_s3_table_integration(params = {})
|
|
589
|
+
# @param [Hash] params ({})
|
|
590
|
+
def create_s3_table_integration(params = {}, options = {})
|
|
591
|
+
req = build_request(:create_s3_table_integration, params)
|
|
592
|
+
req.send_request(options)
|
|
593
|
+
end
|
|
594
|
+
|
|
595
|
+
# Creates a telemetry pipeline for processing and transforming telemetry
|
|
596
|
+
# data. The pipeline defines how data flows from sources through
|
|
597
|
+
# processors to destinations, enabling data transformation and
|
|
598
|
+
# delivering capabilities.
|
|
599
|
+
#
|
|
600
|
+
# @option params [required, String] :name
|
|
601
|
+
# The name of the telemetry pipeline to create. The name must be unique
|
|
602
|
+
# within your account.
|
|
603
|
+
#
|
|
604
|
+
# @option params [required, Types::TelemetryPipelineConfiguration] :configuration
|
|
605
|
+
# The configuration that defines how the telemetry pipeline processes
|
|
606
|
+
# data, including sources, processors, and destinations. For more
|
|
607
|
+
# information about pipeline components, see the [Amazon CloudWatch User
|
|
608
|
+
# Guide][1]
|
|
609
|
+
#
|
|
610
|
+
#
|
|
611
|
+
#
|
|
612
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/pipeline-components-reference.html
|
|
613
|
+
#
|
|
614
|
+
# @option params [Hash<String,String>] :tags
|
|
615
|
+
# The key-value pairs to associate with the telemetry pipeline resource
|
|
616
|
+
# for categorization and management purposes.
|
|
617
|
+
#
|
|
618
|
+
# @return [Types::CreateTelemetryPipelineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
619
|
+
#
|
|
620
|
+
# * {Types::CreateTelemetryPipelineOutput#arn #arn} => String
|
|
621
|
+
#
|
|
622
|
+
# @example Request syntax with placeholder values
|
|
623
|
+
#
|
|
624
|
+
# resp = client.create_telemetry_pipeline({
|
|
625
|
+
# name: "TelemetryPipelineName", # required
|
|
626
|
+
# configuration: { # required
|
|
627
|
+
# body: "TelemetryPipelineConfigurationBody", # required
|
|
628
|
+
# },
|
|
629
|
+
# tags: {
|
|
630
|
+
# "TagKey" => "TagValue",
|
|
631
|
+
# },
|
|
632
|
+
# })
|
|
633
|
+
#
|
|
634
|
+
# @example Response structure
|
|
635
|
+
#
|
|
636
|
+
# resp.arn #=> String
|
|
637
|
+
#
|
|
638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/CreateTelemetryPipeline AWS API Documentation
|
|
639
|
+
#
|
|
640
|
+
# @overload create_telemetry_pipeline(params = {})
|
|
641
|
+
# @param [Hash] params ({})
|
|
642
|
+
def create_telemetry_pipeline(params = {}, options = {})
|
|
643
|
+
req = build_request(:create_telemetry_pipeline, params)
|
|
644
|
+
req.send_request(options)
|
|
645
|
+
end
|
|
646
|
+
|
|
548
647
|
# Creates a telemetry rule that defines how telemetry should be
|
|
549
648
|
# configured for Amazon Web Services resources in your account. The rule
|
|
550
649
|
# specifies which resources should have telemetry enabled and how that
|
|
@@ -572,8 +671,9 @@ module Aws::ObservabilityAdmin
|
|
|
572
671
|
# resp = client.create_telemetry_rule({
|
|
573
672
|
# rule_name: "RuleName", # required
|
|
574
673
|
# rule: { # required
|
|
575
|
-
# resource_type: "AWS::EC2::Instance", # accepts AWS::EC2::Instance, AWS::EC2::VPC, AWS::Lambda::Function
|
|
674
|
+
# 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
|
|
576
675
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
676
|
+
# 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
|
|
577
677
|
# destination_configuration: {
|
|
578
678
|
# destination_type: "cloud-watch-logs", # accepts cloud-watch-logs
|
|
579
679
|
# destination_pattern: "String",
|
|
@@ -583,6 +683,63 @@ module Aws::ObservabilityAdmin
|
|
|
583
683
|
# traffic_type: "String",
|
|
584
684
|
# max_aggregation_interval: 1,
|
|
585
685
|
# },
|
|
686
|
+
# cloudtrail_parameters: {
|
|
687
|
+
# advanced_event_selectors: [ # required
|
|
688
|
+
# {
|
|
689
|
+
# name: "String",
|
|
690
|
+
# field_selectors: [ # required
|
|
691
|
+
# {
|
|
692
|
+
# field: "String", # required
|
|
693
|
+
# equals: ["String"],
|
|
694
|
+
# starts_with: ["String"],
|
|
695
|
+
# ends_with: ["String"],
|
|
696
|
+
# not_equals: ["String"],
|
|
697
|
+
# not_starts_with: ["String"],
|
|
698
|
+
# not_ends_with: ["String"],
|
|
699
|
+
# },
|
|
700
|
+
# ],
|
|
701
|
+
# },
|
|
702
|
+
# ],
|
|
703
|
+
# },
|
|
704
|
+
# elb_load_balancer_logging_parameters: {
|
|
705
|
+
# output_format: "plain", # accepts plain, json
|
|
706
|
+
# field_delimiter: "String",
|
|
707
|
+
# },
|
|
708
|
+
# waf_logging_parameters: {
|
|
709
|
+
# redacted_fields: [
|
|
710
|
+
# {
|
|
711
|
+
# single_header: {
|
|
712
|
+
# name: "SingleHeaderNameString",
|
|
713
|
+
# },
|
|
714
|
+
# uri_path: "String",
|
|
715
|
+
# query_string: "String",
|
|
716
|
+
# method: "String",
|
|
717
|
+
# },
|
|
718
|
+
# ],
|
|
719
|
+
# logging_filter: {
|
|
720
|
+
# filters: [
|
|
721
|
+
# {
|
|
722
|
+
# behavior: "KEEP", # accepts KEEP, DROP
|
|
723
|
+
# requirement: "MEETS_ALL", # accepts MEETS_ALL, MEETS_ANY
|
|
724
|
+
# conditions: [
|
|
725
|
+
# {
|
|
726
|
+
# action_condition: {
|
|
727
|
+
# action: "ALLOW", # accepts ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT
|
|
728
|
+
# },
|
|
729
|
+
# label_name_condition: {
|
|
730
|
+
# label_name: "LabelNameConditionLabelNameString",
|
|
731
|
+
# },
|
|
732
|
+
# },
|
|
733
|
+
# ],
|
|
734
|
+
# },
|
|
735
|
+
# ],
|
|
736
|
+
# default_behavior: "KEEP", # accepts KEEP, DROP
|
|
737
|
+
# },
|
|
738
|
+
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
739
|
+
# },
|
|
740
|
+
# log_delivery_parameters: {
|
|
741
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS
|
|
742
|
+
# },
|
|
586
743
|
# },
|
|
587
744
|
# scope: "String",
|
|
588
745
|
# selection_criteria: "String",
|
|
@@ -631,8 +788,9 @@ module Aws::ObservabilityAdmin
|
|
|
631
788
|
# resp = client.create_telemetry_rule_for_organization({
|
|
632
789
|
# rule_name: "RuleName", # required
|
|
633
790
|
# rule: { # required
|
|
634
|
-
# resource_type: "AWS::EC2::Instance", # accepts AWS::EC2::Instance, AWS::EC2::VPC, AWS::Lambda::Function
|
|
791
|
+
# 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
|
|
635
792
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
793
|
+
# 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
|
|
636
794
|
# destination_configuration: {
|
|
637
795
|
# destination_type: "cloud-watch-logs", # accepts cloud-watch-logs
|
|
638
796
|
# destination_pattern: "String",
|
|
@@ -642,6 +800,63 @@ module Aws::ObservabilityAdmin
|
|
|
642
800
|
# traffic_type: "String",
|
|
643
801
|
# max_aggregation_interval: 1,
|
|
644
802
|
# },
|
|
803
|
+
# cloudtrail_parameters: {
|
|
804
|
+
# advanced_event_selectors: [ # required
|
|
805
|
+
# {
|
|
806
|
+
# name: "String",
|
|
807
|
+
# field_selectors: [ # required
|
|
808
|
+
# {
|
|
809
|
+
# field: "String", # required
|
|
810
|
+
# equals: ["String"],
|
|
811
|
+
# starts_with: ["String"],
|
|
812
|
+
# ends_with: ["String"],
|
|
813
|
+
# not_equals: ["String"],
|
|
814
|
+
# not_starts_with: ["String"],
|
|
815
|
+
# not_ends_with: ["String"],
|
|
816
|
+
# },
|
|
817
|
+
# ],
|
|
818
|
+
# },
|
|
819
|
+
# ],
|
|
820
|
+
# },
|
|
821
|
+
# elb_load_balancer_logging_parameters: {
|
|
822
|
+
# output_format: "plain", # accepts plain, json
|
|
823
|
+
# field_delimiter: "String",
|
|
824
|
+
# },
|
|
825
|
+
# waf_logging_parameters: {
|
|
826
|
+
# redacted_fields: [
|
|
827
|
+
# {
|
|
828
|
+
# single_header: {
|
|
829
|
+
# name: "SingleHeaderNameString",
|
|
830
|
+
# },
|
|
831
|
+
# uri_path: "String",
|
|
832
|
+
# query_string: "String",
|
|
833
|
+
# method: "String",
|
|
834
|
+
# },
|
|
835
|
+
# ],
|
|
836
|
+
# logging_filter: {
|
|
837
|
+
# filters: [
|
|
838
|
+
# {
|
|
839
|
+
# behavior: "KEEP", # accepts KEEP, DROP
|
|
840
|
+
# requirement: "MEETS_ALL", # accepts MEETS_ALL, MEETS_ANY
|
|
841
|
+
# conditions: [
|
|
842
|
+
# {
|
|
843
|
+
# action_condition: {
|
|
844
|
+
# action: "ALLOW", # accepts ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT
|
|
845
|
+
# },
|
|
846
|
+
# label_name_condition: {
|
|
847
|
+
# label_name: "LabelNameConditionLabelNameString",
|
|
848
|
+
# },
|
|
849
|
+
# },
|
|
850
|
+
# ],
|
|
851
|
+
# },
|
|
852
|
+
# ],
|
|
853
|
+
# default_behavior: "KEEP", # accepts KEEP, DROP
|
|
854
|
+
# },
|
|
855
|
+
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
856
|
+
# },
|
|
857
|
+
# log_delivery_parameters: {
|
|
858
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS
|
|
859
|
+
# },
|
|
645
860
|
# },
|
|
646
861
|
# scope: "String",
|
|
647
862
|
# selection_criteria: "String",
|
|
@@ -689,6 +904,54 @@ module Aws::ObservabilityAdmin
|
|
|
689
904
|
req.send_request(options)
|
|
690
905
|
end
|
|
691
906
|
|
|
907
|
+
# Deletes an S3 Table integration and its associated data. This
|
|
908
|
+
# operation removes the connection between CloudWatch Observability
|
|
909
|
+
# Admin and S3 Tables.
|
|
910
|
+
#
|
|
911
|
+
# @option params [required, String] :arn
|
|
912
|
+
# The Amazon Resource Name (ARN) of the S3 Table integration to delete.
|
|
913
|
+
#
|
|
914
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
915
|
+
#
|
|
916
|
+
# @example Request syntax with placeholder values
|
|
917
|
+
#
|
|
918
|
+
# resp = client.delete_s3_table_integration({
|
|
919
|
+
# arn: "ResourceArn", # required
|
|
920
|
+
# })
|
|
921
|
+
#
|
|
922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteS3TableIntegration AWS API Documentation
|
|
923
|
+
#
|
|
924
|
+
# @overload delete_s3_table_integration(params = {})
|
|
925
|
+
# @param [Hash] params ({})
|
|
926
|
+
def delete_s3_table_integration(params = {}, options = {})
|
|
927
|
+
req = build_request(:delete_s3_table_integration, params)
|
|
928
|
+
req.send_request(options)
|
|
929
|
+
end
|
|
930
|
+
|
|
931
|
+
# Deletes a telemetry pipeline and its associated resources. This
|
|
932
|
+
# operation stops data processing and removes the pipeline
|
|
933
|
+
# configuration.
|
|
934
|
+
#
|
|
935
|
+
# @option params [required, String] :pipeline_identifier
|
|
936
|
+
# The ARN of the telemetry pipeline to delete.
|
|
937
|
+
#
|
|
938
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
939
|
+
#
|
|
940
|
+
# @example Request syntax with placeholder values
|
|
941
|
+
#
|
|
942
|
+
# resp = client.delete_telemetry_pipeline({
|
|
943
|
+
# pipeline_identifier: "TelemetryPipelineIdentifier", # required
|
|
944
|
+
# })
|
|
945
|
+
#
|
|
946
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/DeleteTelemetryPipeline AWS API Documentation
|
|
947
|
+
#
|
|
948
|
+
# @overload delete_telemetry_pipeline(params = {})
|
|
949
|
+
# @param [Hash] params ({})
|
|
950
|
+
def delete_telemetry_pipeline(params = {}, options = {})
|
|
951
|
+
req = build_request(:delete_telemetry_pipeline, params)
|
|
952
|
+
req.send_request(options)
|
|
953
|
+
end
|
|
954
|
+
|
|
692
955
|
# Deletes a telemetry rule from your account. Any telemetry
|
|
693
956
|
# configurations previously created by the rule will remain but no new
|
|
694
957
|
# resources will be configured by this rule.
|
|
@@ -796,9 +1059,50 @@ module Aws::ObservabilityAdmin
|
|
|
796
1059
|
req.send_request(options)
|
|
797
1060
|
end
|
|
798
1061
|
|
|
1062
|
+
# Retrieves information about a specific S3 Table integration, including
|
|
1063
|
+
# its configuration, status, and metadata.
|
|
1064
|
+
#
|
|
1065
|
+
# @option params [required, String] :arn
|
|
1066
|
+
# The Amazon Resource Name (ARN) of the S3 Table integration to
|
|
1067
|
+
# retrieve.
|
|
1068
|
+
#
|
|
1069
|
+
# @return [Types::GetS3TableIntegrationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1070
|
+
#
|
|
1071
|
+
# * {Types::GetS3TableIntegrationOutput#arn #arn} => String
|
|
1072
|
+
# * {Types::GetS3TableIntegrationOutput#role_arn #role_arn} => String
|
|
1073
|
+
# * {Types::GetS3TableIntegrationOutput#status #status} => String
|
|
1074
|
+
# * {Types::GetS3TableIntegrationOutput#encryption #encryption} => Types::Encryption
|
|
1075
|
+
# * {Types::GetS3TableIntegrationOutput#destination_table_bucket_arn #destination_table_bucket_arn} => String
|
|
1076
|
+
# * {Types::GetS3TableIntegrationOutput#created_time_stamp #created_time_stamp} => Integer
|
|
1077
|
+
#
|
|
1078
|
+
# @example Request syntax with placeholder values
|
|
1079
|
+
#
|
|
1080
|
+
# resp = client.get_s3_table_integration({
|
|
1081
|
+
# arn: "ResourceArn", # required
|
|
1082
|
+
# })
|
|
1083
|
+
#
|
|
1084
|
+
# @example Response structure
|
|
1085
|
+
#
|
|
1086
|
+
# resp.arn #=> String
|
|
1087
|
+
# resp.role_arn #=> String
|
|
1088
|
+
# resp.status #=> String, one of "ACTIVE", "DELETING"
|
|
1089
|
+
# resp.encryption.sse_algorithm #=> String, one of "aws:kms", "AES256"
|
|
1090
|
+
# resp.encryption.kms_key_arn #=> String
|
|
1091
|
+
# resp.destination_table_bucket_arn #=> String
|
|
1092
|
+
# resp.created_time_stamp #=> Integer
|
|
1093
|
+
#
|
|
1094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetS3TableIntegration AWS API Documentation
|
|
1095
|
+
#
|
|
1096
|
+
# @overload get_s3_table_integration(params = {})
|
|
1097
|
+
# @param [Hash] params ({})
|
|
1098
|
+
def get_s3_table_integration(params = {}, options = {})
|
|
1099
|
+
req = build_request(:get_s3_table_integration, params)
|
|
1100
|
+
req.send_request(options)
|
|
1101
|
+
end
|
|
1102
|
+
|
|
799
1103
|
# Returns the current status of the resource tags for telemetry feature,
|
|
800
1104
|
# which enhances telemetry data with additional resource metadata from
|
|
801
|
-
#
|
|
1105
|
+
# Resource Explorer.
|
|
802
1106
|
#
|
|
803
1107
|
# @return [Types::GetTelemetryEnrichmentStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
804
1108
|
#
|
|
@@ -866,6 +1170,43 @@ module Aws::ObservabilityAdmin
|
|
|
866
1170
|
req.send_request(options)
|
|
867
1171
|
end
|
|
868
1172
|
|
|
1173
|
+
# Retrieves information about a specific telemetry pipeline, including
|
|
1174
|
+
# its configuration, status, and metadata.
|
|
1175
|
+
#
|
|
1176
|
+
# @option params [required, String] :pipeline_identifier
|
|
1177
|
+
# The identifier (name or ARN) of the telemetry pipeline to retrieve.
|
|
1178
|
+
#
|
|
1179
|
+
# @return [Types::GetTelemetryPipelineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1180
|
+
#
|
|
1181
|
+
# * {Types::GetTelemetryPipelineOutput#pipeline #pipeline} => Types::TelemetryPipeline
|
|
1182
|
+
#
|
|
1183
|
+
# @example Request syntax with placeholder values
|
|
1184
|
+
#
|
|
1185
|
+
# resp = client.get_telemetry_pipeline({
|
|
1186
|
+
# pipeline_identifier: "TelemetryPipelineIdentifier", # required
|
|
1187
|
+
# })
|
|
1188
|
+
#
|
|
1189
|
+
# @example Response structure
|
|
1190
|
+
#
|
|
1191
|
+
# resp.pipeline.created_time_stamp #=> Integer
|
|
1192
|
+
# resp.pipeline.last_update_time_stamp #=> Integer
|
|
1193
|
+
# resp.pipeline.arn #=> String
|
|
1194
|
+
# resp.pipeline.name #=> String
|
|
1195
|
+
# resp.pipeline.configuration.body #=> String
|
|
1196
|
+
# resp.pipeline.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED"
|
|
1197
|
+
# resp.pipeline.status_reason.description #=> String
|
|
1198
|
+
# resp.pipeline.tags #=> Hash
|
|
1199
|
+
# resp.pipeline.tags["String"] #=> String
|
|
1200
|
+
#
|
|
1201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/GetTelemetryPipeline AWS API Documentation
|
|
1202
|
+
#
|
|
1203
|
+
# @overload get_telemetry_pipeline(params = {})
|
|
1204
|
+
# @param [Hash] params ({})
|
|
1205
|
+
def get_telemetry_pipeline(params = {}, options = {})
|
|
1206
|
+
req = build_request(:get_telemetry_pipeline, params)
|
|
1207
|
+
req.send_request(options)
|
|
1208
|
+
end
|
|
1209
|
+
|
|
869
1210
|
# Retrieves the details of a specific telemetry rule in your account.
|
|
870
1211
|
#
|
|
871
1212
|
# @option params [required, String] :rule_identifier
|
|
@@ -891,14 +1232,49 @@ module Aws::ObservabilityAdmin
|
|
|
891
1232
|
# resp.rule_arn #=> String
|
|
892
1233
|
# resp.created_time_stamp #=> Integer
|
|
893
1234
|
# resp.last_update_time_stamp #=> Integer
|
|
894
|
-
# resp.telemetry_rule.resource_type #=> String, one of "AWS::EC2::Instance", "AWS::EC2::VPC", "AWS::Lambda::Function"
|
|
1235
|
+
# 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"
|
|
895
1236
|
# resp.telemetry_rule.telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1237
|
+
# resp.telemetry_rule.telemetry_source_types #=> Array
|
|
1238
|
+
# 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"
|
|
896
1239
|
# resp.telemetry_rule.destination_configuration.destination_type #=> String, one of "cloud-watch-logs"
|
|
897
1240
|
# resp.telemetry_rule.destination_configuration.destination_pattern #=> String
|
|
898
1241
|
# resp.telemetry_rule.destination_configuration.retention_in_days #=> Integer
|
|
899
1242
|
# resp.telemetry_rule.destination_configuration.vpc_flow_log_parameters.log_format #=> String
|
|
900
1243
|
# resp.telemetry_rule.destination_configuration.vpc_flow_log_parameters.traffic_type #=> String
|
|
901
1244
|
# resp.telemetry_rule.destination_configuration.vpc_flow_log_parameters.max_aggregation_interval #=> Integer
|
|
1245
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors #=> Array
|
|
1246
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].name #=> String
|
|
1247
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors #=> Array
|
|
1248
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].field #=> String
|
|
1249
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].equals #=> Array
|
|
1250
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].equals[0] #=> String
|
|
1251
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].starts_with #=> Array
|
|
1252
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].starts_with[0] #=> String
|
|
1253
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].ends_with #=> Array
|
|
1254
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].ends_with[0] #=> String
|
|
1255
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_equals #=> Array
|
|
1256
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_equals[0] #=> String
|
|
1257
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_starts_with #=> Array
|
|
1258
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_starts_with[0] #=> String
|
|
1259
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_ends_with #=> Array
|
|
1260
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_ends_with[0] #=> String
|
|
1261
|
+
# resp.telemetry_rule.destination_configuration.elb_load_balancer_logging_parameters.output_format #=> String, one of "plain", "json"
|
|
1262
|
+
# resp.telemetry_rule.destination_configuration.elb_load_balancer_logging_parameters.field_delimiter #=> String
|
|
1263
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields #=> Array
|
|
1264
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].single_header.name #=> String
|
|
1265
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].uri_path #=> String
|
|
1266
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].query_string #=> String
|
|
1267
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].method #=> String
|
|
1268
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters #=> Array
|
|
1269
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].behavior #=> String, one of "KEEP", "DROP"
|
|
1270
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].requirement #=> String, one of "MEETS_ALL", "MEETS_ANY"
|
|
1271
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].conditions #=> Array
|
|
1272
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "CHALLENGE", "EXCLUDED_AS_COUNT"
|
|
1273
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].conditions[0].label_name_condition.label_name #=> String
|
|
1274
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
|
|
1275
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.log_type #=> String, one of "WAF_LOGS"
|
|
1276
|
+
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types #=> Array
|
|
1277
|
+
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types[0] #=> String, one of "APPLICATION_LOGS", "USAGE_LOGS"
|
|
902
1278
|
# resp.telemetry_rule.scope #=> String
|
|
903
1279
|
# resp.telemetry_rule.selection_criteria #=> String
|
|
904
1280
|
#
|
|
@@ -939,14 +1315,49 @@ module Aws::ObservabilityAdmin
|
|
|
939
1315
|
# resp.rule_arn #=> String
|
|
940
1316
|
# resp.created_time_stamp #=> Integer
|
|
941
1317
|
# resp.last_update_time_stamp #=> Integer
|
|
942
|
-
# resp.telemetry_rule.resource_type #=> String, one of "AWS::EC2::Instance", "AWS::EC2::VPC", "AWS::Lambda::Function"
|
|
1318
|
+
# 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"
|
|
943
1319
|
# resp.telemetry_rule.telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1320
|
+
# resp.telemetry_rule.telemetry_source_types #=> Array
|
|
1321
|
+
# 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"
|
|
944
1322
|
# resp.telemetry_rule.destination_configuration.destination_type #=> String, one of "cloud-watch-logs"
|
|
945
1323
|
# resp.telemetry_rule.destination_configuration.destination_pattern #=> String
|
|
946
1324
|
# resp.telemetry_rule.destination_configuration.retention_in_days #=> Integer
|
|
947
1325
|
# resp.telemetry_rule.destination_configuration.vpc_flow_log_parameters.log_format #=> String
|
|
948
1326
|
# resp.telemetry_rule.destination_configuration.vpc_flow_log_parameters.traffic_type #=> String
|
|
949
1327
|
# resp.telemetry_rule.destination_configuration.vpc_flow_log_parameters.max_aggregation_interval #=> Integer
|
|
1328
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors #=> Array
|
|
1329
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].name #=> String
|
|
1330
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors #=> Array
|
|
1331
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].field #=> String
|
|
1332
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].equals #=> Array
|
|
1333
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].equals[0] #=> String
|
|
1334
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].starts_with #=> Array
|
|
1335
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].starts_with[0] #=> String
|
|
1336
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].ends_with #=> Array
|
|
1337
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].ends_with[0] #=> String
|
|
1338
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_equals #=> Array
|
|
1339
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_equals[0] #=> String
|
|
1340
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_starts_with #=> Array
|
|
1341
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_starts_with[0] #=> String
|
|
1342
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_ends_with #=> Array
|
|
1343
|
+
# resp.telemetry_rule.destination_configuration.cloudtrail_parameters.advanced_event_selectors[0].field_selectors[0].not_ends_with[0] #=> String
|
|
1344
|
+
# resp.telemetry_rule.destination_configuration.elb_load_balancer_logging_parameters.output_format #=> String, one of "plain", "json"
|
|
1345
|
+
# resp.telemetry_rule.destination_configuration.elb_load_balancer_logging_parameters.field_delimiter #=> String
|
|
1346
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields #=> Array
|
|
1347
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].single_header.name #=> String
|
|
1348
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].uri_path #=> String
|
|
1349
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].query_string #=> String
|
|
1350
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.redacted_fields[0].method #=> String
|
|
1351
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters #=> Array
|
|
1352
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].behavior #=> String, one of "KEEP", "DROP"
|
|
1353
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].requirement #=> String, one of "MEETS_ALL", "MEETS_ANY"
|
|
1354
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].conditions #=> Array
|
|
1355
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].conditions[0].action_condition.action #=> String, one of "ALLOW", "BLOCK", "COUNT", "CAPTCHA", "CHALLENGE", "EXCLUDED_AS_COUNT"
|
|
1356
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.filters[0].conditions[0].label_name_condition.label_name #=> String
|
|
1357
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.logging_filter.default_behavior #=> String, one of "KEEP", "DROP"
|
|
1358
|
+
# resp.telemetry_rule.destination_configuration.waf_logging_parameters.log_type #=> String, one of "WAF_LOGS"
|
|
1359
|
+
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types #=> Array
|
|
1360
|
+
# resp.telemetry_rule.destination_configuration.log_delivery_parameters.log_types[0] #=> String, one of "APPLICATION_LOGS", "USAGE_LOGS"
|
|
950
1361
|
# resp.telemetry_rule.scope #=> String
|
|
951
1362
|
# resp.telemetry_rule.selection_criteria #=> String
|
|
952
1363
|
#
|
|
@@ -1068,7 +1479,7 @@ module Aws::ObservabilityAdmin
|
|
|
1068
1479
|
#
|
|
1069
1480
|
# resp = client.list_resource_telemetry({
|
|
1070
1481
|
# resource_identifier_prefix: "ResourceIdentifierPrefix",
|
|
1071
|
-
# resource_types: ["AWS::EC2::Instance"], # accepts AWS::EC2::Instance, AWS::EC2::VPC, AWS::Lambda::Function
|
|
1482
|
+
# 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
|
|
1072
1483
|
# telemetry_configuration_state: {
|
|
1073
1484
|
# "Logs" => "Enabled", # accepts Enabled, Disabled, NotApplicable
|
|
1074
1485
|
# },
|
|
@@ -1085,7 +1496,7 @@ module Aws::ObservabilityAdmin
|
|
|
1085
1496
|
# resp.telemetry_configurations[0].account_identifier #=> String
|
|
1086
1497
|
# resp.telemetry_configurations[0].telemetry_configuration_state #=> Hash
|
|
1087
1498
|
# resp.telemetry_configurations[0].telemetry_configuration_state["TelemetryType"] #=> String, one of "Enabled", "Disabled", "NotApplicable"
|
|
1088
|
-
# resp.telemetry_configurations[0].resource_type #=> String, one of "AWS::EC2::Instance", "AWS::EC2::VPC", "AWS::Lambda::Function"
|
|
1499
|
+
# 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"
|
|
1089
1500
|
# resp.telemetry_configurations[0].resource_identifier #=> String
|
|
1090
1501
|
# resp.telemetry_configurations[0].resource_tags #=> Hash
|
|
1091
1502
|
# resp.telemetry_configurations[0].resource_tags["String"] #=> String
|
|
@@ -1151,7 +1562,7 @@ module Aws::ObservabilityAdmin
|
|
|
1151
1562
|
# resp = client.list_resource_telemetry_for_organization({
|
|
1152
1563
|
# account_identifiers: ["AccountIdentifier"],
|
|
1153
1564
|
# resource_identifier_prefix: "ResourceIdentifierPrefix",
|
|
1154
|
-
# resource_types: ["AWS::EC2::Instance"], # accepts AWS::EC2::Instance, AWS::EC2::VPC, AWS::Lambda::Function
|
|
1565
|
+
# 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
|
|
1155
1566
|
# telemetry_configuration_state: {
|
|
1156
1567
|
# "Logs" => "Enabled", # accepts Enabled, Disabled, NotApplicable
|
|
1157
1568
|
# },
|
|
@@ -1168,7 +1579,7 @@ module Aws::ObservabilityAdmin
|
|
|
1168
1579
|
# resp.telemetry_configurations[0].account_identifier #=> String
|
|
1169
1580
|
# resp.telemetry_configurations[0].telemetry_configuration_state #=> Hash
|
|
1170
1581
|
# resp.telemetry_configurations[0].telemetry_configuration_state["TelemetryType"] #=> String, one of "Enabled", "Disabled", "NotApplicable"
|
|
1171
|
-
# resp.telemetry_configurations[0].resource_type #=> String, one of "AWS::EC2::Instance", "AWS::EC2::VPC", "AWS::Lambda::Function"
|
|
1582
|
+
# 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"
|
|
1172
1583
|
# resp.telemetry_configurations[0].resource_identifier #=> String
|
|
1173
1584
|
# resp.telemetry_configurations[0].resource_tags #=> Hash
|
|
1174
1585
|
# resp.telemetry_configurations[0].resource_tags["String"] #=> String
|
|
@@ -1184,7 +1595,50 @@ module Aws::ObservabilityAdmin
|
|
|
1184
1595
|
req.send_request(options)
|
|
1185
1596
|
end
|
|
1186
1597
|
|
|
1187
|
-
# Lists all
|
|
1598
|
+
# Lists all S3 Table integrations in your account. We recommend using
|
|
1599
|
+
# pagination to ensure that the operation returns quickly and
|
|
1600
|
+
# successfully.
|
|
1601
|
+
#
|
|
1602
|
+
# @option params [Integer] :max_results
|
|
1603
|
+
# The maximum number of S3 Table integrations to return in a single
|
|
1604
|
+
# call.
|
|
1605
|
+
#
|
|
1606
|
+
# @option params [String] :next_token
|
|
1607
|
+
# The token for the next set of results. A previous call generates this
|
|
1608
|
+
# token.
|
|
1609
|
+
#
|
|
1610
|
+
# @return [Types::ListS3TableIntegrationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1611
|
+
#
|
|
1612
|
+
# * {Types::ListS3TableIntegrationsOutput#integration_summaries #integration_summaries} => Array<Types::IntegrationSummary>
|
|
1613
|
+
# * {Types::ListS3TableIntegrationsOutput#next_token #next_token} => String
|
|
1614
|
+
#
|
|
1615
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1616
|
+
#
|
|
1617
|
+
# @example Request syntax with placeholder values
|
|
1618
|
+
#
|
|
1619
|
+
# resp = client.list_s3_table_integrations({
|
|
1620
|
+
# max_results: 1,
|
|
1621
|
+
# next_token: "NextToken",
|
|
1622
|
+
# })
|
|
1623
|
+
#
|
|
1624
|
+
# @example Response structure
|
|
1625
|
+
#
|
|
1626
|
+
# resp.integration_summaries #=> Array
|
|
1627
|
+
# resp.integration_summaries[0].arn #=> String
|
|
1628
|
+
# resp.integration_summaries[0].status #=> String, one of "ACTIVE", "DELETING"
|
|
1629
|
+
# resp.next_token #=> String
|
|
1630
|
+
#
|
|
1631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListS3TableIntegrations AWS API Documentation
|
|
1632
|
+
#
|
|
1633
|
+
# @overload list_s3_table_integrations(params = {})
|
|
1634
|
+
# @param [Hash] params ({})
|
|
1635
|
+
def list_s3_table_integrations(params = {}, options = {})
|
|
1636
|
+
req = build_request(:list_s3_table_integrations, params)
|
|
1637
|
+
req.send_request(options)
|
|
1638
|
+
end
|
|
1639
|
+
|
|
1640
|
+
# Lists all tags attached to the specified resource. Supports telemetry
|
|
1641
|
+
# rule resources and telemetry pipeline resources.
|
|
1188
1642
|
#
|
|
1189
1643
|
# @option params [required, String] :resource_arn
|
|
1190
1644
|
# The Amazon Resource Name (ARN) of the telemetry rule resource whose
|
|
@@ -1214,6 +1668,63 @@ module Aws::ObservabilityAdmin
|
|
|
1214
1668
|
req.send_request(options)
|
|
1215
1669
|
end
|
|
1216
1670
|
|
|
1671
|
+
# Returns a list of telemetry pipelines in your account. Returns up to
|
|
1672
|
+
# 100 results. If more than 100 telemetry pipelines exist, include the
|
|
1673
|
+
# `NextToken` value from the response to retrieve the next set of
|
|
1674
|
+
# results.
|
|
1675
|
+
#
|
|
1676
|
+
# @option params [Integer] :max_results
|
|
1677
|
+
# The maximum number of telemetry pipelines to return in a single call.
|
|
1678
|
+
#
|
|
1679
|
+
# @option params [String] :next_token
|
|
1680
|
+
# The token for the next set of results. A previous call generates this
|
|
1681
|
+
# token.
|
|
1682
|
+
#
|
|
1683
|
+
# @return [Types::ListTelemetryPipelinesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1684
|
+
#
|
|
1685
|
+
# * {Types::ListTelemetryPipelinesOutput#pipeline_summaries #pipeline_summaries} => Array<Types::TelemetryPipelineSummary>
|
|
1686
|
+
# * {Types::ListTelemetryPipelinesOutput#next_token #next_token} => String
|
|
1687
|
+
#
|
|
1688
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1689
|
+
#
|
|
1690
|
+
# @example Request syntax with placeholder values
|
|
1691
|
+
#
|
|
1692
|
+
# resp = client.list_telemetry_pipelines({
|
|
1693
|
+
# max_results: 1,
|
|
1694
|
+
# next_token: "NextToken",
|
|
1695
|
+
# })
|
|
1696
|
+
#
|
|
1697
|
+
# @example Response structure
|
|
1698
|
+
#
|
|
1699
|
+
# resp.pipeline_summaries #=> Array
|
|
1700
|
+
# resp.pipeline_summaries[0].created_time_stamp #=> Integer
|
|
1701
|
+
# resp.pipeline_summaries[0].last_update_time_stamp #=> Integer
|
|
1702
|
+
# resp.pipeline_summaries[0].arn #=> String
|
|
1703
|
+
# resp.pipeline_summaries[0].name #=> String
|
|
1704
|
+
# resp.pipeline_summaries[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED"
|
|
1705
|
+
# resp.pipeline_summaries[0].tags #=> Hash
|
|
1706
|
+
# resp.pipeline_summaries[0].tags["String"] #=> String
|
|
1707
|
+
# resp.pipeline_summaries[0].configuration_summary.sources #=> Array
|
|
1708
|
+
# resp.pipeline_summaries[0].configuration_summary.sources[0].type #=> String
|
|
1709
|
+
# resp.pipeline_summaries[0].configuration_summary.data_sources #=> Array
|
|
1710
|
+
# resp.pipeline_summaries[0].configuration_summary.data_sources[0].name #=> String
|
|
1711
|
+
# resp.pipeline_summaries[0].configuration_summary.data_sources[0].type #=> String
|
|
1712
|
+
# resp.pipeline_summaries[0].configuration_summary.processors #=> Array
|
|
1713
|
+
# resp.pipeline_summaries[0].configuration_summary.processors[0] #=> String
|
|
1714
|
+
# resp.pipeline_summaries[0].configuration_summary.processor_count #=> Integer
|
|
1715
|
+
# resp.pipeline_summaries[0].configuration_summary.sinks #=> Array
|
|
1716
|
+
# resp.pipeline_summaries[0].configuration_summary.sinks[0] #=> String
|
|
1717
|
+
# resp.next_token #=> String
|
|
1718
|
+
#
|
|
1719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListTelemetryPipelines AWS API Documentation
|
|
1720
|
+
#
|
|
1721
|
+
# @overload list_telemetry_pipelines(params = {})
|
|
1722
|
+
# @param [Hash] params ({})
|
|
1723
|
+
def list_telemetry_pipelines(params = {}, options = {})
|
|
1724
|
+
req = build_request(:list_telemetry_pipelines, params)
|
|
1725
|
+
req.send_request(options)
|
|
1726
|
+
end
|
|
1727
|
+
|
|
1217
1728
|
# Lists all telemetry rules in your account. You can filter the results
|
|
1218
1729
|
# by specifying a rule name prefix.
|
|
1219
1730
|
#
|
|
@@ -1250,8 +1761,10 @@ module Aws::ObservabilityAdmin
|
|
|
1250
1761
|
# resp.telemetry_rule_summaries[0].rule_arn #=> String
|
|
1251
1762
|
# resp.telemetry_rule_summaries[0].created_time_stamp #=> Integer
|
|
1252
1763
|
# resp.telemetry_rule_summaries[0].last_update_time_stamp #=> Integer
|
|
1253
|
-
# resp.telemetry_rule_summaries[0].resource_type #=> String, one of "AWS::EC2::Instance", "AWS::EC2::VPC", "AWS::Lambda::Function"
|
|
1764
|
+
# 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"
|
|
1254
1765
|
# resp.telemetry_rule_summaries[0].telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1766
|
+
# resp.telemetry_rule_summaries[0].telemetry_source_types #=> Array
|
|
1767
|
+
# 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"
|
|
1255
1768
|
# resp.next_token #=> String
|
|
1256
1769
|
#
|
|
1257
1770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListTelemetryRules AWS API Documentation
|
|
@@ -1311,8 +1824,10 @@ module Aws::ObservabilityAdmin
|
|
|
1311
1824
|
# resp.telemetry_rule_summaries[0].rule_arn #=> String
|
|
1312
1825
|
# resp.telemetry_rule_summaries[0].created_time_stamp #=> Integer
|
|
1313
1826
|
# resp.telemetry_rule_summaries[0].last_update_time_stamp #=> Integer
|
|
1314
|
-
# resp.telemetry_rule_summaries[0].resource_type #=> String, one of "AWS::EC2::Instance", "AWS::EC2::VPC", "AWS::Lambda::Function"
|
|
1827
|
+
# 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"
|
|
1315
1828
|
# resp.telemetry_rule_summaries[0].telemetry_type #=> String, one of "Logs", "Metrics", "Traces"
|
|
1829
|
+
# resp.telemetry_rule_summaries[0].telemetry_source_types #=> Array
|
|
1830
|
+
# 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"
|
|
1316
1831
|
# resp.next_token #=> String
|
|
1317
1832
|
#
|
|
1318
1833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListTelemetryRulesForOrganization AWS API Documentation
|
|
@@ -1326,8 +1841,8 @@ module Aws::ObservabilityAdmin
|
|
|
1326
1841
|
|
|
1327
1842
|
# Enables the resource tags for telemetry feature for your account,
|
|
1328
1843
|
# which enhances telemetry data with additional resource metadata from
|
|
1329
|
-
#
|
|
1330
|
-
#
|
|
1844
|
+
# Resource Explorer to provide richer context for monitoring and
|
|
1845
|
+
# observability.
|
|
1331
1846
|
#
|
|
1332
1847
|
# @return [Types::StartTelemetryEnrichmentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1333
1848
|
#
|
|
@@ -1425,7 +1940,8 @@ module Aws::ObservabilityAdmin
|
|
|
1425
1940
|
req.send_request(options)
|
|
1426
1941
|
end
|
|
1427
1942
|
|
|
1428
|
-
# Adds or updates tags for a telemetry rule
|
|
1943
|
+
# Adds or updates tags for a resource. Supports telemetry rule resources
|
|
1944
|
+
# and telemetry pipeline resources.
|
|
1429
1945
|
#
|
|
1430
1946
|
# @option params [required, String] :resource_arn
|
|
1431
1947
|
# The Amazon Resource Name (ARN) of the telemetry rule resource to tag.
|
|
@@ -1453,7 +1969,53 @@ module Aws::ObservabilityAdmin
|
|
|
1453
1969
|
req.send_request(options)
|
|
1454
1970
|
end
|
|
1455
1971
|
|
|
1456
|
-
#
|
|
1972
|
+
# Tests a pipeline configuration with sample records to validate data
|
|
1973
|
+
# processing before deployment. This operation helps ensure your
|
|
1974
|
+
# pipeline configuration works as expected.
|
|
1975
|
+
#
|
|
1976
|
+
# @option params [required, Array<Types::Record>] :records
|
|
1977
|
+
# The sample records to process through the pipeline configuration for
|
|
1978
|
+
# testing purposes.
|
|
1979
|
+
#
|
|
1980
|
+
# @option params [required, Types::TelemetryPipelineConfiguration] :configuration
|
|
1981
|
+
# The pipeline configuration to test with the provided sample records.
|
|
1982
|
+
#
|
|
1983
|
+
# @return [Types::TestTelemetryPipelineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1984
|
+
#
|
|
1985
|
+
# * {Types::TestTelemetryPipelineOutput#results #results} => Array<Types::PipelineOutput>
|
|
1986
|
+
#
|
|
1987
|
+
# @example Request syntax with placeholder values
|
|
1988
|
+
#
|
|
1989
|
+
# resp = client.test_telemetry_pipeline({
|
|
1990
|
+
# records: [ # required
|
|
1991
|
+
# {
|
|
1992
|
+
# data: "String",
|
|
1993
|
+
# type: "STRING", # accepts STRING, JSON
|
|
1994
|
+
# },
|
|
1995
|
+
# ],
|
|
1996
|
+
# configuration: { # required
|
|
1997
|
+
# body: "TelemetryPipelineConfigurationBody", # required
|
|
1998
|
+
# },
|
|
1999
|
+
# })
|
|
2000
|
+
#
|
|
2001
|
+
# @example Response structure
|
|
2002
|
+
#
|
|
2003
|
+
# resp.results #=> Array
|
|
2004
|
+
# resp.results[0].record.data #=> String
|
|
2005
|
+
# resp.results[0].record.type #=> String, one of "STRING", "JSON"
|
|
2006
|
+
# resp.results[0].error.message #=> String
|
|
2007
|
+
#
|
|
2008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/TestTelemetryPipeline AWS API Documentation
|
|
2009
|
+
#
|
|
2010
|
+
# @overload test_telemetry_pipeline(params = {})
|
|
2011
|
+
# @param [Hash] params ({})
|
|
2012
|
+
def test_telemetry_pipeline(params = {}, options = {})
|
|
2013
|
+
req = build_request(:test_telemetry_pipeline, params)
|
|
2014
|
+
req.send_request(options)
|
|
2015
|
+
end
|
|
2016
|
+
|
|
2017
|
+
# Removes tags from a resource. Supports telemetry rule resources and
|
|
2018
|
+
# telemetry pipeline resources.
|
|
1457
2019
|
#
|
|
1458
2020
|
# @option params [required, String] :resource_arn
|
|
1459
2021
|
# The Amazon Resource Name (ARN) of the telemetry rule resource to
|
|
@@ -1542,7 +2104,109 @@ module Aws::ObservabilityAdmin
|
|
|
1542
2104
|
req.send_request(options)
|
|
1543
2105
|
end
|
|
1544
2106
|
|
|
1545
|
-
# Updates an existing telemetry
|
|
2107
|
+
# Updates the configuration of an existing telemetry pipeline.
|
|
2108
|
+
#
|
|
2109
|
+
# <note markdown="1"> The following attributes cannot be updated after pipeline creation:
|
|
2110
|
+
#
|
|
2111
|
+
# * **Pipeline name** - The pipeline name is immutable
|
|
2112
|
+
#
|
|
2113
|
+
# * **Pipeline ARN** - The ARN is automatically generated and cannot be
|
|
2114
|
+
# changed
|
|
2115
|
+
#
|
|
2116
|
+
# * **Source type** - Once a pipeline is created with a specific source
|
|
2117
|
+
# type (such as S3, CloudWatch Logs, GitHub, or third-party sources),
|
|
2118
|
+
# it cannot be changed to a different source type
|
|
2119
|
+
#
|
|
2120
|
+
# Processors can be added, removed, or modified. However, some
|
|
2121
|
+
# processors are not supported for third-party pipelines and cannot be
|
|
2122
|
+
# added through updates.
|
|
2123
|
+
#
|
|
2124
|
+
# </note>
|
|
2125
|
+
#
|
|
2126
|
+
# **Source-Specific Update Rules**
|
|
2127
|
+
#
|
|
2128
|
+
# CloudWatch Logs Sources (Vended and Custom)
|
|
2129
|
+
#
|
|
2130
|
+
# : **Updatable:** `sts_role_arn`
|
|
2131
|
+
#
|
|
2132
|
+
# **Fixed:** `data_source_name`, `data_source_type`, sink (must remain
|
|
2133
|
+
# `@original`)
|
|
2134
|
+
#
|
|
2135
|
+
# S3 Sources (Crowdstrike, Zscaler, SentinelOne, Custom)
|
|
2136
|
+
#
|
|
2137
|
+
# : **Updatable:** All SQS configuration parameters, `sts_role_arn`,
|
|
2138
|
+
# codec settings, compression type, bucket ownership settings, sink
|
|
2139
|
+
# log group
|
|
2140
|
+
#
|
|
2141
|
+
# **Fixed:** `notification_type`, `aws.region`
|
|
2142
|
+
#
|
|
2143
|
+
# GitHub Audit Logs
|
|
2144
|
+
#
|
|
2145
|
+
# : **Updatable:** All Amazon Web Services Secrets Manager attributes,
|
|
2146
|
+
# `scope` (can switch between ORGANIZATION/ENTERPRISE), `organization`
|
|
2147
|
+
# or `enterprise` name, `range`, authentication credentials (PAT or
|
|
2148
|
+
# GitHub App)
|
|
2149
|
+
#
|
|
2150
|
+
# Microsoft Sources (Entra ID, Office365, Windows)
|
|
2151
|
+
#
|
|
2152
|
+
# : **Updatable:** All Amazon Web Services Secrets Manager attributes,
|
|
2153
|
+
# `tenant_id`, `workspace_id` (Windows only), OAuth2 credentials
|
|
2154
|
+
# (`client_id`, `client_secret`)
|
|
2155
|
+
#
|
|
2156
|
+
# Okta Sources (SSO, Auth0)
|
|
2157
|
+
#
|
|
2158
|
+
# : **Updatable:** All Amazon Web Services Secrets Manager attributes,
|
|
2159
|
+
# `domain`, `range` (SSO only), OAuth2 credentials (`client_id`,
|
|
2160
|
+
# `client_secret`)
|
|
2161
|
+
#
|
|
2162
|
+
# Palo Alto Networks
|
|
2163
|
+
#
|
|
2164
|
+
# : **Updatable:** All Amazon Web Services Secrets Manager attributes,
|
|
2165
|
+
# `hostname`, basic authentication credentials (`username`,
|
|
2166
|
+
# `password`)
|
|
2167
|
+
#
|
|
2168
|
+
# ServiceNow CMDB
|
|
2169
|
+
#
|
|
2170
|
+
# : **Updatable:** All Amazon Web Services Secrets Manager attributes,
|
|
2171
|
+
# `instance_url`, `range`, OAuth2 credentials (`client_id`,
|
|
2172
|
+
# `client_secret`)
|
|
2173
|
+
#
|
|
2174
|
+
# Wiz CNAPP
|
|
2175
|
+
#
|
|
2176
|
+
# : **Updatable:** All Amazon Web Services Secrets Manager attributes,
|
|
2177
|
+
# `region`, `range`, OAuth2 credentials (`client_id`, `client_secret`)
|
|
2178
|
+
#
|
|
2179
|
+
# @option params [required, String] :pipeline_identifier
|
|
2180
|
+
# The ARN of the telemetry pipeline to update.
|
|
2181
|
+
#
|
|
2182
|
+
# @option params [required, Types::TelemetryPipelineConfiguration] :configuration
|
|
2183
|
+
# The new configuration for the telemetry pipeline, including updated
|
|
2184
|
+
# sources, processors, and destinations.
|
|
2185
|
+
#
|
|
2186
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2187
|
+
#
|
|
2188
|
+
# @example Request syntax with placeholder values
|
|
2189
|
+
#
|
|
2190
|
+
# resp = client.update_telemetry_pipeline({
|
|
2191
|
+
# pipeline_identifier: "TelemetryPipelineIdentifier", # required
|
|
2192
|
+
# configuration: { # required
|
|
2193
|
+
# body: "TelemetryPipelineConfigurationBody", # required
|
|
2194
|
+
# },
|
|
2195
|
+
# })
|
|
2196
|
+
#
|
|
2197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/UpdateTelemetryPipeline AWS API Documentation
|
|
2198
|
+
#
|
|
2199
|
+
# @overload update_telemetry_pipeline(params = {})
|
|
2200
|
+
# @param [Hash] params ({})
|
|
2201
|
+
def update_telemetry_pipeline(params = {}, options = {})
|
|
2202
|
+
req = build_request(:update_telemetry_pipeline, params)
|
|
2203
|
+
req.send_request(options)
|
|
2204
|
+
end
|
|
2205
|
+
|
|
2206
|
+
# Updates an existing telemetry rule in your account. If multiple users
|
|
2207
|
+
# attempt to modify the same telemetry rule simultaneously, a
|
|
2208
|
+
# ConflictException is returned to provide specific error information
|
|
2209
|
+
# for concurrent modification scenarios.
|
|
1546
2210
|
#
|
|
1547
2211
|
# @option params [required, String] :rule_identifier
|
|
1548
2212
|
# The identifier (name or ARN) of the telemetry rule to update.
|
|
@@ -1559,8 +2223,9 @@ module Aws::ObservabilityAdmin
|
|
|
1559
2223
|
# resp = client.update_telemetry_rule({
|
|
1560
2224
|
# rule_identifier: "RuleIdentifier", # required
|
|
1561
2225
|
# rule: { # required
|
|
1562
|
-
# resource_type: "AWS::EC2::Instance", # accepts AWS::EC2::Instance, AWS::EC2::VPC, AWS::Lambda::Function
|
|
2226
|
+
# 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
|
|
1563
2227
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
2228
|
+
# 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
|
|
1564
2229
|
# destination_configuration: {
|
|
1565
2230
|
# destination_type: "cloud-watch-logs", # accepts cloud-watch-logs
|
|
1566
2231
|
# destination_pattern: "String",
|
|
@@ -1570,6 +2235,63 @@ module Aws::ObservabilityAdmin
|
|
|
1570
2235
|
# traffic_type: "String",
|
|
1571
2236
|
# max_aggregation_interval: 1,
|
|
1572
2237
|
# },
|
|
2238
|
+
# cloudtrail_parameters: {
|
|
2239
|
+
# advanced_event_selectors: [ # required
|
|
2240
|
+
# {
|
|
2241
|
+
# name: "String",
|
|
2242
|
+
# field_selectors: [ # required
|
|
2243
|
+
# {
|
|
2244
|
+
# field: "String", # required
|
|
2245
|
+
# equals: ["String"],
|
|
2246
|
+
# starts_with: ["String"],
|
|
2247
|
+
# ends_with: ["String"],
|
|
2248
|
+
# not_equals: ["String"],
|
|
2249
|
+
# not_starts_with: ["String"],
|
|
2250
|
+
# not_ends_with: ["String"],
|
|
2251
|
+
# },
|
|
2252
|
+
# ],
|
|
2253
|
+
# },
|
|
2254
|
+
# ],
|
|
2255
|
+
# },
|
|
2256
|
+
# elb_load_balancer_logging_parameters: {
|
|
2257
|
+
# output_format: "plain", # accepts plain, json
|
|
2258
|
+
# field_delimiter: "String",
|
|
2259
|
+
# },
|
|
2260
|
+
# waf_logging_parameters: {
|
|
2261
|
+
# redacted_fields: [
|
|
2262
|
+
# {
|
|
2263
|
+
# single_header: {
|
|
2264
|
+
# name: "SingleHeaderNameString",
|
|
2265
|
+
# },
|
|
2266
|
+
# uri_path: "String",
|
|
2267
|
+
# query_string: "String",
|
|
2268
|
+
# method: "String",
|
|
2269
|
+
# },
|
|
2270
|
+
# ],
|
|
2271
|
+
# logging_filter: {
|
|
2272
|
+
# filters: [
|
|
2273
|
+
# {
|
|
2274
|
+
# behavior: "KEEP", # accepts KEEP, DROP
|
|
2275
|
+
# requirement: "MEETS_ALL", # accepts MEETS_ALL, MEETS_ANY
|
|
2276
|
+
# conditions: [
|
|
2277
|
+
# {
|
|
2278
|
+
# action_condition: {
|
|
2279
|
+
# action: "ALLOW", # accepts ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT
|
|
2280
|
+
# },
|
|
2281
|
+
# label_name_condition: {
|
|
2282
|
+
# label_name: "LabelNameConditionLabelNameString",
|
|
2283
|
+
# },
|
|
2284
|
+
# },
|
|
2285
|
+
# ],
|
|
2286
|
+
# },
|
|
2287
|
+
# ],
|
|
2288
|
+
# default_behavior: "KEEP", # accepts KEEP, DROP
|
|
2289
|
+
# },
|
|
2290
|
+
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
2291
|
+
# },
|
|
2292
|
+
# log_delivery_parameters: {
|
|
2293
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS
|
|
2294
|
+
# },
|
|
1573
2295
|
# },
|
|
1574
2296
|
# scope: "String",
|
|
1575
2297
|
# selection_criteria: "String",
|
|
@@ -1612,8 +2334,9 @@ module Aws::ObservabilityAdmin
|
|
|
1612
2334
|
# resp = client.update_telemetry_rule_for_organization({
|
|
1613
2335
|
# rule_identifier: "RuleIdentifier", # required
|
|
1614
2336
|
# rule: { # required
|
|
1615
|
-
# resource_type: "AWS::EC2::Instance", # accepts AWS::EC2::Instance, AWS::EC2::VPC, AWS::Lambda::Function
|
|
2337
|
+
# 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
|
|
1616
2338
|
# telemetry_type: "Logs", # required, accepts Logs, Metrics, Traces
|
|
2339
|
+
# 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
|
|
1617
2340
|
# destination_configuration: {
|
|
1618
2341
|
# destination_type: "cloud-watch-logs", # accepts cloud-watch-logs
|
|
1619
2342
|
# destination_pattern: "String",
|
|
@@ -1623,6 +2346,63 @@ module Aws::ObservabilityAdmin
|
|
|
1623
2346
|
# traffic_type: "String",
|
|
1624
2347
|
# max_aggregation_interval: 1,
|
|
1625
2348
|
# },
|
|
2349
|
+
# cloudtrail_parameters: {
|
|
2350
|
+
# advanced_event_selectors: [ # required
|
|
2351
|
+
# {
|
|
2352
|
+
# name: "String",
|
|
2353
|
+
# field_selectors: [ # required
|
|
2354
|
+
# {
|
|
2355
|
+
# field: "String", # required
|
|
2356
|
+
# equals: ["String"],
|
|
2357
|
+
# starts_with: ["String"],
|
|
2358
|
+
# ends_with: ["String"],
|
|
2359
|
+
# not_equals: ["String"],
|
|
2360
|
+
# not_starts_with: ["String"],
|
|
2361
|
+
# not_ends_with: ["String"],
|
|
2362
|
+
# },
|
|
2363
|
+
# ],
|
|
2364
|
+
# },
|
|
2365
|
+
# ],
|
|
2366
|
+
# },
|
|
2367
|
+
# elb_load_balancer_logging_parameters: {
|
|
2368
|
+
# output_format: "plain", # accepts plain, json
|
|
2369
|
+
# field_delimiter: "String",
|
|
2370
|
+
# },
|
|
2371
|
+
# waf_logging_parameters: {
|
|
2372
|
+
# redacted_fields: [
|
|
2373
|
+
# {
|
|
2374
|
+
# single_header: {
|
|
2375
|
+
# name: "SingleHeaderNameString",
|
|
2376
|
+
# },
|
|
2377
|
+
# uri_path: "String",
|
|
2378
|
+
# query_string: "String",
|
|
2379
|
+
# method: "String",
|
|
2380
|
+
# },
|
|
2381
|
+
# ],
|
|
2382
|
+
# logging_filter: {
|
|
2383
|
+
# filters: [
|
|
2384
|
+
# {
|
|
2385
|
+
# behavior: "KEEP", # accepts KEEP, DROP
|
|
2386
|
+
# requirement: "MEETS_ALL", # accepts MEETS_ALL, MEETS_ANY
|
|
2387
|
+
# conditions: [
|
|
2388
|
+
# {
|
|
2389
|
+
# action_condition: {
|
|
2390
|
+
# action: "ALLOW", # accepts ALLOW, BLOCK, COUNT, CAPTCHA, CHALLENGE, EXCLUDED_AS_COUNT
|
|
2391
|
+
# },
|
|
2392
|
+
# label_name_condition: {
|
|
2393
|
+
# label_name: "LabelNameConditionLabelNameString",
|
|
2394
|
+
# },
|
|
2395
|
+
# },
|
|
2396
|
+
# ],
|
|
2397
|
+
# },
|
|
2398
|
+
# ],
|
|
2399
|
+
# default_behavior: "KEEP", # accepts KEEP, DROP
|
|
2400
|
+
# },
|
|
2401
|
+
# log_type: "WAF_LOGS", # accepts WAF_LOGS
|
|
2402
|
+
# },
|
|
2403
|
+
# log_delivery_parameters: {
|
|
2404
|
+
# log_types: ["APPLICATION_LOGS"], # accepts APPLICATION_LOGS, USAGE_LOGS
|
|
2405
|
+
# },
|
|
1626
2406
|
# },
|
|
1627
2407
|
# scope: "String",
|
|
1628
2408
|
# selection_criteria: "String",
|
|
@@ -1642,6 +2422,42 @@ module Aws::ObservabilityAdmin
|
|
|
1642
2422
|
req.send_request(options)
|
|
1643
2423
|
end
|
|
1644
2424
|
|
|
2425
|
+
# Validates a pipeline configuration without creating the pipeline. This
|
|
2426
|
+
# operation checks the configuration for syntax errors and compatibility
|
|
2427
|
+
# issues.
|
|
2428
|
+
#
|
|
2429
|
+
# @option params [required, Types::TelemetryPipelineConfiguration] :configuration
|
|
2430
|
+
# The pipeline configuration to validate for syntax and compatibility.
|
|
2431
|
+
#
|
|
2432
|
+
# @return [Types::ValidateTelemetryPipelineConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2433
|
+
#
|
|
2434
|
+
# * {Types::ValidateTelemetryPipelineConfigurationOutput#errors #errors} => Array<Types::ValidationError>
|
|
2435
|
+
#
|
|
2436
|
+
# @example Request syntax with placeholder values
|
|
2437
|
+
#
|
|
2438
|
+
# resp = client.validate_telemetry_pipeline_configuration({
|
|
2439
|
+
# configuration: { # required
|
|
2440
|
+
# body: "TelemetryPipelineConfigurationBody", # required
|
|
2441
|
+
# },
|
|
2442
|
+
# })
|
|
2443
|
+
#
|
|
2444
|
+
# @example Response structure
|
|
2445
|
+
#
|
|
2446
|
+
# resp.errors #=> Array
|
|
2447
|
+
# resp.errors[0].message #=> String
|
|
2448
|
+
# resp.errors[0].reason #=> String
|
|
2449
|
+
# resp.errors[0].field_map #=> Hash
|
|
2450
|
+
# resp.errors[0].field_map["String"] #=> String
|
|
2451
|
+
#
|
|
2452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ValidateTelemetryPipelineConfiguration AWS API Documentation
|
|
2453
|
+
#
|
|
2454
|
+
# @overload validate_telemetry_pipeline_configuration(params = {})
|
|
2455
|
+
# @param [Hash] params ({})
|
|
2456
|
+
def validate_telemetry_pipeline_configuration(params = {}, options = {})
|
|
2457
|
+
req = build_request(:validate_telemetry_pipeline_configuration, params)
|
|
2458
|
+
req.send_request(options)
|
|
2459
|
+
end
|
|
2460
|
+
|
|
1645
2461
|
# @!endgroup
|
|
1646
2462
|
|
|
1647
2463
|
# @param params ({})
|
|
@@ -1660,7 +2476,7 @@ module Aws::ObservabilityAdmin
|
|
|
1660
2476
|
tracer: tracer
|
|
1661
2477
|
)
|
|
1662
2478
|
context[:gem_name] = 'aws-sdk-observabilityadmin'
|
|
1663
|
-
context[:gem_version] = '1.
|
|
2479
|
+
context[:gem_version] = '1.17.0'
|
|
1664
2480
|
Seahorse::Client::Request.new(handlers, context)
|
|
1665
2481
|
end
|
|
1666
2482
|
|