/* 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"; export type StoreStatus = "CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED"; /** * Definition of AWS::Omics::VariantStore Resource Type */ export interface AwsOmicsVariantstore { CreationTime?: string; Description?: string; Id?: string; Name: string; Reference: ReferenceItem; SseConfig?: SseConfig; Status?: StoreStatus; StatusMessage?: string; StoreArn?: string; StoreSizeBytes?: number; Tags?: TagMap; UpdateTime?: string; } export interface ReferenceItem { ReferenceArn: string; } export interface SseConfig { Type: EncryptionType; KeyArn?: string; } export interface TagMap { /** * This interface was referenced by `TagMap`'s JSON-Schema definition * via the `patternProperty` ".+". */ [k: string]: string; }