pub struct RRSetRoutingPolicyGeoPolicy {
pub enable_fencing: Option<bool>,
pub items: Option<Vec<RRSetRoutingPolicyGeoPolicyGeoPolicyItem>>,
pub kind: Option<String>,
}Expand description
Configures a RRSetRoutingPolicy that routes based on the geo location of the querying user.
This type is not used in any activity, and only used as part of another schema.
Fields§
§enable_fencing: Option<bool>Without fencing, if health check fails for all configured items in the current geo bucket, we failover to the next nearest geo bucket. With fencing, if health checking is enabled, as long as some targets in the current geo bucket are healthy, we return only the healthy targets. However, if all targets are unhealthy, we don’t failover to the next nearest bucket; instead, we return all the items in the current bucket even when all targets are unhealthy.
items: Option<Vec<RRSetRoutingPolicyGeoPolicyGeoPolicyItem>>The primary geo routing configuration. If there are multiple items with the same location, an error is returned instead.
kind: Option<String>no description provided
Trait Implementations§
Source§impl Clone for RRSetRoutingPolicyGeoPolicy
impl Clone for RRSetRoutingPolicyGeoPolicy
Source§fn clone(&self) -> RRSetRoutingPolicyGeoPolicy
fn clone(&self) -> RRSetRoutingPolicyGeoPolicy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more