package aws-rds

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. target_arn : Aws.BaseTypes.String.t option;
  2. endpoint : Aws.BaseTypes.String.t option;
  3. tracked_cluster_id : Aws.BaseTypes.String.t option;
  4. rds_resource_id : Aws.BaseTypes.String.t option;
  5. port : Aws.BaseTypes.Integer.t option;
  6. type_ : TargetType.t option;
  7. target_health : TargetHealth.t option;
}
val make : ?target_arn:Aws.BaseTypes.String.t -> ?endpoint:Aws.BaseTypes.String.t -> ?tracked_cluster_id:Aws.BaseTypes.String.t -> ?rds_resource_id:Aws.BaseTypes.String.t -> ?port:Aws.BaseTypes.Integer.t -> ?type_:TargetType.t -> ?target_health:TargetHealth.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t