Module DataSync.LocationNFS

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationnfs.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-locationnfs-mountoptions.html

and on_prem_config = {
  1. agent_arns : string list;
}

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

type properties = {
  1. subdirectory : string option;
  2. server_hostname : string option;
  3. mount_options : mount_options option;
  4. on_prem_config : on_prem_config;
  5. tags : tag list option;
}

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

val make_properties : ?subdirectory:string -> ?server_hostname:string -> ?mount_options:mount_options -> on_prem_config:on_prem_config -> ?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_on_prem_config : agent_arns:string list -> unit -> on_prem_config
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_mount_options : mount_options -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_on_prem_config : on_prem_config -> [> `Assoc of (string * [> `List of Yojson.Safe.t list ]) 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