#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct UpdateArchiveInput {
pub archive_name: ::std::option::Option<::std::string::String>,
pub description: ::std::option::Option<::std::string::String>,
pub event_pattern: ::std::option::Option<::std::string::String>,
pub retention_days: ::std::option::Option<i32>,
}
impl UpdateArchiveInput {
pub fn archive_name(&self) -> ::std::option::Option<&str> {
self.archive_name.as_deref()
}
pub fn description(&self) -> ::std::option::Option<&str> {
self.description.as_deref()
}
pub fn event_pattern(&self) -> ::std::option::Option<&str> {
self.event_pattern.as_deref()
}
pub fn retention_days(&self) -> ::std::option::Option<i32> {
self.retention_days
}
}
impl UpdateArchiveInput {
pub fn builder() -> crate::operation::update_archive::builders::UpdateArchiveInputBuilder {
crate::operation::update_archive::builders::UpdateArchiveInputBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct UpdateArchiveInputBuilder {
pub(crate) archive_name: ::std::option::Option<::std::string::String>,
pub(crate) description: ::std::option::Option<::std::string::String>,
pub(crate) event_pattern: ::std::option::Option<::std::string::String>,
pub(crate) retention_days: ::std::option::Option<i32>,
}
impl UpdateArchiveInputBuilder {
pub fn archive_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.archive_name = ::std::option::Option::Some(input.into());
self
}
pub fn set_archive_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.archive_name = input;
self
}
pub fn get_archive_name(&self) -> &::std::option::Option<::std::string::String> {
&self.archive_name
}
pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.description = ::std::option::Option::Some(input.into());
self
}
pub fn set_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.description = input;
self
}
pub fn get_description(&self) -> &::std::option::Option<::std::string::String> {
&self.description
}
pub fn event_pattern(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.event_pattern = ::std::option::Option::Some(input.into());
self
}
pub fn set_event_pattern(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.event_pattern = input;
self
}
pub fn get_event_pattern(&self) -> &::std::option::Option<::std::string::String> {
&self.event_pattern
}
pub fn retention_days(mut self, input: i32) -> Self {
self.retention_days = ::std::option::Option::Some(input);
self
}
pub fn set_retention_days(mut self, input: ::std::option::Option<i32>) -> Self {
self.retention_days = input;
self
}
pub fn get_retention_days(&self) -> &::std::option::Option<i32> {
&self.retention_days
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::update_archive::UpdateArchiveInput, ::aws_smithy_http::operation::error::BuildError> {
::std::result::Result::Ok(crate::operation::update_archive::UpdateArchiveInput {
archive_name: self.archive_name,
description: self.description,
event_pattern: self.event_pattern,
retention_days: self.retention_days,
})
}
}