pub struct KinesisStreamingDestinationOutput {
pub destination_status: Option<String>,
pub stream_arn: Option<String>,
pub table_name: Option<String>,
}
Fields§
§destination_status: Option<String>
The current status of the replication.
stream_arn: Option<String>
The ARN for the specific Kinesis data stream.
table_name: Option<String>
The name of the table being modified.
Trait Implementations§
Source§impl Clone for KinesisStreamingDestinationOutput
impl Clone for KinesisStreamingDestinationOutput
Source§fn clone(&self) -> KinesisStreamingDestinationOutput
fn clone(&self) -> KinesisStreamingDestinationOutput
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 Default for KinesisStreamingDestinationOutput
impl Default for KinesisStreamingDestinationOutput
Source§fn default() -> KinesisStreamingDestinationOutput
fn default() -> KinesisStreamingDestinationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KinesisStreamingDestinationOutput
impl<'de> Deserialize<'de> for KinesisStreamingDestinationOutput
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
Source§impl PartialEq for KinesisStreamingDestinationOutput
impl PartialEq for KinesisStreamingDestinationOutput
Source§fn eq(&self, other: &KinesisStreamingDestinationOutput) -> bool
fn eq(&self, other: &KinesisStreamingDestinationOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for KinesisStreamingDestinationOutput
Auto Trait Implementations§
impl Freeze for KinesisStreamingDestinationOutput
impl RefUnwindSafe for KinesisStreamingDestinationOutput
impl Send for KinesisStreamingDestinationOutput
impl Sync for KinesisStreamingDestinationOutput
impl Unpin for KinesisStreamingDestinationOutput
impl UnwindSafe for KinesisStreamingDestinationOutput
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