Module Values_0.CreateHubRequestSource

Create a hub.

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

    The name of the hub to create.

    *)
  2. hubDescription : HubDescription.t;
    (*

    A description of the hub.

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

    The display name of the hub.

    *)
  4. hubSearchKeywords : HubSearchKeywordList.t option;
    (*

    The searchable keywords for the hub.

    *)
  5. s3StorageConfig : HubS3StorageConfig.t option;
    (*

    The Amazon S3 storage configuration for the hub.

    *)
  6. tags : TagList.t option;
    (*

    Any tags to associate with the hub.

    *)
}
Sourceval context_ : string
Sourceval make : ?hubDisplayName:??? -> ?hubSearchKeywords:??? -> ?s3StorageConfig:??? -> ?tags:??? -> hubName:HubName.t -> hubDescription:HubDescription.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of HubSearchKeyword.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of HubName.t | `Structure of (string * [> `String of S3OutputPath.t ]) list ]) 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