Module B2BI.Capability

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

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

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

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

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

and s3_location = {
  1. bucket_name : string option;
  2. key : string option;
}

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

and edi_type = {
  1. x12_details : x12_details;
}

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

and edi_configuration = {
  1. type_ : edi_type;
  2. input_location : s3_location;
  3. transformer_id : string;
  4. output_location : s3_location;
}

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

and capability_configuration = {
  1. edi : edi_configuration;
}

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

type properties = {
  1. type_ : string;
  2. configuration : capability_configuration;
  3. instructions_documents : s3_location list option;
  4. tags : tag list option;
  5. name : string;
}

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

val make_properties : type_:string -> configuration:capability_configuration -> ?instructions_documents:s3_location list -> ?tags:tag list -> name:string -> unit -> properties
val make_x12_details : ?version:string -> ?transaction_set:string -> unit -> x12_details
val make_tag : value:string -> key:string -> unit -> tag
val make_s3_location : ?bucket_name:string -> ?key:string -> unit -> s3_location
val make_edi_type : x12_details:x12_details -> unit -> edi_type
val make_edi_configuration : type_:edi_type -> input_location:s3_location -> transformer_id:string -> output_location:s3_location -> unit -> edi_configuration
val make_capability_configuration : edi:edi_configuration -> unit -> capability_configuration
val yojson_of_x12_details : x12_details -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_s3_location : s3_location -> Yojson.Safe.t
val yojson_of_edi_type : edi_type -> Yojson.Safe.t
val yojson_of_edi_configuration : edi_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_capability_configuration : capability_configuration -> [> `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. modified_at : string;
  3. capability_id : string;
  4. capability_arn : string;
  5. created_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string