Module Values.AwsEcsTaskVolumeDetailsSource

Provides information about a data volume that's used in a task definition.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

    *)
  2. host : AwsEcsTaskVolumeHostDetails.t option;
    (*

    This parameter is specified when you use bind mount host volumes. The contents of the host parameter determine whether your bind mount host volume persists on the host container instance and where it's stored.

    *)
}
Sourceval make : ?name:??? -> ?host:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) 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