:doc:`Omics <../../omics>` / Client / get_sequence_store

******************
get_sequence_store
******************



.. py:method:: Omics.Client.get_sequence_store(**kwargs)

  

  Retrieves metadata for a sequence store using its ID and returns it in JSON format.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetSequenceStore>`_  


  **Request Syntax**
  ::

    response = client.get_sequence_store(
        id='string'
    )
    
  :type id: string
  :param id: **[REQUIRED]** 

    The store's ID.

    

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

    
    ::

      {
          'id': 'string',
          'arn': 'string',
          'name': 'string',
          'description': 'string',
          'sseConfig': {
              'type': 'KMS',
              'keyArn': 'string'
          },
          'creationTime': datetime(2015, 1, 1),
          'fallbackLocation': 'string',
          's3Access': {
              's3Uri': 'string',
              's3AccessPointArn': 'string',
              'accessLogLocation': 'string'
          },
          'eTagAlgorithmFamily': 'MD5up'|'SHA256up'|'SHA512up',
          'status': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING'|'FAILED',
          'statusMessage': 'string',
          'propagatedSetLevelTags': [
              'string',
          ],
          'updateTime': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **id** *(string) --* 

        The store's ID.

        
      

      - **arn** *(string) --* 

        The store's ARN.

        
      

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

        The store's name.

        
      

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

        The store's description.

        
      

      - **sseConfig** *(dict) --* 

        The store's server-side encryption (SSE) settings.

        
        

        - **type** *(string) --* 

          The encryption type.

          
        

        - **keyArn** *(string) --* 

          An encryption key ARN.

          
    
      

      - **creationTime** *(datetime) --* 

        When the store was created.

        
      

      - **fallbackLocation** *(string) --* 

        An S3 location that is used to store files that have failed a direct upload.

        
      

      - **s3Access** *(dict) --* 

        The S3 metadata of a sequence store, including the ARN and S3 URI of the S3 bucket.

        
        

        - **s3Uri** *(string) --* 

          The S3 URI of the sequence store.

          
        

        - **s3AccessPointArn** *(string) --* 

          This is ARN of the access point associated with the S3 bucket storing read sets.

          
        

        - **accessLogLocation** *(string) --* 

          Location of the access logs.

          
    
      

      - **eTagAlgorithmFamily** *(string) --* 

        The algorithm family of the ETag.

        
      

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

        The status of the sequence store.

        
      

      - **statusMessage** *(string) --* 

        The status message of the sequence store.

        
      

      - **propagatedSetLevelTags** *(list) --* 

        The tags keys to propagate to the S3 objects associated with read sets in the sequence store.

        
        

        - *(string) --* 
    
      

      - **updateTime** *(datetime) --* 

        The last-updated time of the sequence store.

        
  
  **Exceptions**
  
  *   :py:class:`Omics.Client.exceptions.InternalServerException`

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

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

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

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

  
  *   :py:class:`Omics.Client.exceptions.RequestTimeoutException`

  