Module Values.RelationshipSource

The relationship of the related resource to the main resource.

Sourcetype nonrec t = {
  1. resourceType : ResourceType.t option;
    (*

    The resource type of the related resource.

    *)
  2. resourceId : ResourceId.t option;
    (*

    The ID of the related resource (for example, sg-xxxxxx).

    *)
  3. resourceName : ResourceName.t option;
    (*

    The custom name of the related resource, if available.

    *)
  4. relationshipName : RelationshipName.t option;
    (*

    The type of relationship with the related resource.

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceId:??? -> ?resourceName:??? -> ?relationshipName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.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