Module Values.TimestreamRegistrationResponseSource

Information about the registered Amazon Timestream resources or errors, if any.

Sourcetype nonrec t = {
  1. timestreamDatabaseName : TimestreamDatabaseName.t option;
    (*

    The name of the Timestream database.

    *)
  2. timestreamTableName : TimestreamTableName.t option;
    (*

    The name of the Timestream database table.

    *)
  3. timestreamDatabaseArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Timestream database.

    *)
  4. timestreamTableArn : Arn.t option;
    (*

    The ARN of the Timestream database table.

    *)
  5. registrationStatus : RegistrationStatus.t option;
    (*

    The status of registering your Amazon Timestream resources. The status can be one of REGISTRATION_SUCCESS, REGISTRATION_PENDING, REGISTRATION_FAILURE.

    *)
  6. errorMessage : ErrorMessage.t option;
    (*

    A message associated with a registration error.

    *)
}
Sourceval make : ?timestreamDatabaseName:??? -> ?timestreamTableName:??? -> ?timestreamDatabaseArn:??? -> ?timestreamTableArn:??? -> ?registrationStatus:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TimestreamDatabaseName.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