Skip to content

Describe Proxy Configuration

networkfirewall_describe_proxy_configuration R Documentation

Returns the data objects for the specified proxy configuration

Description

Returns the data objects for the specified proxy configuration.

Usage

networkfirewall_describe_proxy_configuration(ProxyConfigurationName,
  ProxyConfigurationArn)

Arguments

ProxyConfigurationName

The descriptive name of the proxy configuration. You can't change the name of a proxy configuration after you create it.

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

ProxyConfigurationArn

The Amazon Resource Name (ARN) of a proxy configuration.

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

Value

A list with the following syntax:

list(
  ProxyConfiguration = list(
    ProxyConfigurationName = "string",
    ProxyConfigurationArn = "string",
    Description = "string",
    CreateTime = as.POSIXct(
      "2015-01-01"
    ),
    DeleteTime = as.POSIXct(
      "2015-01-01"
    ),
    RuleGroups = list(
      list(
        ProxyRuleGroupName = "string",
        ProxyRuleGroupArn = "string",
        Type = "string",
        Priority = 123
      )
    ),
    DefaultRulePhaseActions = list(
      PreDNS = "ALLOW"|"DENY"|"ALERT",
      PreREQUEST = "ALLOW"|"DENY"|"ALERT",
      PostRESPONSE = "ALLOW"|"DENY"|"ALERT"
    ),
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  ),
  UpdateToken = "string"
)

Request syntax

svc$describe_proxy_configuration(
  ProxyConfigurationName = "string",
  ProxyConfigurationArn = "string"
)