Struct aws_sdk_appmesh::types::builders::TcpRouteActionBuilder   
source · #[non_exhaustive]pub struct TcpRouteActionBuilder { /* private fields */ }Expand description
A builder for TcpRouteAction.
Implementations§
source§impl TcpRouteActionBuilder
 
impl TcpRouteActionBuilder
sourcepub fn weighted_targets(self, input: WeightedTarget) -> Self
 
pub fn weighted_targets(self, input: WeightedTarget) -> Self
Appends an item to weighted_targets.
To override the contents of this collection use set_weighted_targets.
An object that represents the targets that traffic is routed to when a request matches the route.
sourcepub fn set_weighted_targets(self, input: Option<Vec<WeightedTarget>>) -> Self
 
pub fn set_weighted_targets(self, input: Option<Vec<WeightedTarget>>) -> Self
An object that represents the targets that traffic is routed to when a request matches the route.
sourcepub fn get_weighted_targets(&self) -> &Option<Vec<WeightedTarget>>
 
pub fn get_weighted_targets(&self) -> &Option<Vec<WeightedTarget>>
An object that represents the targets that traffic is routed to when a request matches the route.
sourcepub fn build(self) -> Result<TcpRouteAction, BuildError>
 
pub fn build(self) -> Result<TcpRouteAction, BuildError>
Consumes the builder and constructs a TcpRouteAction.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for TcpRouteActionBuilder
 
impl Clone for TcpRouteActionBuilder
source§fn clone(&self) -> TcpRouteActionBuilder
 
fn clone(&self) -> TcpRouteActionBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for TcpRouteActionBuilder
 
impl Debug for TcpRouteActionBuilder
source§impl Default for TcpRouteActionBuilder
 
impl Default for TcpRouteActionBuilder
source§fn default() -> TcpRouteActionBuilder
 
fn default() -> TcpRouteActionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TcpRouteActionBuilder
 
impl PartialEq for TcpRouteActionBuilder
impl StructuralPartialEq for TcpRouteActionBuilder
Auto Trait Implementations§
impl Freeze for TcpRouteActionBuilder
impl RefUnwindSafe for TcpRouteActionBuilder
impl Send for TcpRouteActionBuilder
impl Sync for TcpRouteActionBuilder
impl Unpin for TcpRouteActionBuilder
impl UnwindSafe for TcpRouteActionBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.