Skip to main content

resource_telemetries

Creates, updates, deletes, gets or lists a resource_telemetries resource.

Overview

Nameresource_telemetries
TypeResource
Idaws.observabilityadmin.resource_telemetries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_identifierstringThe account ID which contains the resource managed in telemetry configuration. An example of a valid account ID is 012345678901. (pattern: <code>[0-9]{12}</code>)
last_update_time_stampinteger (int64)The timestamp of the last change to the telemetry configuration for the resource. For example, 1728679196318.
resource_identifierstringThe identifier of the resource, for example for Amazon VPC, it would be vpc-1a2b3c4d5e6f1a2b3.
resource_tagsobjectTags associated with the resource, for example { Name: "ExampleInstance", Environment: "Development" }.
resource_typestringThe type of resource, for example Amazon Web Services::EC2::Instance, or Amazon Web Services::EKS::Cluster, etc. (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, AWS::Bedrock::KnowledgeBase)
telemetry_configuration_stateobjectThe configuration state for the resource, for example { Logs: NotApplicable; Metrics: Enabled; Traces: NotApplicable; }.
telemetry_source_typestringSpecifies the type of telemetry source for a resource, such as EKS cluster logs. (VPC_FLOW_LOGS, ROUTE53_RESOLVER_QUERY_LOGS, EKS_AUDIT_LOGS, EKS_AUTHENTICATOR_LOGS, EKS_CONTROLLER_MANAGER_LOGS, EKS_SCHEDULER_LOGS, EKS_API_LOGS)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resource_telemetryselectregionReturns a list of telemetry configurations for Amazon Web Services resources supported by telemetry config. For more information, see Auditing CloudWatch telemetry configurations.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of telemetry configurations for Amazon Web Services resources supported by telemetry config. For more information, see Auditing CloudWatch telemetry configurations.

SELECT
account_identifier,
last_update_time_stamp,
resource_identifier,
resource_tags,
resource_type,
telemetry_configuration_state,
telemetry_source_type
FROM aws.observabilityadmin.resource_telemetries
WHERE region = '{{ region }}' -- required
;