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

*********************************
deprovision_public_ipv4_pool_cidr
*********************************



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

  

  Deprovision a CIDR from a public IPv4 pool.

  

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


  **Request Syntax**
  ::

    response = client.deprovision_public_ipv4_pool_cidr(
        DryRun=True|False,
        PoolId='string',
        Cidr='string'
    )
    
  :type DryRun: boolean
  :param DryRun: 

    A check for 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``.

    

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

    The ID of the pool that you want to deprovision the CIDR from.

    

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

    The CIDR you want to deprovision from the pool.

    

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

    
    ::

      {
          'PoolId': 'string',
          'DeprovisionedAddresses': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **PoolId** *(string) --* 

        The ID of the pool that you deprovisioned the CIDR from.

        
      

      - **DeprovisionedAddresses** *(list) --* 

        The deprovisioned CIDRs.

        
        

        - *(string) --* 
    
  