#[non_exhaustive]pub struct DeleteStreamInputBuilder { /* private fields */ }Expand description
A builder for DeleteStreamInput.
Implementations§
source§impl DeleteStreamInputBuilder
impl DeleteStreamInputBuilder
sourcepub fn stream_name(self, input: impl Into<String>) -> Self
pub fn stream_name(self, input: impl Into<String>) -> Self
The name of the stream to delete.
sourcepub fn set_stream_name(self, input: Option<String>) -> Self
pub fn set_stream_name(self, input: Option<String>) -> Self
The name of the stream to delete.
sourcepub fn get_stream_name(&self) -> &Option<String>
pub fn get_stream_name(&self) -> &Option<String>
The name of the stream to delete.
sourcepub fn enforce_consumer_deletion(self, input: bool) -> Self
pub fn enforce_consumer_deletion(self, input: bool) -> Self
If this parameter is unset (null) or if you set it to false, and the stream has registered consumers, the call to DeleteStream fails with a ResourceInUseException.
sourcepub fn set_enforce_consumer_deletion(self, input: Option<bool>) -> Self
pub fn set_enforce_consumer_deletion(self, input: Option<bool>) -> Self
If this parameter is unset (null) or if you set it to false, and the stream has registered consumers, the call to DeleteStream fails with a ResourceInUseException.
sourcepub fn get_enforce_consumer_deletion(&self) -> &Option<bool>
pub fn get_enforce_consumer_deletion(&self) -> &Option<bool>
If this parameter is unset (null) or if you set it to false, and the stream has registered consumers, the call to DeleteStream fails with a ResourceInUseException.
sourcepub fn stream_arn(self, input: impl Into<String>) -> Self
pub fn stream_arn(self, input: impl Into<String>) -> Self
The ARN of the stream.
sourcepub fn set_stream_arn(self, input: Option<String>) -> Self
pub fn set_stream_arn(self, input: Option<String>) -> Self
The ARN of the stream.
sourcepub fn get_stream_arn(&self) -> &Option<String>
pub fn get_stream_arn(&self) -> &Option<String>
The ARN of the stream.
sourcepub fn build(self) -> Result<DeleteStreamInput, BuildError>
pub fn build(self) -> Result<DeleteStreamInput, BuildError>
Consumes the builder and constructs a DeleteStreamInput.
source§impl DeleteStreamInputBuilder
impl DeleteStreamInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteStreamOutput, SdkError<DeleteStreamError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteStreamOutput, SdkError<DeleteStreamError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteStreamInputBuilder
impl Clone for DeleteStreamInputBuilder
source§fn clone(&self) -> DeleteStreamInputBuilder
fn clone(&self) -> DeleteStreamInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteStreamInputBuilder
impl Debug for DeleteStreamInputBuilder
source§impl Default for DeleteStreamInputBuilder
impl Default for DeleteStreamInputBuilder
source§fn default() -> DeleteStreamInputBuilder
fn default() -> DeleteStreamInputBuilder
source§impl PartialEq for DeleteStreamInputBuilder
impl PartialEq for DeleteStreamInputBuilder
source§fn eq(&self, other: &DeleteStreamInputBuilder) -> bool
fn eq(&self, other: &DeleteStreamInputBuilder) -> bool
self and other values to be equal, and is used
by ==.