modify_attribute

EC2.NetworkInterface.modify_attribute(**kwargs)

Modifies the specified network interface attribute. You can specify only one attribute at a time. You can use this action to attach and detach security groups from an existing EC2 instance.

See also: AWS API Documentation

Request Syntax

response = network_interface.modify_attribute(
    Attachment={
        'AttachmentId': 'string',
        'DeleteOnTermination': True|False
    },
    Description={
        'Value': 'string'
    },
    DryRun=True|False,
    Groups=[
        'string',
    ],
    SourceDestCheck={
        'Value': True|False
    },
    EnaSrdSpecification={
        'EnaSrdEnabled': True|False,
        'EnaSrdUdpSpecification': {
            'EnaSrdUdpEnabled': True|False
        }
    }
)
Parameters
  • Attachment (dict) --

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

    • AttachmentId (string) --

      The ID of the network interface attachment.

    • DeleteOnTermination (boolean) --

      Indicates whether the network interface is deleted when the instance is terminated.

  • Description (dict) --

    A description for the network interface.

    • Value (string) --

      The attribute value. The value is case-sensitive.

  • DryRun (boolean) -- 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 .
  • Groups (list) --

    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.

    • (string) --
  • SourceDestCheck (dict) --

    Enable or disable source/destination checks, which ensure that the instance is either the source or the destination of any traffic that it receives. If the value is true , source/destination checks are enabled; otherwise, they are disabled. The default value is true . You must disable source/destination checks if the instance runs services such as network address translation, routing, or firewalls.

    • Value (boolean) --

      The attribute value. The valid values are true or false .

  • EnaSrdSpecification (dict) --

    Updates the ENA Express configuration for the network interface that’s attached to the instance.

    • EnaSrdEnabled (boolean) --

      Indicates whether ENA Express is enabled for the network interface.

    • EnaSrdUdpSpecification (dict) --

      Configures ENA Express for UDP network traffic.

      • EnaSrdUdpEnabled (boolean) --

        Indicates whether UDP traffic uses ENA Express. To specify this setting, you must first enable ENA Express.

Returns

None