Struct aws_sdk_elasticsearch::model::AutoTuneOptions
source · [−]#[non_exhaustive]pub struct AutoTuneOptions { /* private fields */ }
Expand description
Specifies the Auto-Tune options: the Auto-Tune desired state for the domain, rollback state when disabling Auto-Tune options and list of maintenance schedules.
Implementations
sourceimpl AutoTuneOptions
impl AutoTuneOptions
sourcepub fn desired_state(&self) -> Option<&AutoTuneDesiredState>
pub fn desired_state(&self) -> Option<&AutoTuneDesiredState>
Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.
sourcepub fn rollback_on_disable(&self) -> Option<&RollbackOnDisable>
pub fn rollback_on_disable(&self) -> Option<&RollbackOnDisable>
Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.
sourcepub fn maintenance_schedules(&self) -> Option<&[AutoTuneMaintenanceSchedule]>
pub fn maintenance_schedules(&self) -> Option<&[AutoTuneMaintenanceSchedule]>
Specifies list of maitenance schedules. See the Developer Guide for more information.
sourceimpl AutoTuneOptions
impl AutoTuneOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoTuneOptions
.
Trait Implementations
sourceimpl Clone for AutoTuneOptions
impl Clone for AutoTuneOptions
sourcefn clone(&self) -> AutoTuneOptions
fn clone(&self) -> AutoTuneOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AutoTuneOptions
impl Debug for AutoTuneOptions
sourceimpl PartialEq<AutoTuneOptions> for AutoTuneOptions
impl PartialEq<AutoTuneOptions> for AutoTuneOptions
sourcefn eq(&self, other: &AutoTuneOptions) -> bool
fn eq(&self, other: &AutoTuneOptions) -> bool
impl StructuralPartialEq for AutoTuneOptions
Auto Trait Implementations
impl RefUnwindSafe for AutoTuneOptions
impl Send for AutoTuneOptions
impl Sync for AutoTuneOptions
impl Unpin for AutoTuneOptions
impl UnwindSafe for AutoTuneOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more