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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Represents the input of an <code>UpdateTimeToLive</code> operation.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct UpdateTimeToLiveInput {
    /// <p>The name of the table to be configured.</p>
    pub table_name: ::std::option::Option<::std::string::String>,
    /// <p>Represents the settings used to enable or disable Time to Live for the specified table.</p>
    pub time_to_live_specification: ::std::option::Option<crate::types::TimeToLiveSpecification>,
}
impl UpdateTimeToLiveInput {
    /// <p>The name of the table to be configured.</p>
    pub fn table_name(&self) -> ::std::option::Option<&str> {
        self.table_name.as_deref()
    }
    /// <p>Represents the settings used to enable or disable Time to Live for the specified table.</p>
    pub fn time_to_live_specification(&self) -> ::std::option::Option<&crate::types::TimeToLiveSpecification> {
        self.time_to_live_specification.as_ref()
    }
}
impl UpdateTimeToLiveInput {
    /// Creates a new builder-style object to manufacture [`UpdateTimeToLiveInput`](crate::operation::update_time_to_live::UpdateTimeToLiveInput).
    pub fn builder() -> crate::operation::update_time_to_live::builders::UpdateTimeToLiveInputBuilder {
        crate::operation::update_time_to_live::builders::UpdateTimeToLiveInputBuilder::default()
    }
}

/// A builder for [`UpdateTimeToLiveInput`](crate::operation::update_time_to_live::UpdateTimeToLiveInput).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct UpdateTimeToLiveInputBuilder {
    pub(crate) table_name: ::std::option::Option<::std::string::String>,
    pub(crate) time_to_live_specification: ::std::option::Option<crate::types::TimeToLiveSpecification>,
}
impl UpdateTimeToLiveInputBuilder {
    /// <p>The name of the table to be configured.</p>
    /// This field is required.
    pub fn table_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.table_name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The name of the table to be configured.</p>
    pub fn set_table_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.table_name = input;
        self
    }
    /// <p>The name of the table to be configured.</p>
    pub fn get_table_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.table_name
    }
    /// <p>Represents the settings used to enable or disable Time to Live for the specified table.</p>
    /// This field is required.
    pub fn time_to_live_specification(mut self, input: crate::types::TimeToLiveSpecification) -> Self {
        self.time_to_live_specification = ::std::option::Option::Some(input);
        self
    }
    /// <p>Represents the settings used to enable or disable Time to Live for the specified table.</p>
    pub fn set_time_to_live_specification(mut self, input: ::std::option::Option<crate::types::TimeToLiveSpecification>) -> Self {
        self.time_to_live_specification = input;
        self
    }
    /// <p>Represents the settings used to enable or disable Time to Live for the specified table.</p>
    pub fn get_time_to_live_specification(&self) -> &::std::option::Option<crate::types::TimeToLiveSpecification> {
        &self.time_to_live_specification
    }
    /// Consumes the builder and constructs a [`UpdateTimeToLiveInput`](crate::operation::update_time_to_live::UpdateTimeToLiveInput).
    pub fn build(
        self,
    ) -> ::std::result::Result<crate::operation::update_time_to_live::UpdateTimeToLiveInput, ::aws_smithy_types::error::operation::BuildError> {
        ::std::result::Result::Ok(crate::operation::update_time_to_live::UpdateTimeToLiveInput {
            table_name: self.table_name,
            time_to_live_specification: self.time_to_live_specification,
        })
    }
}