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¶
networkfirewall_describe_logging_configuration(FirewallArn,
FirewallName)
Arguments¶
FirewallArn |
The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. |
FirewallName |
The 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"
)
)
)
)
)
Request syntax¶
svc$describe_logging_configuration(
FirewallArn = "string",
FirewallName = "string"
)