Class: Aws::EC2::Types::UnassignPrivateIpAddressesRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EC2::Types::UnassignPrivateIpAddressesRequest
 
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Contains the parameters for UnassignPrivateIpAddresses.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #ipv_4_prefixes  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The IPv4 prefixes to unassign from the network interface. 
- 
  
    
      #network_interface_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the network interface. 
- 
  
    
      #private_ip_addresses  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The secondary private IP addresses to unassign from the network interface. 
Instance Attribute Details
#ipv_4_prefixes ⇒ Array<String>
The IPv4 prefixes to unassign from the network interface.
| 77396 77397 77398 77399 77400 77401 77402 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 77396 class UnassignPrivateIpAddressesRequest < Struct.new( :ipv_4_prefixes, :network_interface_id, :private_ip_addresses) SENSITIVE = [] include Aws::Structure end | 
#network_interface_id ⇒ String
The ID of the network interface.
| 77396 77397 77398 77399 77400 77401 77402 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 77396 class UnassignPrivateIpAddressesRequest < Struct.new( :ipv_4_prefixes, :network_interface_id, :private_ip_addresses) SENSITIVE = [] include Aws::Structure end | 
#private_ip_addresses ⇒ Array<String>
The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.
| 77396 77397 77398 77399 77400 77401 77402 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 77396 class UnassignPrivateIpAddressesRequest < Struct.new( :ipv_4_prefixes, :network_interface_id, :private_ip_addresses) SENSITIVE = [] include Aws::Structure end |