Module DataSync.LocationHDFS

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

type name_node = {
  1. port : int;
  2. hostname : string;
}

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

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

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

and qop_configuration = {
  1. rpc_protection : string option;
  2. data_transfer_protection : string option;
}

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

type properties = {
  1. kms_key_provider_uri : string option;
  2. qop_configuration : qop_configuration option;
  3. kerberos_principal : string option;
  4. simple_user : string option;
  5. replication_factor : int option;
  6. kerberos_keytab : string option;
  7. name_nodes : name_node list;
  8. subdirectory : string option;
  9. kerberos_krb5_conf : string option;
  10. block_size : int option;
  11. tags : tag list option;
  12. agent_arns : string list;
  13. authentication_type : string;
}

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

val make_properties : ?kms_key_provider_uri:string -> ?qop_configuration:qop_configuration -> ?kerberos_principal:string -> ?simple_user:string -> ?replication_factor:int -> ?kerberos_keytab:string -> name_nodes:name_node list -> ?subdirectory:string -> ?kerberos_krb5_conf:string -> ?block_size:int -> ?tags:tag list -> agent_arns:string list -> authentication_type:string -> unit -> properties
val make_name_node : port:int -> hostname:string -> unit -> name_node
val make_tag : value:string -> key:string -> unit -> tag
val make_qop_configuration : ?rpc_protection:string -> ?data_transfer_protection:string -> unit -> qop_configuration
val yojson_of_name_node : name_node -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_qop_configuration : qop_configuration -> [> `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