Module Transfer.Agreement

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

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

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

type properties = {
  1. status : string option;
  2. description : string option;
  3. server_id : string;
  4. base_directory : string;
  5. access_role : string;
  6. partner_profile_id : string;
  7. local_profile_id : string;
  8. tags : tag list option;
}

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

val make_properties : ?status:string -> ?description:string -> server_id:string -> base_directory:string -> access_role:string -> partner_profile_id:string -> local_profile_id:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `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. agreement_id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string