Struct aws_sdk_appmesh::model::virtual_node_spec::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for VirtualNodeSpec
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn service_discovery(self, input: ServiceDiscovery) -> Self
pub fn service_discovery(self, input: ServiceDiscovery) -> Self
The service discovery information for the virtual node. If your virtual node does not expect ingress traffic, you can omit this parameter. If you specify a listener
, then you must specify service discovery information.
sourcepub fn set_service_discovery(self, input: Option<ServiceDiscovery>) -> Self
pub fn set_service_discovery(self, input: Option<ServiceDiscovery>) -> Self
The service discovery information for the virtual node. If your virtual node does not expect ingress traffic, you can omit this parameter. If you specify a listener
, then you must specify service discovery information.
sourcepub fn listeners(self, input: Listener) -> Self
pub fn listeners(self, input: Listener) -> Self
Appends an item to listeners
.
To override the contents of this collection use set_listeners
.
The listener that the virtual node is expected to receive inbound traffic from. You can specify one listener.
sourcepub fn set_listeners(self, input: Option<Vec<Listener>>) -> Self
pub fn set_listeners(self, input: Option<Vec<Listener>>) -> Self
The listener that the virtual node is expected to receive inbound traffic from. You can specify one listener.
sourcepub fn backends(self, input: Backend) -> Self
pub fn backends(self, input: Backend) -> Self
Appends an item to backends
.
To override the contents of this collection use set_backends
.
The backends that the virtual node is expected to send outbound traffic to.
sourcepub fn set_backends(self, input: Option<Vec<Backend>>) -> Self
pub fn set_backends(self, input: Option<Vec<Backend>>) -> Self
The backends that the virtual node is expected to send outbound traffic to.
sourcepub fn backend_defaults(self, input: BackendDefaults) -> Self
pub fn backend_defaults(self, input: BackendDefaults) -> Self
A reference to an object that represents the defaults for backends.
sourcepub fn set_backend_defaults(self, input: Option<BackendDefaults>) -> Self
pub fn set_backend_defaults(self, input: Option<BackendDefaults>) -> Self
A reference to an object that represents the defaults for backends.
sourcepub fn logging(self, input: Logging) -> Self
pub fn logging(self, input: Logging) -> Self
The inbound and outbound access logging information for the virtual node.
sourcepub fn set_logging(self, input: Option<Logging>) -> Self
pub fn set_logging(self, input: Option<Logging>) -> Self
The inbound and outbound access logging information for the virtual node.
sourcepub fn build(self) -> VirtualNodeSpec
pub fn build(self) -> VirtualNodeSpec
Consumes the builder and constructs a VirtualNodeSpec
.