Module Values.AwsEc2NetworkAclDetailsSource

Contains details about an Amazon EC2 network access control list (ACL).

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

    Whether this is the default network ACL for the VPC.

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

    The identifier of the network ACL.

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

    The identifier of the Amazon Web Services account that owns the network ACL.

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

    The identifier of the VPC for the network ACL.

    *)
  5. associations : AwsEc2NetworkAclAssociationList.t option;
    (*

    Associations between the network ACL and subnets.

    *)
  6. entries : AwsEc2NetworkAclEntryList.t option;
    (*

    The set of rules in the network ACL.

    *)
}
Sourceval make : ?isDefault:??? -> ?networkAclId:??? -> ?ownerId:??? -> ?vpcId:??? -> ?associations:??? -> ?entries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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