Describe Proxy Rule Group
| networkfirewall_describe_proxy_rule_group | R Documentation |
Returns the data objects for the specified proxy rule group¶
Description¶
Returns the data objects for the specified proxy rule group.
Usage¶
networkfirewall_describe_proxy_rule_group(ProxyRuleGroupName,
ProxyRuleGroupArn)
Arguments¶
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(
ProxyRuleGroup = list(
ProxyRuleGroupName = "string",
ProxyRuleGroupArn = "string",
CreateTime = as.POSIXct(
"2015-01-01"
),
DeleteTime = as.POSIXct(
"2015-01-01"
),
Rules = list(
PreDNS = list(
list(
ProxyRuleName = "string",
Description = "string",
Action = "ALLOW"|"DENY"|"ALERT",
Conditions = list(
list(
ConditionOperator = "string",
ConditionKey = "string",
ConditionValues = list(
"string"
)
)
)
)
),
PreREQUEST = list(
list(
ProxyRuleName = "string",
Description = "string",
Action = "ALLOW"|"DENY"|"ALERT",
Conditions = list(
list(
ConditionOperator = "string",
ConditionKey = "string",
ConditionValues = list(
"string"
)
)
)
)
),
PostRESPONSE = list(
list(
ProxyRuleName = "string",
Description = "string",
Action = "ALLOW"|"DENY"|"ALERT",
Conditions = list(
list(
ConditionOperator = "string",
ConditionKey = "string",
ConditionValues = list(
"string"
)
)
)
)
)
),
Description = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
),
UpdateToken = "string"
)
Request syntax¶
svc$describe_proxy_rule_group(
ProxyRuleGroupName = "string",
ProxyRuleGroupArn = "string"
)