package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. description : Aws.BaseTypes.String.t option;
  2. destination_region : Aws.BaseTypes.String.t option;
  3. encrypted : Aws.BaseTypes.Boolean.t option;
  4. kms_key_id : Aws.BaseTypes.String.t option;
  5. presigned_url : Aws.BaseTypes.String.t option;
  6. source_region : Aws.BaseTypes.String.t;
  7. source_snapshot_id : Aws.BaseTypes.String.t;
  8. tag_specifications : TagSpecificationList.t;
  9. dry_run : Aws.BaseTypes.Boolean.t option;
}
val make : ?description:Aws.BaseTypes.String.t -> ?destination_region:Aws.BaseTypes.String.t -> ?encrypted:Aws.BaseTypes.Boolean.t -> ?kms_key_id:Aws.BaseTypes.String.t -> ?presigned_url:Aws.BaseTypes.String.t -> source_region:Aws.BaseTypes.String.t -> source_snapshot_id:Aws.BaseTypes.String.t -> ?tag_specifications:TagSpecificationList.t -> ?dry_run:Aws.BaseTypes.Boolean.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