1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct UpdateArchiveInput {
    /// <p>The name of the archive to update.</p>
    #[doc(hidden)]
    pub archive_name: std::option::Option<std::string::String>,
    /// <p>The description for the archive.</p>
    #[doc(hidden)]
    pub description: std::option::Option<std::string::String>,
    /// <p>The event pattern to use to filter events sent to the archive.</p>
    #[doc(hidden)]
    pub event_pattern: std::option::Option<std::string::String>,
    /// <p>The number of days to retain events in the archive.</p>
    #[doc(hidden)]
    pub retention_days: std::option::Option<i32>,
}
impl UpdateArchiveInput {
    /// <p>The name of the archive to update.</p>
    pub fn archive_name(&self) -> std::option::Option<&str> {
        self.archive_name.as_deref()
    }
    /// <p>The description for the archive.</p>
    pub fn description(&self) -> std::option::Option<&str> {
        self.description.as_deref()
    }
    /// <p>The event pattern to use to filter events sent to the archive.</p>
    pub fn event_pattern(&self) -> std::option::Option<&str> {
        self.event_pattern.as_deref()
    }
    /// <p>The number of days to retain events in the archive.</p>
    pub fn retention_days(&self) -> std::option::Option<i32> {
        self.retention_days
    }
}
impl UpdateArchiveInput {
    /// Creates a new builder-style object to manufacture [`UpdateArchiveInput`](crate::operation::update_archive::UpdateArchiveInput).
    pub fn builder() -> crate::operation::update_archive::builders::UpdateArchiveInputBuilder {
        crate::operation::update_archive::builders::UpdateArchiveInputBuilder::default()
    }
}

/// A builder for [`UpdateArchiveInput`](crate::operation::update_archive::UpdateArchiveInput).
#[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 {
    /// <p>The name of the archive to update.</p>
    pub fn archive_name(mut self, input: impl Into<std::string::String>) -> Self {
        self.archive_name = Some(input.into());
        self
    }
    /// <p>The name of the archive to update.</p>
    pub fn set_archive_name(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.archive_name = input;
        self
    }
    /// <p>The description for the archive.</p>
    pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
        self.description = Some(input.into());
        self
    }
    /// <p>The description for the archive.</p>
    pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.description = input;
        self
    }
    /// <p>The event pattern to use to filter events sent to the archive.</p>
    pub fn event_pattern(mut self, input: impl Into<std::string::String>) -> Self {
        self.event_pattern = Some(input.into());
        self
    }
    /// <p>The event pattern to use to filter events sent to the archive.</p>
    pub fn set_event_pattern(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.event_pattern = input;
        self
    }
    /// <p>The number of days to retain events in the archive.</p>
    pub fn retention_days(mut self, input: i32) -> Self {
        self.retention_days = Some(input);
        self
    }
    /// <p>The number of days to retain events in the archive.</p>
    pub fn set_retention_days(mut self, input: std::option::Option<i32>) -> Self {
        self.retention_days = input;
        self
    }
    /// Consumes the builder and constructs a [`UpdateArchiveInput`](crate::operation::update_archive::UpdateArchiveInput).
    pub fn build(
        self,
    ) -> Result<
        crate::operation::update_archive::UpdateArchiveInput,
        aws_smithy_http::operation::error::BuildError,
    > {
        Ok(crate::operation::update_archive::UpdateArchiveInput {
            archive_name: self.archive_name,
            description: self.description,
            event_pattern: self.event_pattern,
            retention_days: self.retention_days,
        })
    }
}