Class: Aws::NetworkFirewall::Types::DeleteFirewallPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::DeleteFirewallPolicyRequest
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
Note:
When making an API call, you may pass DeleteFirewallPolicyRequest data as a hash:
{
firewall_policy_name: "ResourceName",
firewall_policy_arn: "ResourceArn",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#firewall_policy_arn ⇒ String
The Amazon Resource Name (ARN) of the firewall policy.
-
#firewall_policy_name ⇒ String
The descriptive name of the firewall policy.
Instance Attribute Details
#firewall_policy_arn ⇒ String
The Amazon Resource Name (ARN) of the firewall policy.
You must specify the ARN or the name, and you can specify both.
1016 1017 1018 1019 1020 1021 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 1016 class DeleteFirewallPolicyRequest < Struct.new( :firewall_policy_name, :firewall_policy_arn) SENSITIVE = [] include Aws::Structure end |
#firewall_policy_name ⇒ String
The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.
You must specify the ARN or the name, and you can specify both.
1016 1017 1018 1019 1020 1021 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 1016 class DeleteFirewallPolicyRequest < Struct.new( :firewall_policy_name, :firewall_policy_arn) SENSITIVE = [] include Aws::Structure end |