Skip to content

Describe Proxy Rule

networkfirewall_describe_proxy_rule R Documentation

Returns the data objects for the specified proxy configuration for the specified proxy rule group

Description

Returns the data objects for the specified proxy configuration for the specified proxy rule group.

Usage

networkfirewall_describe_proxy_rule(ProxyRuleName, ProxyRuleGroupName,
  ProxyRuleGroupArn)

Arguments

ProxyRuleName

[required] The descriptive name of the proxy rule. You can't change the name of a proxy rule after you create it.

ProxyRuleGroupName

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

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

ProxyRuleGroupArn

The Amazon Resource Name (ARN) of a proxy rule group.

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

Value

A list with the following syntax:

list(
  ProxyRule = list(
    ProxyRuleName = "string",
    Description = "string",
    Action = "ALLOW"|"DENY"|"ALERT",
    Conditions = list(
      list(
        ConditionOperator = "string",
        ConditionKey = "string",
        ConditionValues = list(
          "string"
        )
      )
    )
  ),
  UpdateToken = "string"
)

Request syntax

svc$describe_proxy_rule(
  ProxyRuleName = "string",
  ProxyRuleGroupName = "string",
  ProxyRuleGroupArn = "string"
)