Module Values.TableBucketSummarySource

Contains details about a table bucket.

Sourcetype nonrec t = {
  1. arn : TableBucketARN.t option;
    (*

    The Amazon Resource Name (ARN) of the table bucket.

    *)
  2. name : TableBucketName.t option;
    (*

    The name of the table bucket.

    *)
  3. ownerAccountId : AccountId.t option;
    (*

    The ID of the account that owns the table bucket.

    *)
  4. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the table bucket was created at.

    *)
  5. tableBucketId : TableBucketId.t option;
    (*

    The system-assigned unique identifier for the table bucket.

    *)
  6. type_ : TableBucketType.t option;
    (*

    The type of the table bucket.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?ownerAccountId:??? -> ?createdAt:??? -> ?tableBucketId:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TableBucketARN.t | `Timestamp of SyntheticTimestamp_date_time.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