Module Values.JournalTableConfigurationResultSource

The journal table configuration for the S3 Metadata configuration.

Sourcetype nonrec t = {
  1. tableStatus : MetadataTableStatus.t option;
    (*

    The status of the journal table. The status values are: CREATING - The journal table is in the process of being created in the specified table bucket. ACTIVE - The journal table has been created successfully, and records are being delivered to the table. FAILED - Amazon S3 is unable to create the journal table, or Amazon S3 is unable to deliver records.

    *)
  2. error : ErrorDetails.t option;
  3. tableName : S3TablesName.t option;
    (*

    The name of the journal table.

    *)
  4. tableArn : S3TablesArn.t option;
    (*

    The Amazon Resource Name (ARN) for the journal table.

    *)
  5. recordExpiration : RecordExpiration.t option;
    (*

    The journal table record expiration settings for the journal table.

    *)
}
Sourceval make : ?tableStatus:??? -> ?error:??? -> ?tableName:??? -> ?tableArn:??? -> ?recordExpiration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MetadataTableStatus.t | `Structure of (string * [> `Enum of string | `Integer of RecordExpirationDays.t | `String of ErrorCode.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