Struct aws_sdk_opensearch::model::AutoTuneOptions
source · #[non_exhaustive]pub struct AutoTuneOptions { /* private fields */ }
Expand description
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§
source§impl AutoTuneOptions
impl AutoTuneOptions
sourcepub fn desired_state(&self) -> Option<&AutoTuneDesiredState>
pub fn desired_state(&self) -> Option<&AutoTuneDesiredState>
The Auto-Tune desired state. Valid values are ENABLED and DISABLED.
sourcepub fn rollback_on_disable(&self) -> Option<&RollbackOnDisable>
pub fn rollback_on_disable(&self) -> Option<&RollbackOnDisable>
The rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK and DEFAULT_ROLLBACK.
sourcepub fn maintenance_schedules(&self) -> Option<&[AutoTuneMaintenanceSchedule]>
pub fn maintenance_schedules(&self) -> Option<&[AutoTuneMaintenanceSchedule]>
A list of maintenance schedules. See Auto-Tune for Amazon OpenSearch Service for more information.
source§impl AutoTuneOptions
impl AutoTuneOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoTuneOptions
.
Trait Implementations§
source§impl Clone for AutoTuneOptions
impl Clone for AutoTuneOptions
source§fn clone(&self) -> AutoTuneOptions
fn clone(&self) -> AutoTuneOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more