Class: Aws::EC2::Types::ModifyNetworkInterfaceAttributeRequest

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

{
  attachment: {
    attachment_id: "String",
    delete_on_termination: false,
  },
  description: "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
  dry_run: false,
  groups: ["String"],
  network_interface_id: "String", # required
  source_dest_check: {
    value: false,
  },
}

Contains the parameters for ModifyNetworkInterfaceAttribute.

Instance Attribute Summary collapse

Instance Attribute Details

#attachmentTypes::NetworkInterfaceAttachmentChanges

Information about the interface attachment. If modifying the ‘delete on termination’ attribute, you must specify the ID of the interface attachment.



26127
26128
26129
26130
26131
26132
26133
26134
26135
# File 'lib/aws-sdk-ec2/types.rb', line 26127

class ModifyNetworkInterfaceAttributeRequest < Struct.new(
  :attachment,
  :description,
  :dry_run,
  :groups,
  :network_interface_id,
  :source_dest_check)
  include Aws::Structure
end

#descriptionTypes::AttributeValue

A description for the network interface.



26127
26128
26129
26130
26131
26132
26133
26134
26135
# File 'lib/aws-sdk-ec2/types.rb', line 26127

class ModifyNetworkInterfaceAttributeRequest < Struct.new(
  :attachment,
  :description,
  :dry_run,
  :groups,
  :network_interface_id,
  :source_dest_check)
  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)


26127
26128
26129
26130
26131
26132
26133
26134
26135
# File 'lib/aws-sdk-ec2/types.rb', line 26127

class ModifyNetworkInterfaceAttributeRequest < Struct.new(
  :attachment,
  :description,
  :dry_run,
  :groups,
  :network_interface_id,
  :source_dest_check)
  include Aws::Structure
end

#groupsArray<String>

Changes the security groups for the network interface. The new set of groups you specify replaces the current set. You must specify at least one group, even if it’s just the default security group in the VPC. You must specify the ID of the security group, not the name.

Returns:

  • (Array<String>)


26127
26128
26129
26130
26131
26132
26133
26134
26135
# File 'lib/aws-sdk-ec2/types.rb', line 26127

class ModifyNetworkInterfaceAttributeRequest < Struct.new(
  :attachment,
  :description,
  :dry_run,
  :groups,
  :network_interface_id,
  :source_dest_check)
  include Aws::Structure
end

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)


26127
26128
26129
26130
26131
26132
26133
26134
26135
# File 'lib/aws-sdk-ec2/types.rb', line 26127

class ModifyNetworkInterfaceAttributeRequest < Struct.new(
  :attachment,
  :description,
  :dry_run,
  :groups,
  :network_interface_id,
  :source_dest_check)
  include Aws::Structure
end

#source_dest_checkTypes::AttributeBooleanValue

Indicates whether source/destination checking is enabled. A value of ‘true` means checking is enabled, and `false` means checking is disabled. This value must be `false` for a NAT instance to perform NAT. For more information, see [NAT Instances] in the *Amazon Virtual Private Cloud User Guide*.

[1]: docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html



26127
26128
26129
26130
26131
26132
26133
26134
26135
# File 'lib/aws-sdk-ec2/types.rb', line 26127

class ModifyNetworkInterfaceAttributeRequest < Struct.new(
  :attachment,
  :description,
  :dry_run,
  :groups,
  :network_interface_id,
  :source_dest_check)
  include Aws::Structure
end