Describe Logging Configuration
| networkfirewall_describe_logging_configuration | R Documentation |
Returns the logging configuration for the specified firewall¶
Description¶
Returns the logging configuration for the specified firewall.
Usage¶
Arguments¶
FirewallArnThe Amazon Resource Name (ARN) of the firewall.
You must specify the ARN or the name, and you can specify both.
FirewallNameThe descriptive name of the firewall. You can't change the name of a firewall after you create it.
You must specify the ARN or the name, and you can specify both.
Value¶
A list with the following syntax:
list(
FirewallArn = "string",
LoggingConfiguration = list(
LogDestinationConfigs = list(
list(
LogType = "ALERT"|"FLOW"|"TLS",
LogDestinationType = "S3"|"CloudWatchLogs"|"KinesisDataFirehose",
LogDestination = list(
"string"
)
)
)
)
)