package aws-ec2

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.CreateVolumeRequestSource

Sourcetype t = {
  1. availability_zone : Aws.BaseTypes.String.t;
  2. encrypted : Aws.BaseTypes.Boolean.t option;
  3. iops : Aws.BaseTypes.Integer.t option;
  4. kms_key_id : Aws.BaseTypes.String.t option;
  5. outpost_arn : Aws.BaseTypes.String.t option;
  6. size : Aws.BaseTypes.Integer.t option;
  7. snapshot_id : Aws.BaseTypes.String.t option;
  8. volume_type : VolumeType.t option;
  9. dry_run : Aws.BaseTypes.Boolean.t option;
  10. tag_specifications : TagSpecificationList.t;
  11. multi_attach_enabled : Aws.BaseTypes.Boolean.t option;
}
Sourceval make : availability_zone:Aws.BaseTypes.String.t -> ?encrypted:??? -> ?iops:??? -> ?kms_key_id:??? -> ?outpost_arn:??? -> ?size:??? -> ?snapshot_id:??? -> ?volume_type:??? -> ?dry_run:??? -> ?tag_specifications:??? -> ?multi_attach_enabled:??? -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t