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
}
}
)
Information about the interface attachment. If modifying the delete on termination
attribute, you must specify the ID of the interface attachment.
The ID of the network interface attachment.
Indicates whether the network interface is deleted when the instance is terminated.
A description for the network interface.
The attribute value. The value is case-sensitive.
DryRunOperation
. Otherwise, it is UnauthorizedOperation
.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.
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.
The attribute value. The valid values are true
or false
.
Updates the ENA Express configuration for the network interface that’s attached to the instance.
Indicates whether ENA Express is enabled for the network interface.
Configures ENA Express for UDP network traffic.
Indicates whether UDP traffic uses ENA Express. To specify this setting, you must first enable ENA Express.
None