Module ServiceCatalog.CloudFormationProduct

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html

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

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

and provisioning_artifact_properties = {
  1. type_ : string option;
  2. description : string option;
  3. disable_template_validation : bool option;
  4. info : Yojson.Safe.t;
  5. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html

and code_star_parameters = {
  1. artifact_path : string;
  2. repository : string;
  3. branch : string;
  4. connection_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html

and connection_parameters = {
  1. code_star : code_star_parameters option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection-connectionparameters.html

and source_connection = {
  1. type_ : string;
  2. connection_parameters : connection_parameters;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection.html

type properties = {
  1. owner : string;
  2. description : string option;
  3. support_email : string option;
  4. product_type : string option;
  5. name : string;
  6. replace_provisioning_artifacts : bool option;
  7. support_description : string option;
  8. distributor : string option;
  9. accept_language : string option;
  10. support_url : string option;
  11. source_connection : source_connection option;
  12. tags : tag list option;
  13. provisioning_artifact_parameters : provisioning_artifact_properties list option;
}

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

val make_properties : owner:string -> ?description:string -> ?support_email:string -> ?product_type:string -> name:string -> ?replace_provisioning_artifacts:bool -> ?support_description:string -> ?distributor:string -> ?accept_language:string -> ?support_url:string -> ?source_connection:source_connection -> ?tags:tag list -> ?provisioning_artifact_parameters:provisioning_artifact_properties list -> unit -> properties
val make_tag : key:string -> value:string -> unit -> tag
val make_provisioning_artifact_properties : ?type_:string -> ?description:string -> ?disable_template_validation:bool -> info:Yojson.Safe.t -> ?name:string -> unit -> provisioning_artifact_properties
val make_code_star_parameters : artifact_path:string -> repository:string -> branch:string -> connection_arn:string -> unit -> code_star_parameters
val make_connection_parameters : ?code_star:code_star_parameters -> unit -> connection_parameters
val make_source_connection : type_:string -> connection_parameters:connection_parameters -> unit -> source_connection
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_provisioning_artifact_properties : provisioning_artifact_properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_code_star_parameters : code_star_parameters -> Yojson.Safe.t
val yojson_of_connection_parameters : connection_parameters -> Yojson.Safe.t
val yojson_of_source_connection : source_connection -> [> `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. product_name : string;
  3. provisioning_artifact_ids : string;
  4. provisioning_artifact_names : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string