Show / Hide Table of Contents

Class CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty

Options for logging VPN tunnel activity.

Inheritance
object
CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty
Implements
CfnVPNConnection.IVpnTunnelLogOptionsSpecificationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty : CfnVPNConnection.IVpnTunnelLogOptionsSpecificationProperty
Syntax (vb)
Public Class CfnVPNConnection.VpnTunnelLogOptionsSpecificationProperty Implements CfnVPNConnection.IVpnTunnelLogOptionsSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunnellogoptionsspecification.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var vpnTunnelLogOptionsSpecificationProperty = new VpnTunnelLogOptionsSpecificationProperty {
                 CloudwatchLogOptions = new CloudwatchLogOptionsSpecificationProperty {
                     LogEnabled = false,
                     LogGroupArn = "logGroupArn",
                     LogOutputFormat = "logOutputFormat"
                 }
             };

Synopsis

Constructors

VpnTunnelLogOptionsSpecificationProperty()

Options for logging VPN tunnel activity.

Properties

CloudwatchLogOptions

Options for sending VPN tunnel logs to CloudWatch.

Constructors

VpnTunnelLogOptionsSpecificationProperty()

Options for logging VPN tunnel activity.

public VpnTunnelLogOptionsSpecificationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunnellogoptionsspecification.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var vpnTunnelLogOptionsSpecificationProperty = new VpnTunnelLogOptionsSpecificationProperty {
                 CloudwatchLogOptions = new CloudwatchLogOptionsSpecificationProperty {
                     LogEnabled = false,
                     LogGroupArn = "logGroupArn",
                     LogOutputFormat = "logOutputFormat"
                 }
             };

Properties

CloudwatchLogOptions

Options for sending VPN tunnel logs to CloudWatch.

public object? CloudwatchLogOptions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunnellogoptionsspecification.html#cfn-ec2-vpnconnection-vpntunnellogoptionsspecification-cloudwatchlogoptions

Type union: either IResolvable or CfnVPNConnection.ICloudwatchLogOptionsSpecificationProperty

Implements

CfnVPNConnection.IVpnTunnelLogOptionsSpecificationProperty
Back to top Generated by DocFX