Module Values.PrivateConnectionSummarySource

Summary of a Private Connection.

Sourcetype nonrec t = {
  1. name : PrivateConnectionName.t option;
    (*

    The name of the Private Connection.

    *)
  2. type_ : PrivateConnectionType.t option;
    (*

    The type of the Private Connection.

    *)
  3. resourceGatewayId : ResourceGatewayArn.t option;
    (*

    The service-managed Resource Gateway ARN. Only present for service-managed Private Connections.

    *)
  4. hostAddress : IpAddressOrDnsName.t option;
    (*

    IP address or DNS name of the target resource. Only present for service-managed Private Connections.

    *)
  5. vpcId : VpcId.t option;
    (*

    VPC identifier of the service-managed Resource Gateway. Only present for service-managed Private Connections.

    *)
  6. resourceConfigurationId : ResourceConfigurationArn.t option;
    (*

    The Resource Configuration ARN. Only present for self-managed Private Connections.

    *)
  7. status : PrivateConnectionStatus.t option;
    (*

    The status of the Private Connection.

    *)
  8. certificateExpiryTime : SyntheticTimestamp_date_time.t option;
    (*

    The expiry time of the certificate associated with the Private Connection. Only present when a certificate is associated.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?resourceGatewayId:??? -> ?hostAddress:??? -> ?vpcId:??? -> ?resourceConfigurationId:??? -> ?status:??? -> ?certificateExpiryTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PrivateConnectionName.t | `Timestamp of SyntheticTimestamp_date_time.t ]) 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