Struct aws_sdk_grafana::output::update_permissions_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdatePermissionsOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn errors(self, input: UpdateError) -> Self
pub fn errors(self, input: UpdateError) -> Self
Appends an item to errors
.
To override the contents of this collection use set_errors
.
An array of structures that contain the errors from the operation, if any.
sourcepub fn set_errors(self, input: Option<Vec<UpdateError>>) -> Self
pub fn set_errors(self, input: Option<Vec<UpdateError>>) -> Self
An array of structures that contain the errors from the operation, if any.
Examples found in repository?
src/json_deser.rs (lines 1055-1059)
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
pub(crate) fn deser_operation_crate_operation_update_permissions(
value: &[u8],
mut builder: crate::output::update_permissions_output::Builder,
) -> Result<
crate::output::update_permissions_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() {
"errors" => {
builder = builder.set_errors(
crate::json_deser::deser_list_com_amazonaws_grafana_update_error_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) -> UpdatePermissionsOutput
pub fn build(self) -> UpdatePermissionsOutput
Consumes the builder and constructs a UpdatePermissionsOutput
.
Examples found in repository?
src/operation_deser.rs (line 1871)
1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
pub fn parse_update_permissions_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::UpdatePermissionsOutput, crate::error::UpdatePermissionsError>
{
Ok({
#[allow(unused_mut)]
let mut output = crate::output::update_permissions_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_update_permissions(
response.body().as_ref(),
output,
)
.map_err(crate::error::UpdatePermissionsError::unhandled)?;
output.build()
})
}