Module Values.IpamCidrConfigSource

Configuration for an IPAM CIDR that defines a specific IP address range, IPAM pool, and associated Anycast IP address.

Sourcetype nonrec t = {
  1. cidr : String_.t;
    (*

    The CIDR that specifies the IP address range for this IPAM configuration.

    *)
  2. ipamPoolArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to.

    *)
  3. anycastIp : String_.t option;
    (*

    The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration.

    *)
  4. status : IpamCidrStatus.t option;
    (*

    The current status of the IPAM CIDR configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?anycastIp:??? -> ?status:??? -> cidr:String_.t -> ipamPoolArn:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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