Show / Hide Table of Contents

Class CfnLoggingConfiguration.LoggingConfigurationProperty

Defines how AWS Network Firewall performs logging for a Firewall .

Inheritance
object
CfnLoggingConfiguration.LoggingConfigurationProperty
Implements
CfnLoggingConfiguration.ILoggingConfigurationProperty
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.NetworkFirewall
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLoggingConfiguration.LoggingConfigurationProperty : CfnLoggingConfiguration.ILoggingConfigurationProperty
Syntax (vb)
Public Class CfnLoggingConfiguration.LoggingConfigurationProperty Implements CfnLoggingConfiguration.ILoggingConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-loggingconfiguration-loggingconfiguration.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.NetworkFirewall;

             var loggingConfigurationProperty = new LoggingConfigurationProperty {
                 LogDestinationConfigs = new [] { new LogDestinationConfigProperty {
                     LogDestination = new Dictionary<string, string> {
                         { "logDestinationKey", "logDestination" }
                     },
                     LogDestinationType = "logDestinationType",
                     LogType = "logType"
                 } }
             };

Synopsis

Constructors

LoggingConfigurationProperty()

Defines how AWS Network Firewall performs logging for a Firewall .

Properties

LogDestinationConfigs

Defines the logging destinations for the logs for a firewall.

Constructors

LoggingConfigurationProperty()

Defines how AWS Network Firewall performs logging for a Firewall .

public LoggingConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-loggingconfiguration-loggingconfiguration.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.NetworkFirewall;

             var loggingConfigurationProperty = new LoggingConfigurationProperty {
                 LogDestinationConfigs = new [] { new LogDestinationConfigProperty {
                     LogDestination = new Dictionary<string, string> {
                         { "logDestinationKey", "logDestination" }
                     },
                     LogDestinationType = "logDestinationType",
                     LogType = "logType"
                 } }
             };

Properties

LogDestinationConfigs

Defines the logging destinations for the logs for a firewall.

public object LogDestinationConfigs { get; set; }
Property Value

object

Remarks

Network Firewall generates logs for stateful rule groups.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-loggingconfiguration-loggingconfiguration.html#cfn-networkfirewall-loggingconfiguration-loggingconfiguration-logdestinationconfigs

Implements

CfnLoggingConfiguration.ILoggingConfigurationProperty
Back to top Generated by DocFX