Module Values.TaskEphemeralStorageSource

The amount of ephemeral storage to allocate for the task.

Sourcetype nonrec t = {
  1. sizeInGiB : Integer.t option;
    (*

    The total amount, in GiB, of the ephemeral storage to set for the task. The minimum supported value is 20 GiB and the maximum supported value is 200 GiB.

    *)
  2. kmsKeyId : String_.t option;
    (*

    Specify an Key Management Service key ID to encrypt the ephemeral storage for the task.

    *)
}
Sourceval make : ?sizeInGiB:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t