Class: Aws::EC2::Types::IpRange

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass IpRange data as a hash:

{
  cidr_ip: "String",
}

Describes an IPv4 range.

Instance Attribute Summary collapse

Instance Attribute Details

#cidr_ipString

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.

Returns:

  • (String)


15797
15798
15799
15800
# File 'lib/aws-sdk-ec2/types.rb', line 15797

class IpRange < Struct.new(
  :cidr_ip)
  include Aws::Structure
end