#[non_exhaustive]pub struct IntelligentTieringAndOperatorBuilder { /* private fields */ }
Expand description
A builder for IntelligentTieringAndOperator
.
Implementations§
source§impl IntelligentTieringAndOperatorBuilder
impl IntelligentTieringAndOperatorBuilder
sourcepub fn prefix(self, input: impl Into<String>) -> Self
pub fn prefix(self, input: impl Into<String>) -> Self
An object key name prefix that identifies the subset of objects to which the configuration applies.
sourcepub fn set_prefix(self, input: Option<String>) -> Self
pub fn set_prefix(self, input: Option<String>) -> Self
An object key name prefix that identifies the subset of objects to which the configuration applies.
sourcepub fn get_prefix(&self) -> &Option<String>
pub fn get_prefix(&self) -> &Option<String>
An object key name prefix that identifies the subset of objects to which the configuration applies.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
All of these tags must exist in the object's tag set in order for the configuration to apply.
All of these tags must exist in the object's tag set in order for the configuration to apply.
All of these tags must exist in the object's tag set in order for the configuration to apply.
sourcepub fn build(self) -> IntelligentTieringAndOperator
pub fn build(self) -> IntelligentTieringAndOperator
Consumes the builder and constructs a IntelligentTieringAndOperator
.
Trait Implementations§
source§impl Clone for IntelligentTieringAndOperatorBuilder
impl Clone for IntelligentTieringAndOperatorBuilder
source§fn clone(&self) -> IntelligentTieringAndOperatorBuilder
fn clone(&self) -> IntelligentTieringAndOperatorBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for IntelligentTieringAndOperatorBuilder
impl Default for IntelligentTieringAndOperatorBuilder
source§fn default() -> IntelligentTieringAndOperatorBuilder
fn default() -> IntelligentTieringAndOperatorBuilder
source§impl PartialEq for IntelligentTieringAndOperatorBuilder
impl PartialEq for IntelligentTieringAndOperatorBuilder
source§fn eq(&self, other: &IntelligentTieringAndOperatorBuilder) -> bool
fn eq(&self, other: &IntelligentTieringAndOperatorBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IntelligentTieringAndOperatorBuilder
Auto Trait Implementations§
impl Freeze for IntelligentTieringAndOperatorBuilder
impl RefUnwindSafe for IntelligentTieringAndOperatorBuilder
impl Send for IntelligentTieringAndOperatorBuilder
impl Sync for IntelligentTieringAndOperatorBuilder
impl Unpin for IntelligentTieringAndOperatorBuilder
impl UnwindSafe for IntelligentTieringAndOperatorBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more