Module Omics.AnnotationStore

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html

type sse_config = {
  1. type_ : string;
  2. key_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-annotationstore-sseconfig.html

and reference_item = {
  1. reference_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-annotationstore-referenceitem.html

and tsv_store_options = {
  1. schema : Yojson.Safe.t option;
  2. format_to_header : string Stdlib__Map.Make(Stdlib.String).t option;
  3. annotation_type : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-annotationstore-tsvstoreoptions.html

and store_options = {
  1. tsv_store_options : tsv_store_options;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-annotationstore-storeoptions.html

type properties = {
  1. store_format : string;
  2. description : string option;
  3. reference : reference_item option;
  4. sse_config : sse_config option;
  5. store_options : store_options option;
  6. tags : string Stdlib__Map.Make(Stdlib.String).t option;
  7. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html;

val make_properties : store_format:string -> ?description:string -> ?reference:reference_item -> ?sse_config:sse_config -> ?store_options:store_options -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> name:string -> unit -> properties
val make_sse_config : type_:string -> ?key_arn:string -> unit -> sse_config
val make_reference_item : reference_arn:string -> unit -> reference_item
val make_tsv_store_options : ?schema:Yojson.Safe.t -> ?format_to_header:string Stdlib__Map.Make(Stdlib.String).t -> ?annotation_type:string -> unit -> tsv_store_options
val make_store_options : tsv_store_options:tsv_store_options -> unit -> store_options
val yojson_of_sse_config : sse_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_reference_item : reference_item -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tsv_store_options : tsv_store_options -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_store_options : store_options -> [> `Assoc of (string * [> `Assoc of (string * Yojson.Safe.t) list ]) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. status : string;
  3. creation_time : string;
  4. update_time : string;
  5. id : string;
  6. store_size_bytes : float;
  7. status_message : string;
  8. store_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string