Module Values.ComponentStateSource

The detailed data about the current state of the component.

Sourcetype nonrec t = {
  1. serviceInstanceName : ResourceNameOrEmpty.t option;
    (*

    The name of the service instance that this component is attached to. Provided when a component is attached to a service instance.

    *)
  2. serviceName : ResourceNameOrEmpty.t option;
    (*

    The name of the service that serviceInstanceName is associated with. Provided when a component is attached to a service instance.

    *)
  3. serviceSpec : SpecContents.t option;
    (*

    The service spec that the component uses to access service inputs. Provided when a component is attached to a service instance.

    *)
  4. templateFile : TemplateFileContents.t option;
    (*

    The template file used.

    *)
}
Sourceval make : ?serviceInstanceName:??? -> ?serviceName:??? -> ?serviceSpec:??? -> ?templateFile:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceNameOrEmpty.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