Module Values.AwsEc2NetworkAclAssociationSource

An association between the network ACL and a subnet.

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

    The identifier of the association between the network ACL and the subnet.

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

    The identifier of the network ACL.

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

    The identifier of the subnet that is associated with the network ACL.

    *)
}
Sourceval make : ?networkAclAssociationId:??? -> ?networkAclId:??? -> ?subnetId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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