#[non_exhaustive]pub struct UpdateAdapterOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateAdapterOutput
.
Implementations§
source§impl UpdateAdapterOutputBuilder
impl UpdateAdapterOutputBuilder
sourcepub fn adapter_id(self, input: impl Into<String>) -> Self
pub fn adapter_id(self, input: impl Into<String>) -> Self
A string containing a unique ID for the adapter that has been updated.
sourcepub fn set_adapter_id(self, input: Option<String>) -> Self
pub fn set_adapter_id(self, input: Option<String>) -> Self
A string containing a unique ID for the adapter that has been updated.
sourcepub fn get_adapter_id(&self) -> &Option<String>
pub fn get_adapter_id(&self) -> &Option<String>
A string containing a unique ID for the adapter that has been updated.
sourcepub fn adapter_name(self, input: impl Into<String>) -> Self
pub fn adapter_name(self, input: impl Into<String>) -> Self
A string containing the name of the adapter that has been updated.
sourcepub fn set_adapter_name(self, input: Option<String>) -> Self
pub fn set_adapter_name(self, input: Option<String>) -> Self
A string containing the name of the adapter that has been updated.
sourcepub fn get_adapter_name(&self) -> &Option<String>
pub fn get_adapter_name(&self) -> &Option<String>
A string containing the name of the adapter that has been updated.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
An object specifying the creation time of the the adapter that has been updated.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
An object specifying the creation time of the the adapter that has been updated.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
An object specifying the creation time of the the adapter that has been updated.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A string containing the description of the adapter that has been updated.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A string containing the description of the adapter that has been updated.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A string containing the description of the adapter that has been updated.
sourcepub fn feature_types(self, input: FeatureType) -> Self
pub fn feature_types(self, input: FeatureType) -> Self
Appends an item to feature_types
.
To override the contents of this collection use set_feature_types
.
List of the targeted feature types for the updated adapter.
sourcepub fn set_feature_types(self, input: Option<Vec<FeatureType>>) -> Self
pub fn set_feature_types(self, input: Option<Vec<FeatureType>>) -> Self
List of the targeted feature types for the updated adapter.
sourcepub fn get_feature_types(&self) -> &Option<Vec<FeatureType>>
pub fn get_feature_types(&self) -> &Option<Vec<FeatureType>>
List of the targeted feature types for the updated adapter.
sourcepub fn auto_update(self, input: AutoUpdate) -> Self
pub fn auto_update(self, input: AutoUpdate) -> Self
The auto-update status of the adapter that has been updated.
sourcepub fn set_auto_update(self, input: Option<AutoUpdate>) -> Self
pub fn set_auto_update(self, input: Option<AutoUpdate>) -> Self
The auto-update status of the adapter that has been updated.
sourcepub fn get_auto_update(&self) -> &Option<AutoUpdate>
pub fn get_auto_update(&self) -> &Option<AutoUpdate>
The auto-update status of the adapter that has been updated.
sourcepub fn build(self) -> UpdateAdapterOutput
pub fn build(self) -> UpdateAdapterOutput
Consumes the builder and constructs a UpdateAdapterOutput
.
Trait Implementations§
source§impl Clone for UpdateAdapterOutputBuilder
impl Clone for UpdateAdapterOutputBuilder
source§fn clone(&self) -> UpdateAdapterOutputBuilder
fn clone(&self) -> UpdateAdapterOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateAdapterOutputBuilder
impl Debug for UpdateAdapterOutputBuilder
source§impl Default for UpdateAdapterOutputBuilder
impl Default for UpdateAdapterOutputBuilder
source§fn default() -> UpdateAdapterOutputBuilder
fn default() -> UpdateAdapterOutputBuilder
source§impl PartialEq for UpdateAdapterOutputBuilder
impl PartialEq for UpdateAdapterOutputBuilder
source§fn eq(&self, other: &UpdateAdapterOutputBuilder) -> bool
fn eq(&self, other: &UpdateAdapterOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateAdapterOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateAdapterOutputBuilder
impl RefUnwindSafe for UpdateAdapterOutputBuilder
impl Send for UpdateAdapterOutputBuilder
impl Sync for UpdateAdapterOutputBuilder
impl Unpin for UpdateAdapterOutputBuilder
impl UnwindSafe for UpdateAdapterOutputBuilder
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> 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