KeyPairInfo / Action / delete

delete#

EC2.KeyPairInfo.delete(**kwargs)#

Deletes the specified key pair, by removing the public key from Amazon EC2.

See also: AWS API Documentation

Request Syntax

response = key_pair_info.delete(
    KeyPairId='string',
    DryRun=True|False
)
Parameters:
  • KeyPairId (string) – The ID of the key pair.

  • 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.

Return type:

dict

Returns:

Response Syntax

{
    'Return': True|False,
    'KeyPairId': 'string'
}

Response Structure

  • (dict) –

    • Return (boolean) –

      Is true if the request succeeds, and an error otherwise.

    • KeyPairId (string) –

      The ID of the key pair.