pub struct Domain {
pub enabled: bool,
pub failover_metrics: bool,
pub metric_allowlist: Vec<String>,
pub api_key: Option<String>,
pub site: Option<String>,
pub dd_url: Option<String>,
}Expand description
Resolved Multi-Region Failover configuration.
Fields§
§enabled: boolWhether multi-region failover is active.
failover_metrics: boolWhether metrics are mirrored to the failover region.
metric_allowlist: Vec<String>Metrics permitted to be sent to the failover region.
api_key: Option<String>API key used to authenticate to the failover region.
site: Option<String>Datadog site of the failover region.
dd_url: Option<String>Explicit intake URL for the failover region, overriding the site.
Trait Implementations§
impl StructuralPartialEq for Domain
Auto Trait Implementations§
impl Freeze for Domain
impl RefUnwindSafe for Domain
impl Send for Domain
impl Sync for Domain
impl Unpin for Domain
impl UnwindSafe for Domain
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more