Struct aws_sdk_databrew::output::delete_dataset_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteDatasetOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the dataset that you deleted.
Examples found in repository?
src/json_deser.rs (lines 719-725)
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
pub(crate) fn deser_operation_crate_operation_delete_dataset(
value: &[u8],
mut builder: crate::output::delete_dataset_output::Builder,
) -> Result<
crate::output::delete_dataset_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() {
"Name" => {
builder = builder.set_name(
aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
_ => 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) -> DeleteDatasetOutput
pub fn build(self) -> DeleteDatasetOutput
Consumes the builder and constructs a DeleteDatasetOutput
.
Examples found in repository?
src/operation_deser.rs (line 902)
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
pub fn parse_delete_dataset_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::DeleteDatasetOutput, crate::error::DeleteDatasetError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::delete_dataset_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_delete_dataset(
response.body().as_ref(),
output,
)
.map_err(crate::error::DeleteDatasetError::unhandled)?;
output.build()
})
}