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

****************
create_coip_cidr
****************



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

  

  Creates a range of customer-owned IP addresses.

  

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


  **Request Syntax**
  ::

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

    A customer-owned IP address range to create.

    

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

    The ID of the address pool.

    

  
  :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**

    
    ::

      {
          'CoipCidr': {
              'Cidr': 'string',
              'CoipPoolId': 'string',
              'LocalGatewayRouteTableId': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **CoipCidr** *(dict) --* 

        Information about a range of customer-owned IP addresses.

        
        

        - **Cidr** *(string) --* 

          An address range in a customer-owned IP address space.

          
        

        - **CoipPoolId** *(string) --* 

          The ID of the address pool.

          
        

        - **LocalGatewayRouteTableId** *(string) --* 

          The ID of the local gateway route table.

          
    
  