2017/07/13 - Amazon Elastic Compute Cloud - 3 new api methods
Changes Update ec2 client to latest version
Grants an AWS authorized partner account permission to attach the specified network interface to an instance in their account.
You can grant permission to a single AWS account only, and only one account at a time.
See also: AWS API Documentation
Request Syntax
client.create_network_interface_permission( NetworkInterfaceId='string', AwsAccountId='string', AwsService='string', Permission='INSTANCE-ATTACH'|'EIP-ASSOCIATE', DryRun=True|False )
string
[REQUIRED]
The ID of the network interface.
string
The AWS account ID.
string
The AWS service. Currently not supported.
string
[REQUIRED]
The type of permission to grant.
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.
dict
Response Syntax
{ 'InterfacePermission': { 'NetworkInterfacePermissionId': 'string', 'NetworkInterfaceId': 'string', 'AwsAccountId': 'string', 'AwsService': 'string', 'Permission': 'INSTANCE-ATTACH'|'EIP-ASSOCIATE', 'PermissionState': { 'State': 'pending'|'granted'|'revoking'|'revoked', 'StatusMessage': 'string' } } }
Response Structure
(dict) --
InterfacePermission (dict) --
Information about the permission for the network interface.
NetworkInterfacePermissionId (string) --
The ID of the network interface permission.
NetworkInterfaceId (string) --
The ID of the network interface.
AwsAccountId (string) --
The AWS account ID.
AwsService (string) --
The AWS service.
Permission (string) --
The type of permission.
PermissionState (dict) --
Information about the state of the permission.
State (string) --
The state of the permission.
StatusMessage (string) --
A status message, if applicable.
Describes the permissions for your network interfaces.
See also: AWS API Documentation
Request Syntax
client.describe_network_interface_permissions( NetworkInterfacePermissionIds=[ 'string', ], Filters=[ { 'Name': 'string', 'Values': [ 'string', ] }, ], NextToken='string', MaxResults=123 )
list
One or more network interface permission IDs.
(string) --
list
One or more filters.
network-interface-permission.network-interface-permission-id - The ID of the permission.
network-interface-permission.network-interface-id - The ID of the network interface.
network-interface-permission.aws-account-id - The AWS account ID.
network-interface-permission.aws-service - The AWS service.
network-interface-permission.permission - The type of permission ( INSTANCE-ATTACH | EIP-ASSOCIATE).
(dict) --
A filter name and value pair that is used to return a more specific list of results. Filters can be used to match a set of resources by various criteria, such as tags, attributes, or IDs.
Name (string) --
The name of the filter. Filter names are case-sensitive.
Values (list) --
One or more filter values. Filter values are case-sensitive.
(string) --
string
The token to request the next page of results.
integer
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. If this parameter is not specified, up to 50 results are returned by default.
dict
Response Syntax
{ 'NetworkInterfacePermissions': [ { 'NetworkInterfacePermissionId': 'string', 'NetworkInterfaceId': 'string', 'AwsAccountId': 'string', 'AwsService': 'string', 'Permission': 'INSTANCE-ATTACH'|'EIP-ASSOCIATE', 'PermissionState': { 'State': 'pending'|'granted'|'revoking'|'revoked', 'StatusMessage': 'string' } }, ], 'NextToken': 'string' }
Response Structure
(dict) --
NetworkInterfacePermissions (list) --
The network interface permissions.
(dict) --
Describes a permission for a network interface.
NetworkInterfacePermissionId (string) --
The ID of the network interface permission.
NetworkInterfaceId (string) --
The ID of the network interface.
AwsAccountId (string) --
The AWS account ID.
AwsService (string) --
The AWS service.
Permission (string) --
The type of permission.
PermissionState (dict) --
Information about the state of the permission.
State (string) --
The state of the permission.
StatusMessage (string) --
A status message, if applicable.
NextToken (string) --
The token to use to retrieve the next page of results.
Deletes a permission for a network interface. By default, you cannot delete the permission if the account for which you're removing the permission has attached the network interface to an instance. However, you can force delete the permission, regardless of any attachment.
See also: AWS API Documentation
Request Syntax
client.delete_network_interface_permission( NetworkInterfacePermissionId='string', Force=True|False, DryRun=True|False )
string
[REQUIRED]
The ID of the network interface permission.
boolean
Specify true to remove the permission even if the network interface is attached to an instance.
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.
dict
Response Syntax
{ 'Return': True|False }
Response Structure
(dict) --
Return (boolean) --
Returns true if the request succeeds, otherwise returns an error.