Module DataSync.LocationFSxOpenZFS

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and mount_options = {
  1. version : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-mountoptions.html

and nfs = {
  1. mount_options : mount_options;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-nfs.html

and protocol = {
  1. nfs : nfs option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationfsxopenzfs-protocol.html

type properties = {
  1. subdirectory : string option;
  2. fsx_filesystem_arn : string option;
  3. protocol : protocol;
  4. security_group_arns : string list;
  5. tags : tag list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html;

val make_properties : ?subdirectory:string -> ?fsx_filesystem_arn:string -> protocol:protocol -> security_group_arns:string list -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_mount_options : ?version:string -> unit -> mount_options
val make_nfs : mount_options:mount_options -> unit -> nfs
val make_protocol : ?nfs:nfs -> unit -> protocol
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_mount_options : mount_options -> Yojson.Safe.t
val yojson_of_nfs : nfs -> Yojson.Safe.t
val yojson_of_protocol : protocol -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. location_uri : string;
  3. location_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string