Module Values.ProvisionedResourceSource

Detail data for a provisioned resource.

Sourcetype nonrec t = {
  1. identifier : ProvisionedResourceIdentifier.t option;
    (*

    The provisioned resource identifier.

    *)
  2. name : ProvisionedResourceName.t option;
    (*

    The provisioned resource name.

    *)
  3. provisioningEngine : ProvisionedResourceEngine.t option;
    (*

    The resource provisioning engine. At this time, CLOUDFORMATION can be used for Amazon Web Services-managed provisioning, and TERRAFORM can be used for self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide.

    *)
}
Sourceval make : ?identifier:??? -> ?name:??? -> ?provisioningEngine:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProvisionedResourceIdentifier.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