Module Values.Ipv6CidrBlockAssociationSource

An IPV6 CIDR block association.

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

    The association ID for the IPv6 CIDR block.

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

    The IPv6 CIDR block.

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

    Information about the state of the CIDR block. Valid values are as follows: associating associated disassociating disassociated failed failing

    *)
}
Sourceval make : ?associationId:??? -> ?ipv6CidrBlock:??? -> ?cidrBlockState:??? -> 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