Module Values.ResourceDescriptionSource

Represents information about a provisioned resource.

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

    The primary identifier for the resource. For more information, see Identifying resources in the Amazon Web Services Cloud Control API User Guide.

    *)
  2. properties : Properties.t option;
    (*

    A list of the resource properties and their current values.

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