:doc:`EC2 <../../ec2>` / Client / reset_instance_attribute

************************
reset_instance_attribute
************************



.. py:method:: EC2.Client.reset_instance_attribute(**kwargs)

  

  Resets an attribute of an instance to its default value. To reset the ``kernel`` or ``ramdisk``, the instance must be in a stopped state. To reset the ``sourceDestCheck``, the instance can be either running or stopped.

   

  The ``sourceDestCheck`` attribute controls whether source/destination checking is enabled. The default value is ``true``, which means checking is enabled. This value must be ``false`` for a NAT instance to perform NAT. For more information, see `NAT instances <https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html>`__ in the *Amazon VPC User Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetInstanceAttribute>`_  


  **Request Syntax**
  ::

    response = client.reset_instance_attribute(
        DryRun=True|False,
        InstanceId='string',
        Attribute='instanceType'|'kernel'|'ramdisk'|'userData'|'disableApiTermination'|'instanceInitiatedShutdownBehavior'|'rootDeviceName'|'blockDeviceMapping'|'productCodes'|'sourceDestCheck'|'groupSet'|'ebsOptimized'|'sriovNetSupport'|'enaSupport'|'enclaveOptions'|'disableApiStop'
    )
    
  :type DryRun: boolean
  :param DryRun: 

    Checks whether you have the required permissions for the operation, 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``.

    

  
  :type InstanceId: string
  :param InstanceId: **[REQUIRED]** 

    The ID of the instance.

    

  
  :type Attribute: string
  :param Attribute: **[REQUIRED]** 

    The attribute to reset.

     

    .. warning::

       

      You can only reset the following attributes: ``kernel`` | ``ramdisk`` | ``sourceDestCheck``.

      

    

  
  
  :returns: None

  **Examples**

  This example resets the sourceDestCheck attribute for the specified instance.
  ::

    response = client.reset_instance_attribute(
        Attribute='sourceDestCheck',
        InstanceId='i-1234567890abcdef0',
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  