pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteWorkspaceApiKeyOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn key_name(self, input: impl Into<String>) -> Self
pub fn key_name(self, input: impl Into<String>) -> Self
The name of the API key that was deleted.
sourcepub fn set_key_name(self, input: Option<String>) -> Self
pub fn set_key_name(self, input: Option<String>) -> Self
The name of the API key that was deleted.
Examples found in repository?
src/json_deser.rs (lines 703-709)
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 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
pub(crate) fn deser_operation_crate_operation_delete_workspace_api_key(
value: &[u8],
mut builder: crate::output::delete_workspace_api_key_output::Builder,
) -> Result<
crate::output::delete_workspace_api_key_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() {
"keyName" => {
builder = builder.set_key_name(
aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"workspaceId" => {
builder = builder.set_workspace_id(
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 workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace where the key was deleted.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace where the key was deleted.
Examples found in repository?
src/json_deser.rs (lines 712-718)
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 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
pub(crate) fn deser_operation_crate_operation_delete_workspace_api_key(
value: &[u8],
mut builder: crate::output::delete_workspace_api_key_output::Builder,
) -> Result<
crate::output::delete_workspace_api_key_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() {
"keyName" => {
builder = builder.set_key_name(
aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"workspaceId" => {
builder = builder.set_workspace_id(
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) -> DeleteWorkspaceApiKeyOutput
pub fn build(self) -> DeleteWorkspaceApiKeyOutput
Consumes the builder and constructs a DeleteWorkspaceApiKeyOutput
.
Examples found in repository?
src/operation_deser.rs (line 742)
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
pub fn parse_delete_workspace_api_key_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DeleteWorkspaceApiKeyOutput,
crate::error::DeleteWorkspaceApiKeyError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::delete_workspace_api_key_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_delete_workspace_api_key(
response.body().as_ref(),
output,
)
.map_err(crate::error::DeleteWorkspaceApiKeyError::unhandled)?;
output.build()
})
}