:doc:`RTBFabric <../../rtbfabric>` / Client / create_requester_gateway

************************
create_requester_gateway
************************



.. py:method:: RTBFabric.Client.create_requester_gateway(**kwargs)

  

  Creates a requester gateway.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/CreateRequesterGateway>`_  


  **Request Syntax**
  ::

    response = client.create_requester_gateway(
        vpcId='string',
        subnetIds=[
            'string',
        ],
        securityGroupIds=[
            'string',
        ],
        clientToken='string',
        description='string',
        tags={
            'string': 'string'
        }
    )
    
  :type vpcId: string
  :param vpcId: **[REQUIRED]** 

    The unique identifier of the Virtual Private Cloud (VPC).

    

  
  :type subnetIds: list
  :param subnetIds: **[REQUIRED]** 

    The unique identifiers of the subnets.

    

  
    - *(string) --* 

    

  :type securityGroupIds: list
  :param securityGroupIds: **[REQUIRED]** 

    The unique identifiers of the security groups.

    

  
    - *(string) --* 

    

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

    The unique client token.

    This field is autopopulated if not provided.

  
  :type description: string
  :param description: 

    An optional description for the requester gateway.

    

  
  :type tags: dict
  :param tags: 

    A map of the key-value pairs of the tag or tags to assign to the resource.

    

  
    - *(string) --* 

    
      - *(string) --* 

      


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

    
    ::

      {
          'gatewayId': 'string',
          'domainName': 'string',
          'status': 'PENDING_CREATION'|'ACTIVE'|'PENDING_DELETION'|'DELETED'|'ERROR'|'PENDING_UPDATE'|'ISOLATED'|'PENDING_ISOLATION'|'PENDING_RESTORATION'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **gatewayId** *(string) --* 

        The unique identifier of the gateway.

        
      

      - **domainName** *(string) --* 

        The domain name of the requester gateway.

        
      

      - **status** *(string) --* 

        The status of the request.

        
  
  **Exceptions**
  
  *   :py:class:`RTBFabric.Client.exceptions.ServiceQuotaExceededException`

  
  *   :py:class:`RTBFabric.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`RTBFabric.Client.exceptions.ThrottlingException`

  
  *   :py:class:`RTBFabric.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`RTBFabric.Client.exceptions.InternalServerException`

  
  *   :py:class:`RTBFabric.Client.exceptions.ValidationException`

  