#[non_exhaustive]pub struct GetAdapterOutputBuilder { /* private fields */ }
Expand description
A builder for GetAdapterOutput
.
Implementations§
source§impl GetAdapterOutputBuilder
impl GetAdapterOutputBuilder
sourcepub fn adapter_id(self, input: impl Into<String>) -> Self
pub fn adapter_id(self, input: impl Into<String>) -> Self
A string identifying the adapter that information has been retrieved for.
sourcepub fn set_adapter_id(self, input: Option<String>) -> Self
pub fn set_adapter_id(self, input: Option<String>) -> Self
A string identifying the adapter that information has been retrieved for.
sourcepub fn get_adapter_id(&self) -> &Option<String>
pub fn get_adapter_id(&self) -> &Option<String>
A string identifying the adapter that information has been retrieved for.
sourcepub fn adapter_name(self, input: impl Into<String>) -> Self
pub fn adapter_name(self, input: impl Into<String>) -> Self
The name of the requested adapter.
sourcepub fn set_adapter_name(self, input: Option<String>) -> Self
pub fn set_adapter_name(self, input: Option<String>) -> Self
The name of the requested adapter.
sourcepub fn get_adapter_name(&self) -> &Option<String>
pub fn get_adapter_name(&self) -> &Option<String>
The name of the requested adapter.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The date and time the requested adapter was created at.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The date and time the requested adapter was created at.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The date and time the requested adapter was created at.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description for the requested adapter.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description for the requested adapter.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description for the requested adapter.
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 requested 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 requested 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 requested adapter.
sourcepub fn auto_update(self, input: AutoUpdate) -> Self
pub fn auto_update(self, input: AutoUpdate) -> Self
Binary value indicating if the adapter is being automatically updated or not.
sourcepub fn set_auto_update(self, input: Option<AutoUpdate>) -> Self
pub fn set_auto_update(self, input: Option<AutoUpdate>) -> Self
Binary value indicating if the adapter is being automatically updated or not.
sourcepub fn get_auto_update(&self) -> &Option<AutoUpdate>
pub fn get_auto_update(&self) -> &Option<AutoUpdate>
Binary value indicating if the adapter is being automatically updated or not.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
A set of tags (key-value pairs) associated with the adapter that has been retrieved.
A set of tags (key-value pairs) associated with the adapter that has been retrieved.
A set of tags (key-value pairs) associated with the adapter that has been retrieved.
sourcepub fn build(self) -> GetAdapterOutput
pub fn build(self) -> GetAdapterOutput
Consumes the builder and constructs a GetAdapterOutput
.
Trait Implementations§
source§impl Clone for GetAdapterOutputBuilder
impl Clone for GetAdapterOutputBuilder
source§fn clone(&self) -> GetAdapterOutputBuilder
fn clone(&self) -> GetAdapterOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetAdapterOutputBuilder
impl Debug for GetAdapterOutputBuilder
source§impl Default for GetAdapterOutputBuilder
impl Default for GetAdapterOutputBuilder
source§fn default() -> GetAdapterOutputBuilder
fn default() -> GetAdapterOutputBuilder
source§impl PartialEq for GetAdapterOutputBuilder
impl PartialEq for GetAdapterOutputBuilder
source§fn eq(&self, other: &GetAdapterOutputBuilder) -> bool
fn eq(&self, other: &GetAdapterOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetAdapterOutputBuilder
Auto Trait Implementations§
impl Freeze for GetAdapterOutputBuilder
impl RefUnwindSafe for GetAdapterOutputBuilder
impl Send for GetAdapterOutputBuilder
impl Sync for GetAdapterOutputBuilder
impl Unpin for GetAdapterOutputBuilder
impl UnwindSafe for GetAdapterOutputBuilder
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