#[non_exhaustive]pub struct KinesisDataStreamDestinationBuilder { /* private fields */ }
Expand description
A builder for KinesisDataStreamDestination
.
Implementations§
source§impl KinesisDataStreamDestinationBuilder
impl KinesisDataStreamDestinationBuilder
sourcepub fn stream_arn(self, input: impl Into<String>) -> Self
pub fn stream_arn(self, input: impl Into<String>) -> Self
The ARN for a specific Kinesis data stream.
sourcepub fn set_stream_arn(self, input: Option<String>) -> Self
pub fn set_stream_arn(self, input: Option<String>) -> Self
The ARN for a specific Kinesis data stream.
sourcepub fn destination_status(self, input: DestinationStatus) -> Self
pub fn destination_status(self, input: DestinationStatus) -> Self
The current status of replication.
sourcepub fn set_destination_status(self, input: Option<DestinationStatus>) -> Self
pub fn set_destination_status(self, input: Option<DestinationStatus>) -> Self
The current status of replication.
sourcepub fn destination_status_description(self, input: impl Into<String>) -> Self
pub fn destination_status_description(self, input: impl Into<String>) -> Self
The human-readable string that corresponds to the replica status.
sourcepub fn set_destination_status_description(self, input: Option<String>) -> Self
pub fn set_destination_status_description(self, input: Option<String>) -> Self
The human-readable string that corresponds to the replica status.
sourcepub fn build(self) -> KinesisDataStreamDestination
pub fn build(self) -> KinesisDataStreamDestination
Consumes the builder and constructs a KinesisDataStreamDestination
.
Trait Implementations§
source§impl Clone for KinesisDataStreamDestinationBuilder
impl Clone for KinesisDataStreamDestinationBuilder
source§fn clone(&self) -> KinesisDataStreamDestinationBuilder
fn clone(&self) -> KinesisDataStreamDestinationBuilder
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 KinesisDataStreamDestinationBuilder
impl Default for KinesisDataStreamDestinationBuilder
source§fn default() -> KinesisDataStreamDestinationBuilder
fn default() -> KinesisDataStreamDestinationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<KinesisDataStreamDestinationBuilder> for KinesisDataStreamDestinationBuilder
impl PartialEq<KinesisDataStreamDestinationBuilder> for KinesisDataStreamDestinationBuilder
source§fn eq(&self, other: &KinesisDataStreamDestinationBuilder) -> bool
fn eq(&self, other: &KinesisDataStreamDestinationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.