Module Values.ClientVpcConnectionSource

The client VPC connection object.

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

    Information about the auth scheme of Vpc Connection.

    *)
  2. creationTime : string option;
    (*

    Creation time of the Vpc Connection.

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

    State of the Vpc Connection.

    *)
  4. vpcConnectionArn : string option;
    (*

    The ARN that identifies the Vpc Connection.

    *)
  5. owner : string option;
    (*

    The Owner of the Vpc Connection.

    *)
}
Sourceval make : ?authentication:??? -> ?creationTime:??? -> ?state:??? -> ?vpcConnectionArn:??? -> ?owner:??? -> 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