Module Values.ResolverConfigSource

A complex type that contains information about a Resolver configuration for a VPC.

Sourcetype nonrec t = {
  1. id : ResourceId.t option;
    (*

    ID for the Resolver configuration.

    *)
  2. resourceId : ResourceId.t option;
    (*

    The ID of the Amazon Virtual Private Cloud VPC or a Route 53 Profile that you're configuring Resolver for.

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

    The owner account ID of the Amazon Virtual Private Cloud VPC.

    *)
  4. autodefinedReverse : ResolverAutodefinedReverseStatus.t option;
    (*

    The status of whether or not the Resolver will create autodefined rules for reverse DNS lookups. This is enabled by default. The status can be one of following: ENABLING: Autodefined rules for reverse DNS lookups are being enabled but are not complete. ENABLED: Autodefined rules for reverse DNS lookups are enabled. DISABLING: Autodefined rules for reverse DNS lookups are being disabled but are not complete. DISABLED: Autodefined rules for reverse DNS lookups are disabled.

    *)
}
Sourceval make : ?id:??? -> ?resourceId:??? -> ?ownerId:??? -> ?autodefinedReverse:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.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