Struct aws_sdk_globalaccelerator::model::port_override::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for PortOverride.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn listener_port(self, input: i32) -> Self
pub fn listener_port(self, input: i32) -> Self
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
sourcepub fn set_listener_port(self, input: Option<i32>) -> Self
pub fn set_listener_port(self, input: Option<i32>) -> Self
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
sourcepub fn endpoint_port(self, input: i32) -> Self
pub fn endpoint_port(self, input: i32) -> Self
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
sourcepub fn set_endpoint_port(self, input: Option<i32>) -> Self
pub fn set_endpoint_port(self, input: Option<i32>) -> Self
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
sourcepub fn build(self) -> PortOverride
pub fn build(self) -> PortOverride
Consumes the builder and constructs a PortOverride.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more