:doc:`DataExchange <../../dataexchange>` / Client / create_data_set

***************
create_data_set
***************



.. py:method:: DataExchange.Client.create_data_set(**kwargs)

  

  This operation creates a data set.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateDataSet>`_  


  **Request Syntax**
  ::

    response = client.create_data_set(
        AssetType='S3_SNAPSHOT'|'REDSHIFT_DATA_SHARE'|'API_GATEWAY_API'|'S3_DATA_ACCESS'|'LAKE_FORMATION_DATA_PERMISSION',
        Description='string',
        Name='string',
        Tags={
            'string': 'string'
        }
    )
    
  :type AssetType: string
  :param AssetType: **[REQUIRED]** 

    The type of asset that is added to a data set.

    

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

    A description for the data set. This value can be up to 16,348 characters long.

    

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

    The name of the data set.

    

  
  :type Tags: dict
  :param Tags: 

    A data set tag is an optional label that you can assign to a data set when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.

    

  
    - *(string) --* 

    
      - *(string) --* 

      


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

    
    ::

      {
          'Arn': 'string',
          'AssetType': 'S3_SNAPSHOT'|'REDSHIFT_DATA_SHARE'|'API_GATEWAY_API'|'S3_DATA_ACCESS'|'LAKE_FORMATION_DATA_PERMISSION',
          'CreatedAt': datetime(2015, 1, 1),
          'Description': 'string',
          'Id': 'string',
          'Name': 'string',
          'Origin': 'OWNED'|'ENTITLED',
          'OriginDetails': {
              'ProductId': 'string',
              'DataGrantId': 'string'
          },
          'SourceId': 'string',
          'Tags': {
              'string': 'string'
          },
          'UpdatedAt': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Arn** *(string) --* 

        The ARN for the data set.

        
      

      - **AssetType** *(string) --* 

        The type of asset that is added to a data set.

        
      

      - **CreatedAt** *(datetime) --* 

        The date and time that the data set was created, in ISO 8601 format.

        
      

      - **Description** *(string) --* 

        The description for the data set.

        
      

      - **Id** *(string) --* 

        The unique identifier for the data set.

        
      

      - **Name** *(string) --* 

        The name of the data set.

        
      

      - **Origin** *(string) --* 

        A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).

        
      

      - **OriginDetails** *(dict) --* 

        If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.

        
        

        - **ProductId** *(string) --* 

          The product ID of the origin of the data set.

          
        

        - **DataGrantId** *(string) --* 

          The ID of the data grant.

          
    
      

      - **SourceId** *(string) --* 

        The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is returned when a data set owner is viewing the entitled copy of its owned data set.

        
      

      - **Tags** *(dict) --* 

        The tags for the data set.

        
        

        - *(string) --* 
          

          - *(string) --* 
    
  
      

      - **UpdatedAt** *(datetime) --* 

        The date and time that the data set was last updated, in ISO 8601 format.

        
  
  **Exceptions**
  
  *   :py:class:`DataExchange.Client.exceptions.ServiceLimitExceededException`

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

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

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

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

  