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

***************************************
disable_image_deregistration_protection
***************************************



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

  

  Disables deregistration protection for an AMI. When deregistration protection is disabled, the AMI can be deregistered.

   

  If you chose to include a 24-hour cooldown period when you enabled deregistration protection for the AMI, then, when you disable deregistration protection, you won’t immediately be able to deregister the AMI.

   

  For more information, see `Protect an Amazon EC2 AMI from deregistration <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-deregistration-protection.html>`__ in the *Amazon EC2 User Guide*.

  

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


  **Request Syntax**
  ::

    response = client.disable_image_deregistration_protection(
        ImageId='string',
        DryRun=True|False
    )
    
  :type ImageId: string
  :param ImageId: **[REQUIRED]** 

    The ID of the AMI.

    

  
  :type DryRun: boolean
  :param DryRun: 

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

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Return': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Return** *(string) --* 

        Returns ``true`` if the request succeeds; otherwise, it returns an error.

        
  