#[non_exhaustive]pub struct ScheduledAutoTuneDetails { /* private fields */ }
Expand description
Specifies details of the scheduled Auto-Tune action. See the Developer Guide for more information.
Implementations
sourceimpl ScheduledAutoTuneDetails
impl ScheduledAutoTuneDetails
sourcepub fn date(&self) -> Option<&DateTime>
pub fn date(&self) -> Option<&DateTime>
Specifies timestamp for the Auto-Tune action scheduled for the domain.
sourcepub fn action_type(&self) -> Option<&ScheduledAutoTuneActionType>
pub fn action_type(&self) -> Option<&ScheduledAutoTuneActionType>
Specifies Auto-Tune action type. Valid values are JVM_HEAP_SIZE_TUNING and JVM_YOUNG_GEN_TUNING.
sourcepub fn severity(&self) -> Option<&ScheduledAutoTuneSeverityType>
pub fn severity(&self) -> Option<&ScheduledAutoTuneSeverityType>
Specifies Auto-Tune action severity. Valid values are LOW, MEDIUM and HIGH.
sourceimpl ScheduledAutoTuneDetails
impl ScheduledAutoTuneDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduledAutoTuneDetails
.
Trait Implementations
sourceimpl Clone for ScheduledAutoTuneDetails
impl Clone for ScheduledAutoTuneDetails
sourcefn clone(&self) -> ScheduledAutoTuneDetails
fn clone(&self) -> ScheduledAutoTuneDetails
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 ScheduledAutoTuneDetails
impl Debug for ScheduledAutoTuneDetails
sourceimpl PartialEq<ScheduledAutoTuneDetails> for ScheduledAutoTuneDetails
impl PartialEq<ScheduledAutoTuneDetails> for ScheduledAutoTuneDetails
sourcefn eq(&self, other: &ScheduledAutoTuneDetails) -> bool
fn eq(&self, other: &ScheduledAutoTuneDetails) -> bool
impl StructuralPartialEq for ScheduledAutoTuneDetails
Auto Trait Implementations
impl RefUnwindSafe for ScheduledAutoTuneDetails
impl Send for ScheduledAutoTuneDetails
impl Sync for ScheduledAutoTuneDetails
impl Unpin for ScheduledAutoTuneDetails
impl UnwindSafe for ScheduledAutoTuneDetails
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