#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CreateEventStreamInput {
pub domain_name: ::std::option::Option<::std::string::String>,
pub uri: ::std::option::Option<::std::string::String>,
pub event_stream_name: ::std::option::Option<::std::string::String>,
pub tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
}
impl CreateEventStreamInput {
pub fn domain_name(&self) -> ::std::option::Option<&str> {
self.domain_name.as_deref()
}
pub fn uri(&self) -> ::std::option::Option<&str> {
self.uri.as_deref()
}
pub fn event_stream_name(&self) -> ::std::option::Option<&str> {
self.event_stream_name.as_deref()
}
pub fn tags(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.tags.as_ref()
}
}
impl CreateEventStreamInput {
pub fn builder() -> crate::operation::create_event_stream::builders::CreateEventStreamInputBuilder {
crate::operation::create_event_stream::builders::CreateEventStreamInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct CreateEventStreamInputBuilder {
pub(crate) domain_name: ::std::option::Option<::std::string::String>,
pub(crate) uri: ::std::option::Option<::std::string::String>,
pub(crate) event_stream_name: ::std::option::Option<::std::string::String>,
pub(crate) tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
}
impl CreateEventStreamInputBuilder {
pub fn domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.domain_name = ::std::option::Option::Some(input.into());
self
}
pub fn set_domain_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.domain_name = input;
self
}
pub fn get_domain_name(&self) -> &::std::option::Option<::std::string::String> {
&self.domain_name
}
pub fn uri(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.uri = ::std::option::Option::Some(input.into());
self
}
pub fn set_uri(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.uri = input;
self
}
pub fn get_uri(&self) -> &::std::option::Option<::std::string::String> {
&self.uri
}
pub fn event_stream_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.event_stream_name = ::std::option::Option::Some(input.into());
self
}
pub fn set_event_stream_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.event_stream_name = input;
self
}
pub fn get_event_stream_name(&self) -> &::std::option::Option<::std::string::String> {
&self.event_stream_name
}
pub fn tags(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut hash_map = self.tags.unwrap_or_default();
hash_map.insert(k.into(), v.into());
self.tags = ::std::option::Option::Some(hash_map);
self
}
pub fn set_tags(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
self.tags = input;
self
}
pub fn get_tags(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
&self.tags
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::create_event_stream::CreateEventStreamInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::create_event_stream::CreateEventStreamInput {
domain_name: self.domain_name,
uri: self.uri,
event_stream_name: self.event_stream_name,
tags: self.tags,
})
}
}