interface TelemetryDestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_observabilityadmin.CfnOrganizationTelemetryRule.TelemetryDestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationTelemetryRule_TelemetryDestinationConfigurationProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationTelemetryRule.TelemetryDestinationConfigurationProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationTelemetryRule.TelemetryDestinationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationTelemetryRule » TelemetryDestinationConfigurationProperty |
The destination configuration for telemetry data.
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.CfnOrganizationTelemetryRule.TelemetryDestinationConfigurationProperty = {
destinationPattern: 'destinationPattern',
destinationType: 'destinationType',
retentionInDays: 123,
vpcFlowLogParameters: {
logFormat: 'logFormat',
maxAggregationInterval: 123,
trafficType: 'trafficType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | Pattern for telemetry data destination. |
| destination | string | Type of telemetry destination. |
| retention | number | Number of days to retain the telemetry data in the specified destination. |
| vpc | IResolvable | VPCFlow | Telemetry parameters for VPC Flow logs. |
destinationPattern?
Type:
string
(optional)
Pattern for telemetry data destination.
destinationType?
Type:
string
(optional)
Type of telemetry destination.
retentionInDays?
Type:
number
(optional)
Number of days to retain the telemetry data in the specified destination.
vpcFlowLogParameters?
Type:
IResolvable | VPCFlow
(optional)
Telemetry parameters for VPC Flow logs.

.NET
Go
Java
Python
TypeScript