Module Values.GlobalResolversItemSource

Summary information about a global resolver.

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

    The unique identifier of the global resolver.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the global resolver.

    *)
  3. clientToken : ClientToken.t option;
    (*

    The unique string that identifies the request and ensures idempotency.

    *)
  4. dnsName : Sni.t option;
    (*

    The DNS name of the global resolver.

    *)
  5. observabilityRegion : Region.t option;
    (*

    The Amazon Web Services Region where observability data is collected for the global resolver.

    *)
  6. name : ResourceName.t option;
    (*

    The name of the global resolver.

    *)
  7. description : ResourceDescription.t option;
    (*

    A description of the global resolver.

    *)
  8. regions : Regions.t option;
    (*

    The Amazon Web Services Regions where the global resolver is deployed.

    *)
  9. createdAt : ISO8601TimeString.t option;
    (*

    The date and time when the global resolver was created.

    *)
  10. updatedAt : ISO8601TimeString.t option;
    (*

    The date and time when the global resolver was last updated.

    *)
  11. status : CRResourceStatus.t option;
    (*

    The current status of the global resolver.

    *)
  12. ipv4Addresses : IPv4Addresses.t option;
    (*

    The IPv4 addresses assigned to the global resolver.

    *)
  13. ipv6Addresses : IPv6Addresses.t option;
    (*

    The IPv6 addresses assigned to the global resolver. This field is only populated when ipAddressType is DUAL_STACK.

    *)
  14. ipAddressType : GlobalResolverIpAddressType.t option;
    (*

    The IP address type configured for the global resolver.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?clientToken:??? -> ?dnsName:??? -> ?observabilityRegion:??? -> ?name:??? -> ?description:??? -> ?regions:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> ?ipv4Addresses:??? -> ?ipv6Addresses:??? -> ?ipAddressType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Region.t ] list | `String of ResourceId.t | `Timestamp of ISO8601TimeString.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