Class: Aws::EC2::Types::Ipv4PrefixSpecificationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::Ipv4PrefixSpecificationRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass Ipv4PrefixSpecificationRequest data as a hash:
{
ipv_4_prefix: "String",
}
Describes the IPv4 prefix option for a network interface.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ipv_4_prefix ⇒ String
The IPv4 prefix.
Instance Attribute Details
#ipv_4_prefix ⇒ String
The IPv4 prefix. For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.
44190 44191 44192 44193 44194 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 44190 class Ipv4PrefixSpecificationRequest < Struct.new( :ipv_4_prefix) SENSITIVE = [] include Aws::Structure end |