Interface CfnTelemetryRule.TelemetryDestinationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTelemetryRule.TelemetryDestinationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTelemetryRule

@Stability(Stable) public static interface CfnTelemetryRule.TelemetryDestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.observabilityadmin.*;
 TelemetryDestinationConfigurationProperty telemetryDestinationConfigurationProperty = TelemetryDestinationConfigurationProperty.builder()
         .destinationPattern("destinationPattern")
         .destinationType("destinationType")
         .retentionInDays(123)
         .vpcFlowLogParameters(VPCFlowLogParametersProperty.builder()
                 .logFormat("logFormat")
                 .maxAggregationInterval(123)
                 .trafficType("trafficType")
                 .build())
         .build();
 

See Also: