interface VPCFlowLogParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationTelemetryRule_VPCFlowLogParametersProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationTelemetryRule » VPCFlowLogParametersProperty |
Configuration parameters specific to VPC Flow Logs.
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 vPCFlowLogParametersProperty: observabilityadmin.CfnOrganizationTelemetryRule.VPCFlowLogParametersProperty = {
logFormat: 'logFormat',
maxAggregationInterval: 123,
trafficType: 'trafficType',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The format in which VPC Flow Log entries should be logged. |
| max | number | The maximum interval in seconds between the capture of flow log records. |
| traffic | string | The type of traffic to log (ACCEPT, REJECT, or ALL). |
logFormat?
Type:
string
(optional)
The format in which VPC Flow Log entries should be logged.
maxAggregationInterval?
Type:
number
(optional)
The maximum interval in seconds between the capture of flow log records.
trafficType?
Type:
string
(optional)
The type of traffic to log (ACCEPT, REJECT, or ALL).

.NET
Go
Java
Python
TypeScript