package aws-rds

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.DBInstanceStatusInfoSource

Sourcetype t = {
  1. status_type : Aws.BaseTypes.String.t option;
  2. normal : Aws.BaseTypes.Boolean.t option;
  3. status : Aws.BaseTypes.String.t option;
  4. message : Aws.BaseTypes.String.t option;
}
Sourceval make : ?status_type:Aws.BaseTypes.String.t -> ?normal:Aws.BaseTypes.Boolean.t -> ?status:Aws.BaseTypes.String.t -> ?message:Aws.BaseTypes.String.t -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t