pub struct Builder { /* private fields */ }Expand description
A builder for GetNetworkTelemetryOutput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn network_telemetry(self, input: NetworkTelemetry) -> Self
pub fn network_telemetry(self, input: NetworkTelemetry) -> Self
Appends an item to network_telemetry.
To override the contents of this collection use set_network_telemetry.
The network telemetry.
sourcepub fn set_network_telemetry(self, input: Option<Vec<NetworkTelemetry>>) -> Self
pub fn set_network_telemetry(self, input: Option<Vec<NetworkTelemetry>>) -> Self
The network telemetry.
Examples found in repository?
src/json_deser.rs (lines 2897-2899)
2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931
pub(crate) fn deser_operation_crate_operation_get_network_telemetry(
value: &[u8],
mut builder: crate::output::get_network_telemetry_output::Builder,
) -> Result<
crate::output::get_network_telemetry_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() {
"NetworkTelemetry" => {
builder = builder.set_network_telemetry(
crate::json_deser::deser_list_com_amazonaws_networkmanager_network_telemetry_list(tokens)?
);
}
"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()?,
);
}
_ => 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
The token for the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next page of results.
Examples found in repository?
src/json_deser.rs (lines 2902-2908)
2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931
pub(crate) fn deser_operation_crate_operation_get_network_telemetry(
value: &[u8],
mut builder: crate::output::get_network_telemetry_output::Builder,
) -> Result<
crate::output::get_network_telemetry_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() {
"NetworkTelemetry" => {
builder = builder.set_network_telemetry(
crate::json_deser::deser_list_com_amazonaws_networkmanager_network_telemetry_list(tokens)?
);
}
"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()?,
);
}
_ => 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) -> GetNetworkTelemetryOutput
pub fn build(self) -> GetNetworkTelemetryOutput
Consumes the builder and constructs a GetNetworkTelemetryOutput.
Examples found in repository?
src/operation_deser.rs (line 7595)
7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597
pub fn parse_get_network_telemetry_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::GetNetworkTelemetryOutput,
crate::error::GetNetworkTelemetryError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::get_network_telemetry_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_get_network_telemetry(
response.body().as_ref(),
output,
)
.map_err(crate::error::GetNetworkTelemetryError::unhandled)?;
output.build()
})
}