Struct aws_sdk_iotanalytics::operation::describe_datastore::builders::DescribeDatastoreInputBuilder
source · #[non_exhaustive]pub struct DescribeDatastoreInputBuilder { /* private fields */ }
Expand description
A builder for DescribeDatastoreInput
.
Implementations§
source§impl DescribeDatastoreInputBuilder
impl DescribeDatastoreInputBuilder
sourcepub fn datastore_name(self, input: impl Into<String>) -> Self
pub fn datastore_name(self, input: impl Into<String>) -> Self
The name of the data store
This field is required.sourcepub fn set_datastore_name(self, input: Option<String>) -> Self
pub fn set_datastore_name(self, input: Option<String>) -> Self
The name of the data store
sourcepub fn get_datastore_name(&self) -> &Option<String>
pub fn get_datastore_name(&self) -> &Option<String>
The name of the data store
sourcepub fn include_statistics(self, input: bool) -> Self
pub fn include_statistics(self, input: bool) -> Self
If true, additional statistical information about the data store is included in the response. This feature can't be used with a data store whose S3 storage is customer-managed.
sourcepub fn set_include_statistics(self, input: Option<bool>) -> Self
pub fn set_include_statistics(self, input: Option<bool>) -> Self
If true, additional statistical information about the data store is included in the response. This feature can't be used with a data store whose S3 storage is customer-managed.
sourcepub fn get_include_statistics(&self) -> &Option<bool>
pub fn get_include_statistics(&self) -> &Option<bool>
If true, additional statistical information about the data store is included in the response. This feature can't be used with a data store whose S3 storage is customer-managed.
sourcepub fn build(self) -> Result<DescribeDatastoreInput, BuildError>
pub fn build(self) -> Result<DescribeDatastoreInput, BuildError>
Consumes the builder and constructs a DescribeDatastoreInput
.
source§impl DescribeDatastoreInputBuilder
impl DescribeDatastoreInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DescribeDatastoreOutput, SdkError<DescribeDatastoreError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DescribeDatastoreOutput, SdkError<DescribeDatastoreError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeDatastoreInputBuilder
impl Clone for DescribeDatastoreInputBuilder
source§fn clone(&self) -> DescribeDatastoreInputBuilder
fn clone(&self) -> DescribeDatastoreInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeDatastoreInputBuilder
impl Default for DescribeDatastoreInputBuilder
source§fn default() -> DescribeDatastoreInputBuilder
fn default() -> DescribeDatastoreInputBuilder
source§impl PartialEq for DescribeDatastoreInputBuilder
impl PartialEq for DescribeDatastoreInputBuilder
source§fn eq(&self, other: &DescribeDatastoreInputBuilder) -> bool
fn eq(&self, other: &DescribeDatastoreInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDatastoreInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeDatastoreInputBuilder
impl RefUnwindSafe for DescribeDatastoreInputBuilder
impl Send for DescribeDatastoreInputBuilder
impl Sync for DescribeDatastoreInputBuilder
impl Unpin for DescribeDatastoreInputBuilder
impl UnwindSafe for DescribeDatastoreInputBuilder
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