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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>A description of a single data modification that was performed on an item in a DynamoDB table.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct StreamRecord {
    /// <p>The approximate date and time when the stream record was created, in <a href="http://www.epochconverter.com/">UNIX epoch time</a> format and rounded down to the closest second.</p>
    pub approximate_creation_date_time: ::std::option::Option<::aws_smithy_types::DateTime>,
    /// <p>The primary key attribute(s) for the DynamoDB item that was modified.</p>
    pub keys: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    /// <p>The item in the DynamoDB table as it appeared after it was modified.</p>
    pub new_image: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    /// <p>The item in the DynamoDB table as it appeared before it was modified.</p>
    pub old_image: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    /// <p>The sequence number of the stream record.</p>
    pub sequence_number: ::std::option::Option<::std::string::String>,
    /// <p>The size of the stream record, in bytes.</p>
    pub size_bytes: ::std::option::Option<i64>,
    /// <p>The type of data from the modified DynamoDB item that was captured in this stream record:</p>
    /// <ul>
    /// <li>
    /// <p><code>KEYS_ONLY</code> - only the key attributes of the modified item.</p></li>
    /// <li>
    /// <p><code>NEW_IMAGE</code> - the entire item, as it appeared after it was modified.</p></li>
    /// <li>
    /// <p><code>OLD_IMAGE</code> - the entire item, as it appeared before it was modified.</p></li>
    /// <li>
    /// <p><code>NEW_AND_OLD_IMAGES</code> - both the new and the old item images of the item.</p></li>
    /// </ul>
    pub stream_view_type: ::std::option::Option<crate::types::StreamViewType>,
}
impl StreamRecord {
    /// <p>The approximate date and time when the stream record was created, in <a href="http://www.epochconverter.com/">UNIX epoch time</a> format and rounded down to the closest second.</p>
    pub fn approximate_creation_date_time(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
        self.approximate_creation_date_time.as_ref()
    }
    /// <p>The primary key attribute(s) for the DynamoDB item that was modified.</p>
    pub fn keys(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>> {
        self.keys.as_ref()
    }
    /// <p>The item in the DynamoDB table as it appeared after it was modified.</p>
    pub fn new_image(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>> {
        self.new_image.as_ref()
    }
    /// <p>The item in the DynamoDB table as it appeared before it was modified.</p>
    pub fn old_image(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>> {
        self.old_image.as_ref()
    }
    /// <p>The sequence number of the stream record.</p>
    pub fn sequence_number(&self) -> ::std::option::Option<&str> {
        self.sequence_number.as_deref()
    }
    /// <p>The size of the stream record, in bytes.</p>
    pub fn size_bytes(&self) -> ::std::option::Option<i64> {
        self.size_bytes
    }
    /// <p>The type of data from the modified DynamoDB item that was captured in this stream record:</p>
    /// <ul>
    /// <li>
    /// <p><code>KEYS_ONLY</code> - only the key attributes of the modified item.</p></li>
    /// <li>
    /// <p><code>NEW_IMAGE</code> - the entire item, as it appeared after it was modified.</p></li>
    /// <li>
    /// <p><code>OLD_IMAGE</code> - the entire item, as it appeared before it was modified.</p></li>
    /// <li>
    /// <p><code>NEW_AND_OLD_IMAGES</code> - both the new and the old item images of the item.</p></li>
    /// </ul>
    pub fn stream_view_type(&self) -> ::std::option::Option<&crate::types::StreamViewType> {
        self.stream_view_type.as_ref()
    }
}
impl StreamRecord {
    /// Creates a new builder-style object to manufacture [`StreamRecord`](crate::types::StreamRecord).
    pub fn builder() -> crate::types::builders::StreamRecordBuilder {
        crate::types::builders::StreamRecordBuilder::default()
    }
}

/// A builder for [`StreamRecord`](crate::types::StreamRecord).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct StreamRecordBuilder {
    pub(crate) approximate_creation_date_time: ::std::option::Option<::aws_smithy_types::DateTime>,
    pub(crate) keys: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    pub(crate) new_image: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    pub(crate) old_image: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    pub(crate) sequence_number: ::std::option::Option<::std::string::String>,
    pub(crate) size_bytes: ::std::option::Option<i64>,
    pub(crate) stream_view_type: ::std::option::Option<crate::types::StreamViewType>,
}
impl StreamRecordBuilder {
    /// <p>The approximate date and time when the stream record was created, in <a href="http://www.epochconverter.com/">UNIX epoch time</a> format and rounded down to the closest second.</p>
    pub fn approximate_creation_date_time(mut self, input: ::aws_smithy_types::DateTime) -> Self {
        self.approximate_creation_date_time = ::std::option::Option::Some(input);
        self
    }
    /// <p>The approximate date and time when the stream record was created, in <a href="http://www.epochconverter.com/">UNIX epoch time</a> format and rounded down to the closest second.</p>
    pub fn set_approximate_creation_date_time(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
        self.approximate_creation_date_time = input;
        self
    }
    /// <p>The approximate date and time when the stream record was created, in <a href="http://www.epochconverter.com/">UNIX epoch time</a> format and rounded down to the closest second.</p>
    pub fn get_approximate_creation_date_time(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
        &self.approximate_creation_date_time
    }
    /// Adds a key-value pair to `keys`.
    ///
    /// To override the contents of this collection use [`set_keys`](Self::set_keys).
    ///
    /// <p>The primary key attribute(s) for the DynamoDB item that was modified.</p>
    pub fn keys(mut self, k: impl ::std::convert::Into<::std::string::String>, v: crate::types::AttributeValue) -> Self {
        let mut hash_map = self.keys.unwrap_or_default();
        hash_map.insert(k.into(), v);
        self.keys = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>The primary key attribute(s) for the DynamoDB item that was modified.</p>
    pub fn set_keys(
        mut self,
        input: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    ) -> Self {
        self.keys = input;
        self
    }
    /// <p>The primary key attribute(s) for the DynamoDB item that was modified.</p>
    pub fn get_keys(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>> {
        &self.keys
    }
    /// Adds a key-value pair to `new_image`.
    ///
    /// To override the contents of this collection use [`set_new_image`](Self::set_new_image).
    ///
    /// <p>The item in the DynamoDB table as it appeared after it was modified.</p>
    pub fn new_image(mut self, k: impl ::std::convert::Into<::std::string::String>, v: crate::types::AttributeValue) -> Self {
        let mut hash_map = self.new_image.unwrap_or_default();
        hash_map.insert(k.into(), v);
        self.new_image = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>The item in the DynamoDB table as it appeared after it was modified.</p>
    pub fn set_new_image(
        mut self,
        input: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    ) -> Self {
        self.new_image = input;
        self
    }
    /// <p>The item in the DynamoDB table as it appeared after it was modified.</p>
    pub fn get_new_image(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>> {
        &self.new_image
    }
    /// Adds a key-value pair to `old_image`.
    ///
    /// To override the contents of this collection use [`set_old_image`](Self::set_old_image).
    ///
    /// <p>The item in the DynamoDB table as it appeared before it was modified.</p>
    pub fn old_image(mut self, k: impl ::std::convert::Into<::std::string::String>, v: crate::types::AttributeValue) -> Self {
        let mut hash_map = self.old_image.unwrap_or_default();
        hash_map.insert(k.into(), v);
        self.old_image = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>The item in the DynamoDB table as it appeared before it was modified.</p>
    pub fn set_old_image(
        mut self,
        input: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>>,
    ) -> Self {
        self.old_image = input;
        self
    }
    /// <p>The item in the DynamoDB table as it appeared before it was modified.</p>
    pub fn get_old_image(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::AttributeValue>> {
        &self.old_image
    }
    /// <p>The sequence number of the stream record.</p>
    pub fn sequence_number(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.sequence_number = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The sequence number of the stream record.</p>
    pub fn set_sequence_number(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.sequence_number = input;
        self
    }
    /// <p>The sequence number of the stream record.</p>
    pub fn get_sequence_number(&self) -> &::std::option::Option<::std::string::String> {
        &self.sequence_number
    }
    /// <p>The size of the stream record, in bytes.</p>
    pub fn size_bytes(mut self, input: i64) -> Self {
        self.size_bytes = ::std::option::Option::Some(input);
        self
    }
    /// <p>The size of the stream record, in bytes.</p>
    pub fn set_size_bytes(mut self, input: ::std::option::Option<i64>) -> Self {
        self.size_bytes = input;
        self
    }
    /// <p>The size of the stream record, in bytes.</p>
    pub fn get_size_bytes(&self) -> &::std::option::Option<i64> {
        &self.size_bytes
    }
    /// <p>The type of data from the modified DynamoDB item that was captured in this stream record:</p>
    /// <ul>
    /// <li>
    /// <p><code>KEYS_ONLY</code> - only the key attributes of the modified item.</p></li>
    /// <li>
    /// <p><code>NEW_IMAGE</code> - the entire item, as it appeared after it was modified.</p></li>
    /// <li>
    /// <p><code>OLD_IMAGE</code> - the entire item, as it appeared before it was modified.</p></li>
    /// <li>
    /// <p><code>NEW_AND_OLD_IMAGES</code> - both the new and the old item images of the item.</p></li>
    /// </ul>
    pub fn stream_view_type(mut self, input: crate::types::StreamViewType) -> Self {
        self.stream_view_type = ::std::option::Option::Some(input);
        self
    }
    /// <p>The type of data from the modified DynamoDB item that was captured in this stream record:</p>
    /// <ul>
    /// <li>
    /// <p><code>KEYS_ONLY</code> - only the key attributes of the modified item.</p></li>
    /// <li>
    /// <p><code>NEW_IMAGE</code> - the entire item, as it appeared after it was modified.</p></li>
    /// <li>
    /// <p><code>OLD_IMAGE</code> - the entire item, as it appeared before it was modified.</p></li>
    /// <li>
    /// <p><code>NEW_AND_OLD_IMAGES</code> - both the new and the old item images of the item.</p></li>
    /// </ul>
    pub fn set_stream_view_type(mut self, input: ::std::option::Option<crate::types::StreamViewType>) -> Self {
        self.stream_view_type = input;
        self
    }
    /// <p>The type of data from the modified DynamoDB item that was captured in this stream record:</p>
    /// <ul>
    /// <li>
    /// <p><code>KEYS_ONLY</code> - only the key attributes of the modified item.</p></li>
    /// <li>
    /// <p><code>NEW_IMAGE</code> - the entire item, as it appeared after it was modified.</p></li>
    /// <li>
    /// <p><code>OLD_IMAGE</code> - the entire item, as it appeared before it was modified.</p></li>
    /// <li>
    /// <p><code>NEW_AND_OLD_IMAGES</code> - both the new and the old item images of the item.</p></li>
    /// </ul>
    pub fn get_stream_view_type(&self) -> &::std::option::Option<crate::types::StreamViewType> {
        &self.stream_view_type
    }
    /// Consumes the builder and constructs a [`StreamRecord`](crate::types::StreamRecord).
    pub fn build(self) -> crate::types::StreamRecord {
        crate::types::StreamRecord {
            approximate_creation_date_time: self.approximate_creation_date_time,
            keys: self.keys,
            new_image: self.new_image,
            old_image: self.old_image,
            sequence_number: self.sequence_number,
            size_bytes: self.size_bytes,
            stream_view_type: self.stream_view_type,
        }
    }
}