Module Types.CreateSnapshotsRequest

type t = {
description : Aws.BaseTypes.String.t option;
instance_specification : InstanceSpecification.t;
tag_specifications : TagSpecificationList.t;
dry_run : Aws.BaseTypes.Boolean.t option;
copy_tags_from_source : CopyTagsFromSource.t option;
}
val make : ?⁠description:Aws.BaseTypes.String.t -> instance_specification:InstanceSpecification.t -> ?⁠tag_specifications:TagSpecificationList.t -> ?⁠dry_run:Aws.BaseTypes.Boolean.t -> ?⁠copy_tags_from_source:CopyTagsFromSource.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t