Struct aws_sdk_appmesh::model::grpc_route::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GrpcRoute
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn action(self, input: GrpcRouteAction) -> Self
pub fn action(self, input: GrpcRouteAction) -> Self
An object that represents the action to take if a match is determined.
sourcepub fn set_action(self, input: Option<GrpcRouteAction>) -> Self
pub fn set_action(self, input: Option<GrpcRouteAction>) -> Self
An object that represents the action to take if a match is determined.
Examples found in repository?
src/json_deser.rs (lines 4276-4278)
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
pub(crate) fn deser_structure_crate_model_grpc_route<'a, I>(
tokens: &mut std::iter::Peekable<I>,
) -> Result<Option<crate::model::GrpcRoute>, aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<
Item = Result<
aws_smithy_json::deserialize::Token<'a>,
aws_smithy_json::deserialize::error::DeserializeError,
>,
>,
{
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::model::grpc_route::Builder::default();
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() {
"action" => {
builder = builder.set_action(
crate::json_deser::deser_structure_crate_model_grpc_route_action(tokens)?
);
}
"match" => {
builder = builder.set_match(
crate::json_deser::deser_structure_crate_model_grpc_route_match(tokens)?
);
}
"retryPolicy" => {
builder = builder.set_retry_policy(
crate::json_deser::deser_structure_crate_model_grpc_retry_policy(tokens)?
);
}
"timeout" => {
builder = builder.set_timeout(
crate::json_deser::deser_structure_crate_model_grpc_timeout(
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
)),
)
}
}
}
Ok(Some(builder.build()))
}
_ => Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
),
),
}
}
sourcepub fn match(self, input: GrpcRouteMatch) -> Self
pub fn match(self, input: GrpcRouteMatch) -> Self
An object that represents the criteria for determining a request match.
sourcepub fn set_match(self, input: Option<GrpcRouteMatch>) -> Self
pub fn set_match(self, input: Option<GrpcRouteMatch>) -> Self
An object that represents the criteria for determining a request match.
Examples found in repository?
src/json_deser.rs (lines 4281-4283)
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
pub(crate) fn deser_structure_crate_model_grpc_route<'a, I>(
tokens: &mut std::iter::Peekable<I>,
) -> Result<Option<crate::model::GrpcRoute>, aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<
Item = Result<
aws_smithy_json::deserialize::Token<'a>,
aws_smithy_json::deserialize::error::DeserializeError,
>,
>,
{
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::model::grpc_route::Builder::default();
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() {
"action" => {
builder = builder.set_action(
crate::json_deser::deser_structure_crate_model_grpc_route_action(tokens)?
);
}
"match" => {
builder = builder.set_match(
crate::json_deser::deser_structure_crate_model_grpc_route_match(tokens)?
);
}
"retryPolicy" => {
builder = builder.set_retry_policy(
crate::json_deser::deser_structure_crate_model_grpc_retry_policy(tokens)?
);
}
"timeout" => {
builder = builder.set_timeout(
crate::json_deser::deser_structure_crate_model_grpc_timeout(
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
)),
)
}
}
}
Ok(Some(builder.build()))
}
_ => Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
),
),
}
}
sourcepub fn retry_policy(self, input: GrpcRetryPolicy) -> Self
pub fn retry_policy(self, input: GrpcRetryPolicy) -> Self
An object that represents a retry policy.
sourcepub fn set_retry_policy(self, input: Option<GrpcRetryPolicy>) -> Self
pub fn set_retry_policy(self, input: Option<GrpcRetryPolicy>) -> Self
An object that represents a retry policy.
Examples found in repository?
src/json_deser.rs (lines 4286-4288)
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
pub(crate) fn deser_structure_crate_model_grpc_route<'a, I>(
tokens: &mut std::iter::Peekable<I>,
) -> Result<Option<crate::model::GrpcRoute>, aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<
Item = Result<
aws_smithy_json::deserialize::Token<'a>,
aws_smithy_json::deserialize::error::DeserializeError,
>,
>,
{
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::model::grpc_route::Builder::default();
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() {
"action" => {
builder = builder.set_action(
crate::json_deser::deser_structure_crate_model_grpc_route_action(tokens)?
);
}
"match" => {
builder = builder.set_match(
crate::json_deser::deser_structure_crate_model_grpc_route_match(tokens)?
);
}
"retryPolicy" => {
builder = builder.set_retry_policy(
crate::json_deser::deser_structure_crate_model_grpc_retry_policy(tokens)?
);
}
"timeout" => {
builder = builder.set_timeout(
crate::json_deser::deser_structure_crate_model_grpc_timeout(
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
)),
)
}
}
}
Ok(Some(builder.build()))
}
_ => Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
),
),
}
}
sourcepub fn timeout(self, input: GrpcTimeout) -> Self
pub fn timeout(self, input: GrpcTimeout) -> Self
An object that represents types of timeouts.
sourcepub fn set_timeout(self, input: Option<GrpcTimeout>) -> Self
pub fn set_timeout(self, input: Option<GrpcTimeout>) -> Self
An object that represents types of timeouts.
Examples found in repository?
src/json_deser.rs (lines 4291-4295)
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
pub(crate) fn deser_structure_crate_model_grpc_route<'a, I>(
tokens: &mut std::iter::Peekable<I>,
) -> Result<Option<crate::model::GrpcRoute>, aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<
Item = Result<
aws_smithy_json::deserialize::Token<'a>,
aws_smithy_json::deserialize::error::DeserializeError,
>,
>,
{
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::model::grpc_route::Builder::default();
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() {
"action" => {
builder = builder.set_action(
crate::json_deser::deser_structure_crate_model_grpc_route_action(tokens)?
);
}
"match" => {
builder = builder.set_match(
crate::json_deser::deser_structure_crate_model_grpc_route_match(tokens)?
);
}
"retryPolicy" => {
builder = builder.set_retry_policy(
crate::json_deser::deser_structure_crate_model_grpc_retry_policy(tokens)?
);
}
"timeout" => {
builder = builder.set_timeout(
crate::json_deser::deser_structure_crate_model_grpc_timeout(
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
)),
)
}
}
}
Ok(Some(builder.build()))
}
_ => Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
),
),
}
}
sourcepub fn build(self) -> GrpcRoute
pub fn build(self) -> GrpcRoute
Consumes the builder and constructs a GrpcRoute
.
Examples found in repository?
src/json_deser.rs (line 4310)
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
pub(crate) fn deser_structure_crate_model_grpc_route<'a, I>(
tokens: &mut std::iter::Peekable<I>,
) -> Result<Option<crate::model::GrpcRoute>, aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<
Item = Result<
aws_smithy_json::deserialize::Token<'a>,
aws_smithy_json::deserialize::error::DeserializeError,
>,
>,
{
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::model::grpc_route::Builder::default();
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() {
"action" => {
builder = builder.set_action(
crate::json_deser::deser_structure_crate_model_grpc_route_action(tokens)?
);
}
"match" => {
builder = builder.set_match(
crate::json_deser::deser_structure_crate_model_grpc_route_match(tokens)?
);
}
"retryPolicy" => {
builder = builder.set_retry_policy(
crate::json_deser::deser_structure_crate_model_grpc_retry_policy(tokens)?
);
}
"timeout" => {
builder = builder.set_timeout(
crate::json_deser::deser_structure_crate_model_grpc_timeout(
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
)),
)
}
}
}
Ok(Some(builder.build()))
}
_ => Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
),
),
}
}