Describe Firewall
| networkfirewall_describe_firewall | R Documentation |
Returns the data objects for the specified firewall¶
Description¶
Returns the data objects for the specified firewall.
Usage¶
Arguments¶
FirewallNameThe descriptive name of the firewall. You can't change the name of a firewall after you create it.
You must specify the ARN or the name, and you can specify both.
FirewallArnThe Amazon Resource Name (ARN) of the firewall.
You must specify the ARN or the name, and you can specify both.
Value¶
A list with the following syntax:
list(
UpdateToken = "string",
Firewall = list(
FirewallName = "string",
FirewallArn = "string",
FirewallPolicyArn = "string",
VpcId = "string",
SubnetMappings = list(
list(
SubnetId = "string",
IPAddressType = "DUALSTACK"|"IPV4"|"IPV6"
)
),
DeleteProtection = TRUE|FALSE,
SubnetChangeProtection = TRUE|FALSE,
FirewallPolicyChangeProtection = TRUE|FALSE,
Description = "string",
FirewallId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
EncryptionConfiguration = list(
KeyId = "string",
Type = "CUSTOMER_KMS"|"AWS_OWNED_KMS_KEY"
)
),
FirewallStatus = list(
Status = "PROVISIONING"|"DELETING"|"READY",
ConfigurationSyncStateSummary = "PENDING"|"IN_SYNC"|"CAPACITY_CONSTRAINED",
SyncStates = list(
list(
Attachment = list(
SubnetId = "string",
EndpointId = "string",
Status = "CREATING"|"DELETING"|"FAILED"|"ERROR"|"SCALING"|"READY",
StatusMessage = "string"
),
Config = list(
list(
SyncStatus = "PENDING"|"IN_SYNC"|"CAPACITY_CONSTRAINED",
UpdateToken = "string"
)
)
)
),
CapacityUsageSummary = list(
CIDRs = list(
AvailableCIDRCount = 123,
UtilizedCIDRCount = 123,
IPSetReferences = list(
list(
ResolvedCIDRCount = 123
)
)
)
)
)
)