Interface CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationTelemetryRule
@Stability(Stable)
public static interface CfnOrganizationTelemetryRule.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
static final class
An implementation forCfnOrganizationTelemetryRule.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
@Stability(Stable) static CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty.Builder builder()
-