pub struct StreamSpecification {
pub stream_enabled: bool,
pub stream_view_type: Option<StreamViewType>,
}Expand description
Stream specification for enabling DynamoDB Streams on a table.
Fields§
§stream_enabled: boolWhether DynamoDB Streams is enabled on the table.
stream_view_type: Option<StreamViewType>What information is written to the stream when an item is modified.
Trait Implementations§
Source§impl Clone for StreamSpecification
impl Clone for StreamSpecification
Source§fn clone(&self) -> StreamSpecification
fn clone(&self) -> StreamSpecification
Returns a duplicate 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 Debug for StreamSpecification
impl Debug for StreamSpecification
Source§impl Default for StreamSpecification
impl Default for StreamSpecification
Source§fn default() -> StreamSpecification
fn default() -> StreamSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamSpecification
impl<'de> Deserialize<'de> for StreamSpecification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StreamSpecification
impl RefUnwindSafe for StreamSpecification
impl Send for StreamSpecification
impl Sync for StreamSpecification
impl Unpin for StreamSpecification
impl UnsafeUnpin for StreamSpecification
impl UnwindSafe for StreamSpecification
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