Module Values_1.DescribeHubResponseSource

Describes 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. s3StorageConfig : Values_0.HubS3StorageConfig.t option;
    (*

    The Amazon S3 storage configuration for the hub.

    *)
  7. hubStatus : HubStatus.t option;
    (*

    The status of the hub.

    *)
  8. failureReason : Values_0.FailureReason.t option;
    (*

    The failure reason if importing hub content failed.

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

    The date and time that the hub was created.

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

    The date and time that the hub was last modified.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?hubName:??? -> ?hubArn:??? -> ?hubDisplayName:??? -> ?hubDescription:??? -> ?hubSearchKeywords:??? -> ?s3StorageConfig:??? -> ?hubStatus:??? -> ?failureReason:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of Values_0.HubName.t | `Structure of (string * [> `String of string ]) list | `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