Module Values.AwsEc2VpcPeeringConnectionVpcInfoDetailsSource

Describes a VPC in a VPC peering connection.

Sourcetype nonrec t = {
  1. cidrBlock : NonEmptyString.t option;
    (*

    The IPv4 CIDR block for the VPC.

    *)
  2. cidrBlockSet : VpcInfoCidrBlockSetList.t option;
    (*

    Information about the IPv4 CIDR blocks for the VPC.

    *)
  3. ipv6CidrBlockSet : VpcInfoIpv6CidrBlockSetList.t option;
    (*

    The IPv6 CIDR block for the VPC.

    *)
  4. ownerId : NonEmptyString.t option;
    (*

    The ID of the Amazon Web Services account that owns the VPC.

    *)
  5. peeringOptions : VpcInfoPeeringOptionsDetails.t option;
    (*

    Information about the VPC peering connection options for the accepter or requester VPC.

    *)
  6. region : NonEmptyString.t option;
    (*

    The Amazon Web Services Region in which the VPC is located.

    *)
  7. vpcId : NonEmptyString.t option;
    (*

    The ID of the VPC.

    *)
}
Sourceval make : ?cidrBlock:??? -> ?cidrBlockSet:??? -> ?ipv6CidrBlockSet:??? -> ?ownerId:??? -> ?peeringOptions:??? -> ?region:??? -> ?vpcId:??? -> unit -> t
Sourceval to_value : 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 ]
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