Class: Aws::WAF::Types::DeleteRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::DeleteRuleRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass DeleteRuleRequest data as a hash:
{
rule_id: "ResourceId", # required
change_token: "ChangeToken", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#rule_id ⇒ String
The
RuleId
of the Rule that you want to delete.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
1661 1662 1663 1664 1665 1666 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1661 class DeleteRuleRequest < Struct.new( :rule_id, :change_token) SENSITIVE = [] include Aws::Structure end |
#rule_id ⇒ String
The RuleId
of the Rule that you want to delete. RuleId
is
returned by CreateRule and by ListRules.
1661 1662 1663 1664 1665 1666 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1661 class DeleteRuleRequest < Struct.new( :rule_id, :change_token) SENSITIVE = [] include Aws::Structure end |