You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::NetworkFirewall::Types::UpdateLoggingConfigurationRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateLoggingConfigurationRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  firewall_arn: "ResourceArn",
  firewall_name: "ResourceName",
  logging_configuration: {
    log_destination_configs: [ # required
      {
        log_type: "ALERT", # required, accepts ALERT, FLOW
        log_destination_type: "S3", # required, accepts S3, CloudWatchLogs, KinesisDataFirehose
        log_destination: { # required
          "HashMapKey" => "HashMapValue",
        },
      },
    ],
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#firewall_arnString

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the firewall.

#firewall_nameString

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.

Returns:

  • (String)

    The descriptive name of the firewall.

#logging_configurationTypes::LoggingConfiguration

Defines how Network Firewall performs logging for a firewall. If you omit this setting, Network Firewall disables logging for the firewall.

Returns: