Module Values.AwsEc2VpcPeeringConnectionDetailsSource

Provides information about a VPC peering connection between two VPCs: a requester VPC that you own and an accepter VPC with which to create the connection.

Sourcetype nonrec t = {
  1. accepterVpcInfo : AwsEc2VpcPeeringConnectionVpcInfoDetails.t option;
    (*

    Information about the accepter VPC.

    *)
  2. expirationTime : NonEmptyString.t option;
    (*

    The time at which an unaccepted VPC peering connection will expire.

    *)
  3. requesterVpcInfo : AwsEc2VpcPeeringConnectionVpcInfoDetails.t option;
    (*

    Information about the requester VPC.

    *)
  4. status : AwsEc2VpcPeeringConnectionStatusDetails.t option;
    (*

    The status of the VPC peering connection.

    *)
  5. vpcPeeringConnectionId : NonEmptyString.t option;
    (*

    The ID of the VPC peering connection.

    *)
}
Sourceval make : ?accepterVpcInfo:??? -> ?expirationTime:??? -> ?requesterVpcInfo:??? -> ?status:??? -> ?vpcPeeringConnectionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]) 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