interface ConnectionLogOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnClientVpnEndpointPropsMixin_ConnectionLogOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnClientVpnEndpointPropsMixin » ConnectionLogOptionsProperty |
Describes the client connection logging options for the Client VPN endpoint.
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/cfn-property-mixins';
const connectionLogOptionsProperty: ec2.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty = {
cloudwatchLogGroup: 'cloudwatchLogGroup',
cloudwatchLogStream: 'cloudwatchLogStream',
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| cloudwatch | string | The name of the CloudWatch Logs log group. |
| cloudwatch | string | The name of the CloudWatch Logs log stream to which the connection data is published. |
| enabled? | boolean | IResolvable | Indicates whether connection logging is enabled. |
cloudwatchLogGroup?
Type:
string
(optional)
The name of the CloudWatch Logs log group.
Required if connection logging is enabled.
cloudwatchLogStream?
Type:
string
(optional)
The name of the CloudWatch Logs log stream to which the connection data is published.
enabled?
Type:
boolean | IResolvable
(optional)
Indicates whether connection logging is enabled.

.NET
Go
Java
Python
TypeScript