Module Values.AwsEc2VpcDetailsSource

Details about an EC2 VPC.

Sourcetype nonrec t = {
  1. cidrBlockAssociationSet : CidrBlockAssociationList.t option;
    (*

    Information about the IPv4 CIDR blocks associated with the VPC.

    *)
  2. ipv6CidrBlockAssociationSet : Ipv6CidrBlockAssociationList.t option;
    (*

    Information about the IPv6 CIDR blocks associated with the VPC.

    *)
  3. dhcpOptionsId : NonEmptyString.t option;
    (*

    The identifier of the set of Dynamic Host Configuration Protocol (DHCP) options that are associated with the VPC. If the default options are associated with the VPC, then this is default.

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

    The current state of the VPC. Valid values are available or pending.

    *)
}
Sourceval make : ?cidrBlockAssociationSet:??? -> ?ipv6CidrBlockAssociationSet:??? -> ?dhcpOptionsId:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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