#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DeleteStreamInput {
pub stream_name: ::std::option::Option<::std::string::String>,
pub enforce_consumer_deletion: ::std::option::Option<bool>,
pub stream_arn: ::std::option::Option<::std::string::String>,
}
impl DeleteStreamInput {
pub fn stream_name(&self) -> ::std::option::Option<&str> {
self.stream_name.as_deref()
}
pub fn enforce_consumer_deletion(&self) -> ::std::option::Option<bool> {
self.enforce_consumer_deletion
}
pub fn stream_arn(&self) -> ::std::option::Option<&str> {
self.stream_arn.as_deref()
}
}
impl DeleteStreamInput {
pub fn builder() -> crate::operation::delete_stream::builders::DeleteStreamInputBuilder {
crate::operation::delete_stream::builders::DeleteStreamInputBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct DeleteStreamInputBuilder {
pub(crate) stream_name: ::std::option::Option<::std::string::String>,
pub(crate) enforce_consumer_deletion: ::std::option::Option<bool>,
pub(crate) stream_arn: ::std::option::Option<::std::string::String>,
}
impl DeleteStreamInputBuilder {
pub fn stream_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.stream_name = ::std::option::Option::Some(input.into());
self
}
pub fn set_stream_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.stream_name = input;
self
}
pub fn get_stream_name(&self) -> &::std::option::Option<::std::string::String> {
&self.stream_name
}
pub fn enforce_consumer_deletion(mut self, input: bool) -> Self {
self.enforce_consumer_deletion = ::std::option::Option::Some(input);
self
}
pub fn set_enforce_consumer_deletion(mut self, input: ::std::option::Option<bool>) -> Self {
self.enforce_consumer_deletion = input;
self
}
pub fn get_enforce_consumer_deletion(&self) -> &::std::option::Option<bool> {
&self.enforce_consumer_deletion
}
pub fn stream_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.stream_arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_stream_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.stream_arn = input;
self
}
pub fn get_stream_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.stream_arn
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::delete_stream::DeleteStreamInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::delete_stream::DeleteStreamInput {
stream_name: self.stream_name,
enforce_consumer_deletion: self.enforce_consumer_deletion,
stream_arn: self.stream_arn,
})
}
}