Struct aws_sdk_databrew::output::list_projects_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListProjectsOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn projects(self, input: Project) -> Self
pub fn projects(self, input: Project) -> Self
Appends an item to projects
.
To override the contents of this collection use set_projects
.
A list of projects that are defined .
sourcepub fn set_projects(self, input: Option<Vec<Project>>) -> Self
pub fn set_projects(self, input: Option<Vec<Project>>) -> Self
A list of projects that are defined .
Examples found in repository?
src/json_deser.rs (lines 2302-2306)
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329
pub(crate) fn deser_operation_crate_operation_list_projects(
value: &[u8],
mut builder: crate::output::list_projects_output::Builder,
) -> Result<
crate::output::list_projects_output::Builder,
aws_smithy_json::deserialize::error::DeserializeError,
> {
let mut tokens_owned =
aws_smithy_json::deserialize::json_token_iter(crate::json_deser::or_empty_doc(value))
.peekable();
let tokens = &mut tokens_owned;
aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"NextToken" => {
builder = builder.set_next_token(
aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"Projects" => {
builder = builder.set_projects(
crate::json_deser::deser_list_com_amazonaws_databrew_project_list(
tokens,
)?,
);
}
_ => aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
if tokens.next().is_some() {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
),
);
}
Ok(builder)
}
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that you can use in a subsequent call to retrieve the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that you can use in a subsequent call to retrieve the next set of results.
Examples found in repository?
src/json_deser.rs (lines 2293-2299)
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329
pub(crate) fn deser_operation_crate_operation_list_projects(
value: &[u8],
mut builder: crate::output::list_projects_output::Builder,
) -> Result<
crate::output::list_projects_output::Builder,
aws_smithy_json::deserialize::error::DeserializeError,
> {
let mut tokens_owned =
aws_smithy_json::deserialize::json_token_iter(crate::json_deser::or_empty_doc(value))
.peekable();
let tokens = &mut tokens_owned;
aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"NextToken" => {
builder = builder.set_next_token(
aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"Projects" => {
builder = builder.set_projects(
crate::json_deser::deser_list_com_amazonaws_databrew_project_list(
tokens,
)?,
);
}
_ => aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
if tokens.next().is_some() {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
),
);
}
Ok(builder)
}
sourcepub fn build(self) -> ListProjectsOutput
pub fn build(self) -> ListProjectsOutput
Consumes the builder and constructs a ListProjectsOutput
.
Examples found in repository?
src/operation_deser.rs (line 2023)
2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
pub fn parse_list_projects_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::ListProjectsOutput, crate::error::ListProjectsError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::list_projects_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_list_projects(
response.body().as_ref(),
output,
)
.map_err(crate::error::ListProjectsError::unhandled)?;
output.build()
})
}