/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export type EncryptionType = "KMS"; /** * Definition of AWS::Omics::SequenceStore Resource Type */ export interface AwsOmicsSequencestore { /** * The store's ARN. */ Arn?: string; /** * When the store was created. */ CreationTime?: string; /** * A description for the store. */ Description?: string; /** * A name for the store. */ Name: string; SequenceStoreId?: string; SseConfig?: SseConfig; Tags?: TagMap; } /** * Server-side encryption (SSE) settings for a store. */ export interface SseConfig { Type: EncryptionType; /** * An encryption key ARN. */ KeyArn?: string; } export interface TagMap { /** * This interface was referenced by `TagMap`'s JSON-Schema definition * via the `patternProperty` ".+". */ [k: string]: string; }