#[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 ==
.