Struct aws_sdk_appmesh::types::builders::RouteDataBuilder
source · #[non_exhaustive]pub struct RouteDataBuilder { /* private fields */ }Expand description
A builder for RouteData.
Implementations§
source§impl RouteDataBuilder
impl RouteDataBuilder
sourcepub fn mesh_name(self, input: impl Into<String>) -> Self
pub fn mesh_name(self, input: impl Into<String>) -> Self
The name of the service mesh that the route resides in.
sourcepub fn set_mesh_name(self, input: Option<String>) -> Self
pub fn set_mesh_name(self, input: Option<String>) -> Self
The name of the service mesh that the route resides in.
sourcepub fn virtual_router_name(self, input: impl Into<String>) -> Self
pub fn virtual_router_name(self, input: impl Into<String>) -> Self
The virtual router that the route is associated with.
sourcepub fn set_virtual_router_name(self, input: Option<String>) -> Self
pub fn set_virtual_router_name(self, input: Option<String>) -> Self
The virtual router that the route is associated with.
sourcepub fn route_name(self, input: impl Into<String>) -> Self
pub fn route_name(self, input: impl Into<String>) -> Self
The name of the route.
sourcepub fn set_route_name(self, input: Option<String>) -> Self
pub fn set_route_name(self, input: Option<String>) -> Self
The name of the route.
sourcepub fn metadata(self, input: ResourceMetadata) -> Self
pub fn metadata(self, input: ResourceMetadata) -> Self
The associated metadata for the route.
sourcepub fn set_metadata(self, input: Option<ResourceMetadata>) -> Self
pub fn set_metadata(self, input: Option<ResourceMetadata>) -> Self
The associated metadata for the route.
sourcepub fn status(self, input: RouteStatus) -> Self
pub fn status(self, input: RouteStatus) -> Self
The status of the route.
sourcepub fn set_status(self, input: Option<RouteStatus>) -> Self
pub fn set_status(self, input: Option<RouteStatus>) -> Self
The status of the route.
Trait Implementations§
source§impl Clone for RouteDataBuilder
impl Clone for RouteDataBuilder
source§fn clone(&self) -> RouteDataBuilder
fn clone(&self) -> RouteDataBuilder
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 RouteDataBuilder
impl Debug for RouteDataBuilder
source§impl Default for RouteDataBuilder
impl Default for RouteDataBuilder
source§fn default() -> RouteDataBuilder
fn default() -> RouteDataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<RouteDataBuilder> for RouteDataBuilder
impl PartialEq<RouteDataBuilder> for RouteDataBuilder
source§fn eq(&self, other: &RouteDataBuilder) -> bool
fn eq(&self, other: &RouteDataBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.