Module Values.DependentEntitySource

Information about a resource that another resource is related to or depends on. For example, if a contact is a member of a rotation, the rotation is a dependent entity of the contact.

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

    The type of relationship between one resource and the other resource that it is related to or depends on.

    *)
  2. dependentResourceIds : SsmContactsArnList.t option;
    (*

    The Amazon Resource Names (ARNs) of the dependent resources.

    *)
}
Sourceval make : ?relationType:??? -> ?dependentResourceIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SsmContactsArn.t ] list | `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