Module B2BI.Transformer

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html

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

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

and x12_details = {
  1. version : string option;
  2. transaction_set : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12details.html

and edi_type = {
  1. x12_details : x12_details;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-editype.html

type properties = {
  1. modified_at : string option;
  2. status : string;
  3. mapping_template : string;
  4. edi_type : edi_type;
  5. sample_document : string option;
  6. file_format : string;
  7. tags : tag list option;
  8. name : string;
}

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

val make_properties : ?modified_at:string -> status:string -> mapping_template:string -> edi_type:edi_type -> ?sample_document:string -> file_format:string -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_x12_details : ?version:string -> ?transaction_set:string -> unit -> x12_details
val make_edi_type : x12_details:x12_details -> unit -> edi_type
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_x12_details : x12_details -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_edi_type : edi_type -> [> `Assoc of (string * [> `Assoc of (string * Yojson.Safe.t) list ]) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. transformer_id : string;
  3. transformer_arn : string;
  4. created_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string