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",
  dry_run: false,
}

Contains the parameters for AllocateAddress.

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

[EC2-VPC] The Elastic IP address to recover.

Returns:

  • (String)


252
253
254
255
256
257
# File 'lib/aws-sdk-ec2/types.rb', line 252

class AllocateAddressRequest < Struct.new(
  :domain,
  :address,
  :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)


252
253
254
255
256
257
# File 'lib/aws-sdk-ec2/types.rb', line 252

class AllocateAddressRequest < Struct.new(
  :domain,
  :address,
  :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)


252
253
254
255
256
257
# File 'lib/aws-sdk-ec2/types.rb', line 252

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