interface TelemetryDestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryRule.TelemetryDestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryRule_TelemetryDestinationConfigurationProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryRule.TelemetryDestinationConfigurationProperty |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryRule.TelemetryDestinationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryRule » TelemetryDestinationConfigurationProperty |
Configuration specifying where and how telemetry data should be delivered for AWS resources.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const telemetryDestinationConfigurationProperty: observabilityadmin.CfnTelemetryRule.TelemetryDestinationConfigurationProperty = {
destinationPattern: 'destinationPattern',
destinationType: 'destinationType',
retentionInDays: 123,
vpcFlowLogParameters: {
logFormat: 'logFormat',
maxAggregationInterval: 123,
trafficType: 'trafficType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The pattern used to generate the destination path or name, supporting macros like |
| destination | string | The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3"). |
| retention | number | The number of days to retain the telemetry data in the destination. |
| vpc | IResolvable | VPCFlow | Configuration parameters specific to VPC Flow Logs when VPC is the resource type. |
destinationPattern?
Type:
string
(optional)
The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
destinationType?
Type:
string
(optional)
The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
retentionInDays?
Type:
number
(optional)
The number of days to retain the telemetry data in the destination.
vpcFlowLogParameters?
Type:
IResolvable | VPCFlow
(optional)
Configuration parameters specific to VPC Flow Logs when VPC is the resource type.

.NET
Go
Java
Python
TypeScript