interface ConnectionLogOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnClientVpnEndpointPropsMixin_ConnectionLogOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnClientVpnEndpointPropsMixin.ConnectionLogOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const connectionLogOptionsProperty: ec2_mixins.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