Module Values.ResolverRuleConfigSource

In an UpdateResolverRule request, information about the changes that you want to make.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The new name for the Resolver rule. The name that you specify appears in the Resolver dashboard in the Route 53 console. The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.

    *)
  2. targetIps : TargetList.t option;
    (*

    For DNS queries that originate in your VPC, the new IP addresses that you want to route outbound DNS queries to.

    *)
  3. resolverEndpointId : ResourceId.t option;
    (*

    The ID of the new outbound Resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify in TargetIps.

    *)
}
Sourceval make : ?name:??? -> ?targetIps:??? -> ?resolverEndpointId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of Port.t | `String of Ip.t ]) list ] list | `String of Name.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