Class: Aws::WorkSpaces::Types::IpRuleItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpaces::Types::IpRuleItem
- Defined in:
- gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb
Overview
Note:
When making an API call, you may pass IpRuleItem data as a hash:
{
ip_rule: "IpRule",
rule_desc: "IpRuleDesc",
}
Describes a rule for an IP access control group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_rule ⇒ String
The IP address range, in CIDR notation.
-
#rule_desc ⇒ String
The description.
Instance Attribute Details
#ip_rule ⇒ String
The IP address range, in CIDR notation.
2639 2640 2641 2642 2643 2644 |
# File 'gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb', line 2639 class IpRuleItem < Struct.new( :ip_rule, :rule_desc) SENSITIVE = [] include Aws::Structure end |
#rule_desc ⇒ String
The description.
2639 2640 2641 2642 2643 2644 |
# File 'gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb', line 2639 class IpRuleItem < Struct.new( :ip_rule, :rule_desc) SENSITIVE = [] include Aws::Structure end |