Struct aws_sdk_memorydb::output::create_cluster_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CreateClusterOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_cluster(self, input: Option<Cluster>) -> Self
pub fn set_cluster(self, input: Option<Cluster>) -> Self
The newly-created cluster.
Examples found in repository?
src/json_deser.rs (lines 1441-1443)
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
pub(crate) fn deser_operation_crate_operation_create_cluster(
value: &[u8],
mut builder: crate::output::create_cluster_output::Builder,
) -> Result<
crate::output::create_cluster_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() {
"Cluster" => {
builder = builder.set_cluster(
crate::json_deser::deser_structure_crate_model_cluster(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) -> CreateClusterOutput
pub fn build(self) -> CreateClusterOutput
Consumes the builder and constructs a CreateClusterOutput
.
Examples found in repository?
src/operation_deser.rs (line 723)
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
pub fn parse_create_cluster_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::CreateClusterOutput, crate::error::CreateClusterError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::create_cluster_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_create_cluster(
response.body().as_ref(),
output,
)
.map_err(crate::error::CreateClusterError::unhandled)?;
output.build()
})
}