Class: Aws::SecurityHub::Types::AwsEc2SecurityGroupIpRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEc2SecurityGroupIpRange
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
A range of IPv4 addresses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr_ip ⇒ String
The IPv4 CIDR range.
Instance Attribute Details
#cidr_ip ⇒ String
The IPv4 CIDR range. You can specify either a CIDR range or a source security group, but not both. To specify a single IPv4 address, use the /32 prefix length.
8599 8600 8601 8602 8603 |
# File 'lib/aws-sdk-securityhub/types.rb', line 8599 class AwsEc2SecurityGroupIpRange < Struct.new( :cidr_ip) SENSITIVE = [] include Aws::Structure end |