Module DataSync.LocationSMB

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

type properties = {
  1. user : string;
  2. subdirectory : string option;
  3. server_hostname : string option;
  4. domain : string option;
  5. mount_options : mount_options option;
  6. agent_arns : string list;
  7. tags : tag list option;
  8. password : string option;
}

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

val make_properties : user:string -> ?subdirectory:string -> ?server_hostname:string -> ?domain:string -> ?mount_options:mount_options -> agent_arns:string list -> ?tags:tag list -> ?password:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_mount_options : ?version:string -> unit -> mount_options
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_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