Class: Aws::WAF::Types::GetRuleGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetRuleGroupRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetRuleGroupRequest data as a hash:
{
rule_group_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_group_id ⇒ String
The
RuleGroupId
of the RuleGroup that you want to get.
Instance Attribute Details
#rule_group_id ⇒ String
The RuleGroupId
of the RuleGroup that you want to get.
RuleGroupId
is returned by CreateRuleGroup and by ListRuleGroups.
2549 2550 2551 2552 2553 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2549 class GetRuleGroupRequest < Struct.new( :rule_group_id) SENSITIVE = [] include Aws::Structure end |