Interface CfnTelemetryRule.VPCFlowLogParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTelemetryRule.VPCFlowLogParametersProperty.Jsii$Proxy
- Enclosing class:
CfnTelemetryRule
@Stability(Stable)
public static interface CfnTelemetryRule.VPCFlowLogParametersProperty
extends software.amazon.jsii.JsiiSerializable
Telemetry parameters for VPC Flow logs.
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.*; VPCFlowLogParametersProperty vPCFlowLogParametersProperty = VPCFlowLogParametersProperty.builder() .logFormat("logFormat") .maxAggregationInterval(123) .trafficType("trafficType") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTelemetryRule.VPCFlowLogParametersProperty
static final class
An implementation forCfnTelemetryRule.VPCFlowLogParametersProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The fields to include in the flow log record.default Number
The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record.default String
The type of traffic captured for the flow log.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogFormat
The fields to include in the flow log record.If you omit this parameter, the flow log is created using the default format.
- See Also:
-
getMaxAggregationInterval
The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record.Default is 600s.
- See Also:
-
getTrafficType
The type of traffic captured for the flow log.Default is ALL
- See Also:
-
builder
-