#[non_exhaustive]pub struct AwsDynamoDbTableStreamSpecificationBuilder { /* private fields */ }
Expand description
A builder for AwsDynamoDbTableStreamSpecification
.
Implementations§
source§impl AwsDynamoDbTableStreamSpecificationBuilder
impl AwsDynamoDbTableStreamSpecificationBuilder
sourcepub fn stream_enabled(self, input: bool) -> Self
pub fn stream_enabled(self, input: bool) -> Self
Indicates whether DynamoDB Streams is enabled on the table.
sourcepub fn set_stream_enabled(self, input: Option<bool>) -> Self
pub fn set_stream_enabled(self, input: Option<bool>) -> Self
Indicates whether DynamoDB Streams is enabled on the table.
sourcepub fn get_stream_enabled(&self) -> &Option<bool>
pub fn get_stream_enabled(&self) -> &Option<bool>
Indicates whether DynamoDB Streams is enabled on the table.
sourcepub fn stream_view_type(self, input: impl Into<String>) -> Self
pub fn stream_view_type(self, input: impl Into<String>) -> Self
Determines the information that is written to the table.
sourcepub fn set_stream_view_type(self, input: Option<String>) -> Self
pub fn set_stream_view_type(self, input: Option<String>) -> Self
Determines the information that is written to the table.
sourcepub fn get_stream_view_type(&self) -> &Option<String>
pub fn get_stream_view_type(&self) -> &Option<String>
Determines the information that is written to the table.
sourcepub fn build(self) -> AwsDynamoDbTableStreamSpecification
pub fn build(self) -> AwsDynamoDbTableStreamSpecification
Consumes the builder and constructs a AwsDynamoDbTableStreamSpecification
.
Trait Implementations§
source§impl Clone for AwsDynamoDbTableStreamSpecificationBuilder
impl Clone for AwsDynamoDbTableStreamSpecificationBuilder
source§fn clone(&self) -> AwsDynamoDbTableStreamSpecificationBuilder
fn clone(&self) -> AwsDynamoDbTableStreamSpecificationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for AwsDynamoDbTableStreamSpecificationBuilder
impl Default for AwsDynamoDbTableStreamSpecificationBuilder
source§fn default() -> AwsDynamoDbTableStreamSpecificationBuilder
fn default() -> AwsDynamoDbTableStreamSpecificationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AwsDynamoDbTableStreamSpecificationBuilder
impl PartialEq for AwsDynamoDbTableStreamSpecificationBuilder
source§fn eq(&self, other: &AwsDynamoDbTableStreamSpecificationBuilder) -> bool
fn eq(&self, other: &AwsDynamoDbTableStreamSpecificationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsDynamoDbTableStreamSpecificationBuilder
Auto Trait Implementations§
impl Freeze for AwsDynamoDbTableStreamSpecificationBuilder
impl RefUnwindSafe for AwsDynamoDbTableStreamSpecificationBuilder
impl Send for AwsDynamoDbTableStreamSpecificationBuilder
impl Sync for AwsDynamoDbTableStreamSpecificationBuilder
impl Unpin for AwsDynamoDbTableStreamSpecificationBuilder
impl UnwindSafe for AwsDynamoDbTableStreamSpecificationBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.