Module Values.AwsEc2SubnetDetailsSource

Contains information about a subnet in Amazon EC2.

Sourcetype nonrec t = {
  1. assignIpv6AddressOnCreation : Boolean.t option;
    (*

    Whether to assign an IPV6 address to a network interface that is created in this subnet.

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

    The Availability Zone for the subnet.

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

    The identifier of the Availability Zone for the subnet.

    *)
  4. availableIpAddressCount : Integer.t option;
    (*

    The number of available IPV4 addresses in the subnet. Does not include addresses for stopped instances.

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

    The IPV4 CIDR block that is assigned to the subnet.

    *)
  6. defaultForAz : Boolean.t option;
    (*

    Whether this subnet is the default subnet for the Availability Zone.

    *)
  7. mapPublicIpOnLaunch : Boolean.t option;
    (*

    Whether instances in this subnet receive a public IP address.

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

    The identifier of the Amazon Web Services account that owns the subnet.

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

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

    *)
  10. subnetArn : NonEmptyString.t option;
    (*

    The ARN of the subnet.

    *)
  11. subnetId : NonEmptyString.t option;
    (*

    The identifier of the subnet.

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

    The identifier of the VPC that contains the subnet.

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

    The IPV6 CIDR blocks that are associated with the subnet.

    *)
}
Sourceval make : ?assignIpv6AddressOnCreation:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?availableIpAddressCount:??? -> ?cidrBlock:??? -> ?defaultForAz:??? -> ?mapPublicIpOnLaunch:??? -> ?ownerId:??? -> ?state:??? -> ?subnetArn:??? -> ?subnetId:??? -> ?vpcId:??? -> ?ipv6CidrBlockAssociationSet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `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