:doc:`FraudDetector <../../frauddetector>` / Client / batch_create_variable

*********************
batch_create_variable
*********************



.. py:method:: FraudDetector.Client.batch_create_variable(**kwargs)

  

  Creates a batch of variables.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/frauddetector-2019-11-15/BatchCreateVariable>`_  


  **Request Syntax**
  ::

    response = client.batch_create_variable(
        variableEntries=[
            {
                'name': 'string',
                'dataType': 'string',
                'dataSource': 'string',
                'defaultValue': 'string',
                'description': 'string',
                'variableType': 'string'
            },
        ],
        tags=[
            {
                'key': 'string',
                'value': 'string'
            },
        ]
    )
    
  :type variableEntries: list
  :param variableEntries: **[REQUIRED]** 

    The list of variables for the batch create variable request.

    

  
    - *(dict) --* 

      A variable in the list of variables for the batch create variable request.

      

    
      - **name** *(string) --* 

        The name of the variable.

        

      
      - **dataType** *(string) --* 

        The data type of the variable.

        

      
      - **dataSource** *(string) --* 

        The data source of the variable.

        

      
      - **defaultValue** *(string) --* 

        The default value of the variable.

        

      
      - **description** *(string) --* 

        The description of the variable.

        

      
      - **variableType** *(string) --* 

        The type of the variable. For more information see `Variable types <https://docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types>`__.

         

        Valid Values: ``AUTH_CODE | AVS | BILLING_ADDRESS_L1 | BILLING_ADDRESS_L2 | BILLING_CITY | BILLING_COUNTRY | BILLING_NAME | BILLING_PHONE | BILLING_STATE | BILLING_ZIP | CARD_BIN | CATEGORICAL | CURRENCY_CODE | EMAIL_ADDRESS | FINGERPRINT | FRAUD_LABEL | FREE_FORM_TEXT | IP_ADDRESS | NUMERIC | ORDER_ID | PAYMENT_TYPE | PHONE_NUMBER | PRICE | PRODUCT_CATEGORY | SHIPPING_ADDRESS_L1 | SHIPPING_ADDRESS_L2 | SHIPPING_CITY | SHIPPING_COUNTRY | SHIPPING_NAME | SHIPPING_PHONE | SHIPPING_STATE | SHIPPING_ZIP | USERAGENT``

        

      
    

  :type tags: list
  :param tags: 

    A collection of key and value pairs.

    

  
    - *(dict) --* 

      A key and value pair.

      

    
      - **key** *(string) --* **[REQUIRED]** 

        A tag key.

        

      
      - **value** *(string) --* **[REQUIRED]** 

        A value assigned to a tag key.

        

      
    

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

    
    ::

      {
          'errors': [
              {
                  'name': 'string',
                  'code': 123,
                  'message': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **errors** *(list) --* 

        Provides the errors for the ``BatchCreateVariable`` request.

        
        

        - *(dict) --* 

          Provides the error of the batch create variable API.

          
          

          - **name** *(string) --* 

            The name.

            
          

          - **code** *(integer) --* 

            The error code.

            
          

          - **message** *(string) --* 

            The error message.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`FraudDetector.Client.exceptions.ValidationException`

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

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

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

  