Module Values.VpcConnectionSource

The VPC connection object.

Sourcetype nonrec t = {
  1. vpcConnectionArn : string option;
    (*

    The ARN that identifies the Vpc Connection.

    *)
  2. targetClusterArn : string option;
    (*

    The ARN that identifies the Cluster which the Vpc Connection belongs to.

    *)
  3. creationTime : string option;
    (*

    Creation time of the Vpc Connection.

    *)
  4. authentication : string option;
    (*

    Information about the auth scheme of Vpc Connection.

    *)
  5. vpcId : string option;
    (*

    The vpcId that belongs to the Vpc Connection.

    *)
  6. state : VpcConnectionState.t option;
    (*

    State of the Vpc Connection.

    *)
}
Sourceval make : ?vpcConnectionArn:??? -> ?targetClusterArn:??? -> ?creationTime:??? -> ?authentication:??? -> ?vpcId:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Timestamp of string ]) 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