#[non_exhaustive]pub struct LaunchTemplateHibernationOptionsRequestBuilder { /* private fields */ }
Expand description
A builder for LaunchTemplateHibernationOptionsRequest
.
Implementations§
source§impl LaunchTemplateHibernationOptionsRequestBuilder
impl LaunchTemplateHibernationOptionsRequestBuilder
sourcepub fn configured(self, input: bool) -> Self
pub fn configured(self, input: bool) -> Self
If you set this parameter to true
, the instance is enabled for hibernation.
Default: false
sourcepub fn set_configured(self, input: Option<bool>) -> Self
pub fn set_configured(self, input: Option<bool>) -> Self
If you set this parameter to true
, the instance is enabled for hibernation.
Default: false
sourcepub fn get_configured(&self) -> &Option<bool>
pub fn get_configured(&self) -> &Option<bool>
If you set this parameter to true
, the instance is enabled for hibernation.
Default: false
sourcepub fn build(self) -> LaunchTemplateHibernationOptionsRequest
pub fn build(self) -> LaunchTemplateHibernationOptionsRequest
Consumes the builder and constructs a LaunchTemplateHibernationOptionsRequest
.
Trait Implementations§
source§impl Clone for LaunchTemplateHibernationOptionsRequestBuilder
impl Clone for LaunchTemplateHibernationOptionsRequestBuilder
source§fn clone(&self) -> LaunchTemplateHibernationOptionsRequestBuilder
fn clone(&self) -> LaunchTemplateHibernationOptionsRequestBuilder
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 moresource§impl Default for LaunchTemplateHibernationOptionsRequestBuilder
impl Default for LaunchTemplateHibernationOptionsRequestBuilder
source§fn default() -> LaunchTemplateHibernationOptionsRequestBuilder
fn default() -> LaunchTemplateHibernationOptionsRequestBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for LaunchTemplateHibernationOptionsRequestBuilder
impl PartialEq for LaunchTemplateHibernationOptionsRequestBuilder
source§fn eq(&self, other: &LaunchTemplateHibernationOptionsRequestBuilder) -> bool
fn eq(&self, other: &LaunchTemplateHibernationOptionsRequestBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LaunchTemplateHibernationOptionsRequestBuilder
Auto Trait Implementations§
impl Freeze for LaunchTemplateHibernationOptionsRequestBuilder
impl RefUnwindSafe for LaunchTemplateHibernationOptionsRequestBuilder
impl Send for LaunchTemplateHibernationOptionsRequestBuilder
impl Sync for LaunchTemplateHibernationOptionsRequestBuilder
impl Unpin for LaunchTemplateHibernationOptionsRequestBuilder
impl UnwindSafe for LaunchTemplateHibernationOptionsRequestBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.