Skip to content

Delete Proxy Rules

networkfirewall_delete_proxy_rules R Documentation

Deletes the specified ProxyRule(s)

Description

Deletes the specified ProxyRule(s). currently attached to a ProxyRuleGroup

Usage

networkfirewall_delete_proxy_rules(ProxyRuleGroupArn,
  ProxyRuleGroupName, Rules)

Arguments

ProxyRuleGroupArn

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

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

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.

Rules

[required] The proxy rule(s) to remove from the existing proxy rule group.

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"
      )
    )
  )
)

Request syntax

svc$delete_proxy_rules(
  ProxyRuleGroupArn = "string",
  ProxyRuleGroupName = "string",
  Rules = list(
    "string"
  )
)