Module Omics.VariantStore

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

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

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

and reference_item = {
  1. reference_arn : string;
}

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

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

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

val make_properties : ?description:string -> reference:reference_item -> ?sse_config:sse_config -> ?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 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_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