Class: Aws::EC2::Types::IpRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::IpRange
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes an IPv4 address range.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr_ip ⇒ String
The IPv4 address range.
-
#description ⇒ String
A description for the security group rule that references this IPv4 address range.
Instance Attribute Details
#cidr_ip ⇒ String
The IPv4 address range. You can either specify a CIDR block or a source security group, not both. To specify a single IPv4 address, use the /32 prefix length.
44319 44320 44321 44322 44323 44324 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44319 class IpRange < Struct.new( :description, :cidr_ip) 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 ._-:/()#,@[]+=&;{}!$*
44319 44320 44321 44322 44323 44324 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44319 class IpRange < Struct.new( :description, :cidr_ip) SENSITIVE = [] include Aws::Structure end |