Module Values.AvailabilityZoneSource

Information about an Availability Zone.

Sourcetype nonrec t = {
  1. zoneName : ZoneName.t option;
    (*

    The name of the Availability Zone.

    *)
  2. subnetId : SubnetId.t option;
    (*

    The ID of the subnet. You can specify one subnet per Availability Zone.

    *)
  3. outpostId : OutpostId.t option;
    (*

    [Application Load Balancers on Outposts] The ID of the Outpost.

    *)
  4. loadBalancerAddresses : LoadBalancerAddresses.t option;
    (*

    [Network Load Balancers] If you need static IP addresses for your load balancer, you can specify one Elastic IP address per Availability Zone when you create an internal-facing load balancer. For internal load balancers, you can specify a private IP address from the IPv4 range of the subnet.

    *)
  5. sourceNatIpv6Prefixes : SourceNatIpv6Prefixes.t option;
    (*

    [Network Load Balancers with UDP listeners] The IPv6 prefixes to use for source NAT. For each subnet, specify an IPv6 prefix (/80 netmask) from the subnet CIDR block or auto_assigned to use an IPv6 prefix selected at random from the subnet CIDR block.

    *)
}
Sourceval make : ?zoneName:??? -> ?subnetId:??? -> ?outpostId:??? -> ?loadBalancerAddresses:??? -> ?sourceNatIpv6Prefixes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SourceNatIpv6Prefix.t | `Structure of (string * [> `String of IpAddress.t ]) list ] list | `String of ZoneName.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