Module Values.DNSViewSummarySource

Summary information about a DNS view.

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

    The unique identifier of the DNS view.

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

    The Amazon Resource Name (ARN) of the DNS view.

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

    The unique string that identifies the request and ensures idempotency.

    *)
  4. dnssecValidation : DnsSecValidationType.t option;
    (*

    Whether DNSSEC validation is enabled for the DNS view.

    *)
  5. ednsClientSubnet : EdnsClientSubnetType.t option;
    (*

    Whether EDNS Client Subnet injection is enabled for the DNS view.

    *)
  6. firewallRulesFailOpen : FirewallRulesFailOpenType.t option;
    (*

    Whether firewall rules fail open when they cannot be evaluated.

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

    The name of the DNS view.

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

    A description of the DNS view.

    *)
  9. globalResolverId : ResourceId.t option;
    (*

    The ID of the global resolver that the DNS view is associated with.

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

    The date and time when the DNS view was created.

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

    The date and time when the DNS view was last updated.

    *)
  12. status : ProfileResourceStatus.t option;
    (*

    The current status of the DNS view.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?clientToken:??? -> ?dnssecValidation:??? -> ?ednsClientSubnet:??? -> ?firewallRulesFailOpen:??? -> ?name:??? -> ?description:??? -> ?globalResolverId:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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