Module Values_2.HubInfoSource

Information about a hub.

Sourcetype nonrec t = {
  1. hubName : Values_0.HubName.t option;
    (*

    The name of the hub.

    *)
  2. hubArn : Values_0.HubArn.t option;
    (*

    The Amazon Resource Name (ARN) of the hub.

    *)
  3. hubDisplayName : Values_0.HubDisplayName.t option;
    (*

    The display name of the hub.

    *)
  4. hubDescription : Values_0.HubDescription.t option;
    (*

    A description of the hub.

    *)
  5. hubSearchKeywords : Values_0.HubSearchKeywordList.t option;
    (*

    The searchable keywords for the hub.

    *)
  6. hubStatus : Values_1.HubStatus.t option;
    (*

    The status of the hub.

    *)
  7. creationTime : Values_0.Timestamp.t option;
    (*

    The date and time that the hub was created.

    *)
  8. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The date and time that the hub was last modified.

    *)
}
Sourceval make : ?hubName:??? -> ?hubArn:??? -> ?hubDisplayName:??? -> ?hubDescription:??? -> ?hubSearchKeywords:??? -> ?hubStatus:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of Values_0.HubName.t | `Timestamp of Values_0.Timestamp.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