Struct aws_sdk_appmesh::types::builders::MeshSpecBuilder
source · #[non_exhaustive]pub struct MeshSpecBuilder { /* private fields */ }
Expand description
A builder for MeshSpec
.
Implementations§
source§impl MeshSpecBuilder
impl MeshSpecBuilder
sourcepub fn egress_filter(self, input: EgressFilter) -> Self
pub fn egress_filter(self, input: EgressFilter) -> Self
The egress filter rules for the service mesh.
sourcepub fn set_egress_filter(self, input: Option<EgressFilter>) -> Self
pub fn set_egress_filter(self, input: Option<EgressFilter>) -> Self
The egress filter rules for the service mesh.
sourcepub fn get_egress_filter(&self) -> &Option<EgressFilter>
pub fn get_egress_filter(&self) -> &Option<EgressFilter>
The egress filter rules for the service mesh.
sourcepub fn service_discovery(self, input: MeshServiceDiscovery) -> Self
pub fn service_discovery(self, input: MeshServiceDiscovery) -> Self
An object that represents the service discovery information for a service mesh.
sourcepub fn set_service_discovery(self, input: Option<MeshServiceDiscovery>) -> Self
pub fn set_service_discovery(self, input: Option<MeshServiceDiscovery>) -> Self
An object that represents the service discovery information for a service mesh.
sourcepub fn get_service_discovery(&self) -> &Option<MeshServiceDiscovery>
pub fn get_service_discovery(&self) -> &Option<MeshServiceDiscovery>
An object that represents the service discovery information for a service mesh.
Trait Implementations§
source§impl Clone for MeshSpecBuilder
impl Clone for MeshSpecBuilder
source§fn clone(&self) -> MeshSpecBuilder
fn clone(&self) -> MeshSpecBuilder
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 MeshSpecBuilder
impl Debug for MeshSpecBuilder
source§impl Default for MeshSpecBuilder
impl Default for MeshSpecBuilder
source§fn default() -> MeshSpecBuilder
fn default() -> MeshSpecBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for MeshSpecBuilder
impl PartialEq for MeshSpecBuilder
source§fn eq(&self, other: &MeshSpecBuilder) -> bool
fn eq(&self, other: &MeshSpecBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MeshSpecBuilder
Auto Trait Implementations§
impl Freeze for MeshSpecBuilder
impl RefUnwindSafe for MeshSpecBuilder
impl Send for MeshSpecBuilder
impl Sync for MeshSpecBuilder
impl Unpin for MeshSpecBuilder
impl UnwindSafe for MeshSpecBuilder
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> 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.