Module Types.DBProxyTarget

type t = {
target_arn : Aws.BaseTypes.String.t option;
endpoint : Aws.BaseTypes.String.t option;
tracked_cluster_id : Aws.BaseTypes.String.t option;
rds_resource_id : Aws.BaseTypes.String.t option;
port : Aws.BaseTypes.Integer.t option;
type_ : TargetType.t option;
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