#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct UpdateRulesetInput {
#[doc(hidden)]
pub name: std::option::Option<std::string::String>,
#[doc(hidden)]
pub description: std::option::Option<std::string::String>,
#[doc(hidden)]
pub rules: std::option::Option<std::vec::Vec<crate::types::Rule>>,
}
impl UpdateRulesetInput {
pub fn name(&self) -> std::option::Option<&str> {
self.name.as_deref()
}
pub fn description(&self) -> std::option::Option<&str> {
self.description.as_deref()
}
pub fn rules(&self) -> std::option::Option<&[crate::types::Rule]> {
self.rules.as_deref()
}
}
impl UpdateRulesetInput {
pub fn builder() -> crate::operation::update_ruleset::builders::UpdateRulesetInputBuilder {
crate::operation::update_ruleset::builders::UpdateRulesetInputBuilder::default()
}
}
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct UpdateRulesetInputBuilder {
pub(crate) name: std::option::Option<std::string::String>,
pub(crate) description: std::option::Option<std::string::String>,
pub(crate) rules: std::option::Option<std::vec::Vec<crate::types::Rule>>,
}
impl UpdateRulesetInputBuilder {
pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
self.name = Some(input.into());
self
}
pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.name = input;
self
}
pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
self.description = Some(input.into());
self
}
pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
self.description = input;
self
}
pub fn rules(mut self, input: crate::types::Rule) -> Self {
let mut v = self.rules.unwrap_or_default();
v.push(input);
self.rules = Some(v);
self
}
pub fn set_rules(
mut self,
input: std::option::Option<std::vec::Vec<crate::types::Rule>>,
) -> Self {
self.rules = input;
self
}
pub fn build(
self,
) -> Result<
crate::operation::update_ruleset::UpdateRulesetInput,
aws_smithy_http::operation::error::BuildError,
> {
Ok(crate::operation::update_ruleset::UpdateRulesetInput {
name: self.name,
description: self.description,
rules: self.rules,
})
}
}