Module Values.DescribeRegionSettingsOutputSource

Returns the current service opt-in settings for the Region. If service opt-in is enabled for a service, Backup tries to protect that service's resources in this Region, when the resource is included in an on-demand backup or scheduled backup plan. Otherwise, Backup does not try to protect that service's resources in this Region.

Sourcetype nonrec t = {
  1. resourceTypeOptInPreference : ResourceTypeOptInPreference.t option;
    (*

    The services along with the opt-in preferences in the Region.

    *)
  2. resourceTypeManagementPreference : ResourceTypeManagementPreference.t option;
    (*

    Returns whether Backup fully manages the backups for a resource type. For the benefits of full Backup management, see Full Backup management. For a list of resource types and whether each supports full Backup management, see the Feature availability by resource table. If "DynamoDB":false, you can enable full Backup management for DynamoDB backup by enabling Backup's advanced DynamoDB backup features.

    *)
}
Sourcetype nonrec error = [
  1. | `ServiceUnavailableException of ServiceUnavailableException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?resourceTypeOptInPreference:??? -> ?resourceTypeManagementPreference:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ServiceUnavailableException of ServiceUnavailableException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ResourceType.t ] * [> `Boolean of IsEnabled.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