Struct aws_sdk_elasticsearch::model::AutoTuneOptionsInput
source · [−]#[non_exhaustive]pub struct AutoTuneOptionsInput {
pub desired_state: Option<AutoTuneDesiredState>,
pub maintenance_schedules: Option<Vec<AutoTuneMaintenanceSchedule>>,
}
Expand description
Specifies the Auto-Tune options: the Auto-Tune desired state for the domain and list of maintenance schedules.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.desired_state: Option<AutoTuneDesiredState>
Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.
maintenance_schedules: Option<Vec<AutoTuneMaintenanceSchedule>>
Specifies list of maitenance schedules. See the Developer Guide for more information.
Implementations
sourceimpl AutoTuneOptionsInput
impl AutoTuneOptionsInput
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 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 AutoTuneOptionsInput
impl AutoTuneOptionsInput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoTuneOptionsInput
Trait Implementations
sourceimpl Clone for AutoTuneOptionsInput
impl Clone for AutoTuneOptionsInput
sourcefn clone(&self) -> AutoTuneOptionsInput
fn clone(&self) -> AutoTuneOptionsInput
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 more
sourceimpl Debug for AutoTuneOptionsInput
impl Debug for AutoTuneOptionsInput
sourceimpl PartialEq<AutoTuneOptionsInput> for AutoTuneOptionsInput
impl PartialEq<AutoTuneOptionsInput> for AutoTuneOptionsInput
sourcefn eq(&self, other: &AutoTuneOptionsInput) -> bool
fn eq(&self, other: &AutoTuneOptionsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AutoTuneOptionsInput) -> bool
fn ne(&self, other: &AutoTuneOptionsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for AutoTuneOptionsInput
Auto Trait Implementations
impl RefUnwindSafe for AutoTuneOptionsInput
impl Send for AutoTuneOptionsInput
impl Sync for AutoTuneOptionsInput
impl Unpin for AutoTuneOptionsInput
impl UnwindSafe for AutoTuneOptionsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more