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

*********************
update_sequence_store
*********************



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

  

  Update one or more parameters for the sequence store.

  

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


  **Request Syntax**
  ::

    response = client.update_sequence_store(
        id='string',
        name='string',
        description='string',
        clientToken='string',
        fallbackLocation='string',
        propagatedSetLevelTags=[
            'string',
        ],
        s3AccessConfig={
            'accessLogLocation': 'string'
        }
    )
    
  :type id: string
  :param id: **[REQUIRED]** 

    The ID of the sequence store.

    

  
  :type name: string
  :param name: 

    A name for the sequence store.

    

  
  :type description: string
  :param description: 

    A description for the sequence store.

    

  
  :type clientToken: string
  :param clientToken: 

    To ensure that requests don't run multiple times, specify a unique token for each request.

    This field is autopopulated if not provided.

  
  :type fallbackLocation: string
  :param fallbackLocation: 

    The S3 URI of a bucket and folder to store Read Sets that fail to upload.

    

  
  :type propagatedSetLevelTags: list
  :param propagatedSetLevelTags: 

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

    

  
    - *(string) --* 

    

  :type s3AccessConfig: dict
  :param s3AccessConfig: 

    S3 access configuration parameters.

    

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

      Location of the access logs.

      

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

    
    ::

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

    

    - *(dict) --* 
      

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

        The ID of the sequence store.

        
      

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

        The ARN of the sequence store.

        
      

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

        The name of the sequence store.

        
      

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

        Description of the sequence store.

        
      

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

        Server-side encryption (SSE) settings for a store.

        
        

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

          The encryption type.

          
        

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

          An encryption key ARN.

          
    
      

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

        The time when the store was created.

        
      

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

        The last-updated time of the Sequence Store.

        
      

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

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

        
        

        - *(string) --* 
    
      

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

        The status of the sequence store.

        
      

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

        The status message of the sequence store.

        
      

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

        The S3 URI of a bucket and folder to store Read Sets that fail to upload.

        
      

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

        The S3 access metadata of the sequence store.

        
        

        - **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 ETag algorithm family to use on ingested read sets.

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

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

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

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

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

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

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

  