interface VpnTunnelLogOptionsSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPNConnection_VpnTunnelLogOptionsSpecificationProperty |
Java | software.amazon.awscdk.services.ec2.CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty |
Python | aws_cdk.aws_ec2.CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPNConnection » VpnTunnelLogOptionsSpecificationProperty |
Options for logging VPN tunnel activity.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const vpnTunnelLogOptionsSpecificationProperty: ec2.CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty = {
cloudwatchLogOptions: {
bgpLogEnabled: false,
bgpLogGroupArn: 'bgpLogGroupArn',
bgpLogOutputFormat: 'bgpLogOutputFormat',
logEnabled: false,
logGroupArn: 'logGroupArn',
logOutputFormat: 'logOutputFormat',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloudwatch | IResolvable | Cloudwatch | Options for sending VPN tunnel logs to CloudWatch. |
cloudwatchLogOptions?
Type:
IResolvable | Cloudwatch
(optional)
Options for sending VPN tunnel logs to CloudWatch.

.NET
Go
Java
Python
TypeScript