Module Transfer.Connector

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-connector.html

type as2_config = {
  1. compression : string option;
  2. message_subject : string option;
  3. basic_auth_secret_id : string option;
  4. partner_profile_id : string option;
  5. encryption_algorithm : string option;
  6. signing_algorithm : string option;
  7. local_profile_id : string option;
  8. mdn_response : string option;
  9. mdn_signing_algorithm : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-as2config.html

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

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

and sftp_config = {
  1. trusted_host_keys : string list option;
  2. user_secret_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-sftpconfig.html

type properties = {
  1. as2_config : as2_config option;
  2. logging_role : string option;
  3. access_role : string;
  4. sftp_config : sftp_config option;
  5. tags : tag list option;
  6. url : string;
}

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

val make_properties : ?as2_config:as2_config -> ?logging_role:string -> access_role:string -> ?sftp_config:sftp_config -> ?tags:tag list -> url:string -> unit -> properties
val make_as2_config : ?compression:string -> ?message_subject:string -> ?basic_auth_secret_id:string -> ?partner_profile_id:string -> ?encryption_algorithm:string -> ?signing_algorithm:string -> ?local_profile_id:string -> ?mdn_response:string -> ?mdn_signing_algorithm:string -> unit -> as2_config
val make_tag : value:string -> key:string -> unit -> tag
val make_sftp_config : ?trusted_host_keys:string list -> ?user_secret_id:string -> unit -> sftp_config
val yojson_of_as2_config : as2_config -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_sftp_config : sftp_config -> [> `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. arn : string;
  3. connector_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string