Learn R Programming

paws.security.identity (version 0.1.12)

fms_get_policy: Returns information about the specified AWS Firewall Manager policy

Description

Returns information about the specified AWS Firewall Manager policy.

Usage

fms_get_policy(PolicyId)

Value

A list with the following syntax:

list(
  Policy = list(
    PolicyId = "string",
    PolicyName = "string",
    PolicyUpdateToken = "string",
    SecurityServicePolicyData = list(
      Type = "WAF"|"WAFV2"|"SHIELD_ADVANCED"|"SECURITY_GROUPS_COMMON"|"SECURITY_GROUPS_CONTENT_AUDIT"|"SECURITY_GROUPS_USAGE_AUDIT"|"NETWORK_FIREWALL",
      ManagedServiceData = "string"
    ),
    ResourceType = "string",
    ResourceTypeList = list(
      "string"
    ),
    ResourceTags = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    ExcludeResourceTags = TRUE|FALSE,
    RemediationEnabled = TRUE|FALSE,
    IncludeMap = list(
      list(
        "string"
      )
    ),
    ExcludeMap = list(
      list(
        "string"
      )
    )
  ),
  PolicyArn = "string"
)

Arguments

PolicyId

[required] The ID of the AWS Firewall Manager policy that you want the details for.

Request syntax

svc$get_policy(
  PolicyId = "string"
)