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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnTelemetryRule.TelemetryDestinationConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationPattern
Pattern for telemetry data destination.- See Also:
-
getDestinationType
Type of telemetry destination.- See Also:
-
getRetentionInDays
Number of days to retain the telemetry data in the specified destination.- See Also:
-
getVpcFlowLogParameters
Telemetry parameters for VPC Flow logs.- See Also:
-
builder
@Stability(Stable) static CfnTelemetryRule.TelemetryDestinationConfigurationProperty.Builder builder()
-