Module Values.AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetailsSource

Information about the Amazon Elastic File System file system that is used for task storage.

Sourcetype nonrec t = {
  1. authorizationConfig : AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails.t option;
    (*

    The authorization configuration details for the Amazon EFS file system.

    *)
  2. filesystemId : NonEmptyString.t option;
    (*

    The Amazon EFS file system identifier to use.

    *)
  3. rootDirectory : NonEmptyString.t option;
    (*

    The directory within the Amazon EFS file system to mount as the root directory inside the host.

    *)
  4. transitEncryption : NonEmptyString.t option;
    (*

    Whether to enable encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server.

    *)
  5. transitEncryptionPort : Integer.t option;
    (*

    The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server.

    *)
}
Sourceval make : ?authorizationConfig:??? -> ?filesystemId:??? -> ?rootDirectory:??? -> ?transitEncryption:??? -> ?transitEncryptionPort:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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