Module DataSync.LocationFSxONTAP

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

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

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

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

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

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

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

and nfs = {
  1. mount_options : nfs_mount_options;
}

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

and smb = {
  1. user : string;
  2. domain : string option;
  3. mount_options : smb_mount_options;
  4. password : string;
}

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

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

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

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

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

val make_properties : storage_virtual_machine_arn:string -> ?subdirectory:string -> ?protocol:protocol -> security_group_arns:string list -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_smb_mount_options : ?version:string -> unit -> smb_mount_options
val make_nfs_mount_options : ?version:string -> unit -> nfs_mount_options
val make_nfs : mount_options:nfs_mount_options -> unit -> nfs
val make_smb : user:string -> ?domain:string -> mount_options:smb_mount_options -> password:string -> unit -> smb
val make_protocol : ?smb:smb -> ?nfs:nfs -> unit -> protocol
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_smb_mount_options : smb_mount_options -> Yojson.Safe.t
val yojson_of_nfs_mount_options : nfs_mount_options -> Yojson.Safe.t
val yojson_of_nfs : nfs -> Yojson.Safe.t
val yojson_of_smb : smb -> 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. fsx_filesystem_arn : string;
  4. location_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string