Struct aws_sdk_appsync::operation::update_domain_name::builders::UpdateDomainNameFluentBuilder
source · pub struct UpdateDomainNameFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateDomainName
.
Updates a custom DomainName
object.
Implementations§
source§impl UpdateDomainNameFluentBuilder
impl UpdateDomainNameFluentBuilder
sourcepub fn as_input(&self) -> &UpdateDomainNameInputBuilder
pub fn as_input(&self) -> &UpdateDomainNameInputBuilder
Access the UpdateDomainName as a reference.
sourcepub async fn send(
self
) -> Result<UpdateDomainNameOutput, SdkError<UpdateDomainNameError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateDomainNameOutput, SdkError<UpdateDomainNameError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDomainNameOutput, UpdateDomainNameError>, SdkError<UpdateDomainNameError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateDomainNameOutput, UpdateDomainNameError>, SdkError<UpdateDomainNameError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The domain name.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The domain name.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
The domain name.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the DomainName
.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the DomainName
.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the DomainName
.
Trait Implementations§
source§impl Clone for UpdateDomainNameFluentBuilder
impl Clone for UpdateDomainNameFluentBuilder
source§fn clone(&self) -> UpdateDomainNameFluentBuilder
fn clone(&self) -> UpdateDomainNameFluentBuilder
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for UpdateDomainNameFluentBuilder
impl Send for UpdateDomainNameFluentBuilder
impl Sync for UpdateDomainNameFluentBuilder
impl Unpin for UpdateDomainNameFluentBuilder
impl !UnwindSafe for UpdateDomainNameFluentBuilder
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