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
#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct PutRecordOutput {}
pub mod put_record_output {
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {}
impl Builder {
pub fn build(self) -> crate::output::PutRecordOutput {
crate::output::PutRecordOutput {}
}
}
}
impl PutRecordOutput {
pub fn builder() -> crate::output::put_record_output::Builder {
crate::output::put_record_output::Builder::default()
}
}
#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct GetRecordOutput {
#[doc(hidden)]
pub record: std::option::Option<std::vec::Vec<crate::model::FeatureValue>>,
}
impl GetRecordOutput {
pub fn record(&self) -> std::option::Option<&[crate::model::FeatureValue]> {
self.record.as_deref()
}
}
pub mod get_record_output {
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) record: std::option::Option<std::vec::Vec<crate::model::FeatureValue>>,
}
impl Builder {
pub fn record(mut self, input: crate::model::FeatureValue) -> Self {
let mut v = self.record.unwrap_or_default();
v.push(input);
self.record = Some(v);
self
}
pub fn set_record(
mut self,
input: std::option::Option<std::vec::Vec<crate::model::FeatureValue>>,
) -> Self {
self.record = input;
self
}
pub fn build(self) -> crate::output::GetRecordOutput {
crate::output::GetRecordOutput {
record: self.record,
}
}
}
}
impl GetRecordOutput {
pub fn builder() -> crate::output::get_record_output::Builder {
crate::output::get_record_output::Builder::default()
}
}
#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct DeleteRecordOutput {}
pub mod delete_record_output {
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {}
impl Builder {
pub fn build(self) -> crate::output::DeleteRecordOutput {
crate::output::DeleteRecordOutput {}
}
}
}
impl DeleteRecordOutput {
pub fn builder() -> crate::output::delete_record_output::Builder {
crate::output::delete_record_output::Builder::default()
}
}
#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct BatchGetRecordOutput {
#[doc(hidden)]
pub records: std::option::Option<std::vec::Vec<crate::model::BatchGetRecordResultDetail>>,
#[doc(hidden)]
pub errors: std::option::Option<std::vec::Vec<crate::model::BatchGetRecordError>>,
#[doc(hidden)]
pub unprocessed_identifiers:
std::option::Option<std::vec::Vec<crate::model::BatchGetRecordIdentifier>>,
}
impl BatchGetRecordOutput {
pub fn records(&self) -> std::option::Option<&[crate::model::BatchGetRecordResultDetail]> {
self.records.as_deref()
}
pub fn errors(&self) -> std::option::Option<&[crate::model::BatchGetRecordError]> {
self.errors.as_deref()
}
pub fn unprocessed_identifiers(
&self,
) -> std::option::Option<&[crate::model::BatchGetRecordIdentifier]> {
self.unprocessed_identifiers.as_deref()
}
}
pub mod batch_get_record_output {
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) records:
std::option::Option<std::vec::Vec<crate::model::BatchGetRecordResultDetail>>,
pub(crate) errors: std::option::Option<std::vec::Vec<crate::model::BatchGetRecordError>>,
pub(crate) unprocessed_identifiers:
std::option::Option<std::vec::Vec<crate::model::BatchGetRecordIdentifier>>,
}
impl Builder {
pub fn records(mut self, input: crate::model::BatchGetRecordResultDetail) -> Self {
let mut v = self.records.unwrap_or_default();
v.push(input);
self.records = Some(v);
self
}
pub fn set_records(
mut self,
input: std::option::Option<std::vec::Vec<crate::model::BatchGetRecordResultDetail>>,
) -> Self {
self.records = input;
self
}
pub fn errors(mut self, input: crate::model::BatchGetRecordError) -> Self {
let mut v = self.errors.unwrap_or_default();
v.push(input);
self.errors = Some(v);
self
}
pub fn set_errors(
mut self,
input: std::option::Option<std::vec::Vec<crate::model::BatchGetRecordError>>,
) -> Self {
self.errors = input;
self
}
pub fn unprocessed_identifiers(
mut self,
input: crate::model::BatchGetRecordIdentifier,
) -> Self {
let mut v = self.unprocessed_identifiers.unwrap_or_default();
v.push(input);
self.unprocessed_identifiers = Some(v);
self
}
pub fn set_unprocessed_identifiers(
mut self,
input: std::option::Option<std::vec::Vec<crate::model::BatchGetRecordIdentifier>>,
) -> Self {
self.unprocessed_identifiers = input;
self
}
pub fn build(self) -> crate::output::BatchGetRecordOutput {
crate::output::BatchGetRecordOutput {
records: self.records,
errors: self.errors,
unprocessed_identifiers: self.unprocessed_identifiers,
}
}
}
}
impl BatchGetRecordOutput {
pub fn builder() -> crate::output::batch_get_record_output::Builder {
crate::output::batch_get_record_output::Builder::default()
}
}