Module Values.HostedZoneFeaturesSource

Represents the features configuration for a hosted zone, including the status of various features and any associated failure reasons.

Sourcetype nonrec t = {
  1. acceleratedRecoveryStatus : AcceleratedRecoveryStatus.t option;
    (*

    The current status of accelerated recovery for the hosted zone.

    *)
  2. failureReasons : HostedZoneFailureReasons.t option;
    (*

    Information about any failures that occurred when attempting to enable or configure features for the hosted zone.

    *)
}
Sourceval make : ?acceleratedRecoveryStatus:??? -> ?failureReasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of FailureReason.t ]) list ]) 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