You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EC2::Types::AttachNetworkInterfaceRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AttachNetworkInterfaceRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  device_index: 1, # required
  dry_run: false,
  instance_id: "InstanceId", # required
  network_interface_id: "NetworkInterfaceId", # required
  network_card_index: 1,
}

Contains the parameters for AttachNetworkInterface.

Instance Attribute Summary collapse

Instance Attribute Details

#device_indexInteger

The index of the device for the network interface attachment.

Returns:

  • (Integer)

    The index of the device for the network interface attachment.

#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)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.

#instance_idString

The ID of the instance.

Returns:

  • (String)

    The ID of the instance.

#network_card_indexInteger

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

Returns:

  • (Integer)

    The index of the network card.

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)

    The ID of the network interface.