Module Values.S3FilesVolumeConfigurationSource

This is used when you're using an S3Files file system for job storage.

Sourcetype nonrec t = {
  1. fileSystemArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the S3Files file system to use.

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

    The directory within the S3Files file system to mount as the root directory.

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

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

    *)
  4. accessPointArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the S3Files access point to use.

    *)
}
Sourceval context_ : string
Sourceval make : ?rootDirectory:??? -> ?transitEncryptionPort:??? -> ?accessPointArn:??? -> fileSystemArn:String_.t -> 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