Class: Aws::EC2::Types::IpRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::IpRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes an IPv4 range.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr_ip ⇒ String
The IPv4 CIDR range.
-
#description ⇒ String
A description for the security group rule that references this IPv4 address range.
Instance Attribute Details
#cidr_ip ⇒ String
The IPv4 CIDR range. You can either specify a CIDR range or a source security group, not both. To specify a single IPv4 address, use the /32 prefix length.
41475 41476 41477 41478 41479 41480 |
# File 'lib/aws-sdk-ec2/types.rb', line 41475 class IpRange < Struct.new( :cidr_ip, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description for the security group rule that references this IPv4 address range.
Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@+=&;{\}!$*
41475 41476 41477 41478 41479 41480 |
# File 'lib/aws-sdk-ec2/types.rb', line 41475 class IpRange < Struct.new( :cidr_ip, :description) SENSITIVE = [] include Aws::Structure end |