#[non_exhaustive]pub struct UpdateRelayInputBuilder { /* private fields */ }Expand description
A builder for UpdateRelayInput.
Implementations§
source§impl UpdateRelayInputBuilder
impl UpdateRelayInputBuilder
sourcepub fn relay_id(self, input: impl Into<String>) -> Self
pub fn relay_id(self, input: impl Into<String>) -> Self
The unique relay identifier.
This field is required.sourcepub fn set_relay_id(self, input: Option<String>) -> Self
pub fn set_relay_id(self, input: Option<String>) -> Self
The unique relay identifier.
sourcepub fn get_relay_id(&self) -> &Option<String>
pub fn get_relay_id(&self) -> &Option<String>
The unique relay identifier.
sourcepub fn relay_name(self, input: impl Into<String>) -> Self
pub fn relay_name(self, input: impl Into<String>) -> Self
The name of the relay resource.
sourcepub fn set_relay_name(self, input: Option<String>) -> Self
pub fn set_relay_name(self, input: Option<String>) -> Self
The name of the relay resource.
sourcepub fn get_relay_name(&self) -> &Option<String>
pub fn get_relay_name(&self) -> &Option<String>
The name of the relay resource.
sourcepub fn server_name(self, input: impl Into<String>) -> Self
pub fn server_name(self, input: impl Into<String>) -> Self
The destination relay server address.
sourcepub fn set_server_name(self, input: Option<String>) -> Self
pub fn set_server_name(self, input: Option<String>) -> Self
The destination relay server address.
sourcepub fn get_server_name(&self) -> &Option<String>
pub fn get_server_name(&self) -> &Option<String>
The destination relay server address.
sourcepub fn server_port(self, input: i32) -> Self
pub fn server_port(self, input: i32) -> Self
The destination relay server port.
sourcepub fn set_server_port(self, input: Option<i32>) -> Self
pub fn set_server_port(self, input: Option<i32>) -> Self
The destination relay server port.
sourcepub fn get_server_port(&self) -> &Option<i32>
pub fn get_server_port(&self) -> &Option<i32>
The destination relay server port.
sourcepub fn authentication(self, input: RelayAuthentication) -> Self
pub fn authentication(self, input: RelayAuthentication) -> Self
Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.
sourcepub fn set_authentication(self, input: Option<RelayAuthentication>) -> Self
pub fn set_authentication(self, input: Option<RelayAuthentication>) -> Self
Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.
sourcepub fn get_authentication(&self) -> &Option<RelayAuthentication>
pub fn get_authentication(&self) -> &Option<RelayAuthentication>
Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.
sourcepub fn build(self) -> Result<UpdateRelayInput, BuildError>
pub fn build(self) -> Result<UpdateRelayInput, BuildError>
Consumes the builder and constructs a UpdateRelayInput.
source§impl UpdateRelayInputBuilder
impl UpdateRelayInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateRelayOutput, SdkError<UpdateRelayError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateRelayOutput, SdkError<UpdateRelayError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateRelayInputBuilder
impl Clone for UpdateRelayInputBuilder
source§fn clone(&self) -> UpdateRelayInputBuilder
fn clone(&self) -> UpdateRelayInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateRelayInputBuilder
impl Debug for UpdateRelayInputBuilder
source§impl Default for UpdateRelayInputBuilder
impl Default for UpdateRelayInputBuilder
source§fn default() -> UpdateRelayInputBuilder
fn default() -> UpdateRelayInputBuilder
source§impl PartialEq for UpdateRelayInputBuilder
impl PartialEq for UpdateRelayInputBuilder
source§fn eq(&self, other: &UpdateRelayInputBuilder) -> bool
fn eq(&self, other: &UpdateRelayInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRelayInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateRelayInputBuilder
impl RefUnwindSafe for UpdateRelayInputBuilder
impl Send for UpdateRelayInputBuilder
impl Sync for UpdateRelayInputBuilder
impl Unpin for UpdateRelayInputBuilder
impl UnwindSafe for UpdateRelayInputBuilder
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
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>
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>
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 more