create_sequence_store(**kwargs)¶Creates a sequence store.
See also: AWS API Documentation
Request Syntax
response = client.create_sequence_store(
    clientToken='string',
    description='string',
    name='string',
    sseConfig={
        'keyArn': 'string',
        'type': 'KMS'
    },
    tags={
        'string': 'string'
    }
)
[REQUIRED]
A name for the store.
Server-side encryption (SSE) settings for the store.
An encryption key ARN.
The encryption type.
Tags for the store.
dict
Response Syntax
{
    'arn': 'string',
    'creationTime': datetime(2015, 1, 1),
    'description': 'string',
    'id': 'string',
    'name': 'string',
    'sseConfig': {
        'keyArn': 'string',
        'type': 'KMS'
    }
}
Response Structure
(dict) --
arn (string) --
The store's ARN.
creationTime (datetime) --
When the store was created.
description (string) --
The store's description.
id (string) --
The store's ID.
name (string) --
The store's name.
sseConfig (dict) --
The store's SSE settings.
keyArn (string) --
An encryption key ARN.
type (string) --
The encryption type.
Exceptions
Omics.Client.exceptions.InternalServerExceptionOmics.Client.exceptions.ServiceQuotaExceededExceptionOmics.Client.exceptions.ThrottlingExceptionOmics.Client.exceptions.ValidationExceptionOmics.Client.exceptions.AccessDeniedExceptionOmics.Client.exceptions.RequestTimeoutException