Class: Aws::EC2::Types::AllocateAddressRequest

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 AllocateAddressRequest data as a hash:

{
  domain: "vpc", # accepts vpc, standard
  address: "String",
  public_ipv_4_pool: "String",
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

[EC2-VPC] The Elastic IP address to recover or an IPv4 address from an address pool.

Returns:

  • (String)


387
388
389
390
391
392
393
# File 'lib/aws-sdk-ec2/types.rb', line 387

class AllocateAddressRequest < Struct.new(
  :domain,
  :address,
  :public_ipv_4_pool,
  :dry_run)
  include Aws::Structure
end

#domainString

Set to ‘vpc` to allocate the address for use with instances in a VPC.

Default: The address is for use with instances in EC2-Classic.

Returns:

  • (String)


387
388
389
390
391
392
393
# File 'lib/aws-sdk-ec2/types.rb', line 387

class AllocateAddressRequest < Struct.new(
  :domain,
  :address,
  :public_ipv_4_pool,
  :dry_run)
  include Aws::Structure
end

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


387
388
389
390
391
392
393
# File 'lib/aws-sdk-ec2/types.rb', line 387

class AllocateAddressRequest < Struct.new(
  :domain,
  :address,
  :public_ipv_4_pool,
  :dry_run)
  include Aws::Structure
end

#public_ipv_4_poolString

The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool. To specify a specific address from the address pool, use the ‘Address` parameter instead.

Returns:

  • (String)


387
388
389
390
391
392
393
# File 'lib/aws-sdk-ec2/types.rb', line 387

class AllocateAddressRequest < Struct.new(
  :domain,
  :address,
  :public_ipv_4_pool,
  :dry_run)
  include Aws::Structure
end