Module Values_1.ProvisioningParameterSource

A key value pair used when you provision a project as a service catalog product. For information, see What is Amazon Web Services Service Catalog.

Sourcetype nonrec t = {
  1. key : ProvisioningParameterKey.t option;
    (*

    The key that identifies a provisioning parameter.

    *)
  2. value : ProvisioningParameterValue.t option;
    (*

    The value of the provisioning parameter.

    *)
}
Sourceval make : ?key:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProvisioningParameterKey.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t