Module Values.ResourceSource

The details of a provisioned resource of this Amazon DataZone environment.

Sourcetype nonrec t = {
  1. provider : String_.t option;
    (*

    The provider of a provisioned resource of this Amazon DataZone environment.

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

    The name of a provisioned resource of this Amazon DataZone environment.

    *)
  3. value : String_.t option;
    (*

    The value of a provisioned resource of this Amazon DataZone environment.

    *)
  4. type_ : String_.t option;
    (*

    The type of a provisioned resource of this Amazon DataZone environment.

    *)
}
Sourceval make : ?provider:??? -> ?name:??? -> ?value:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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