Struct aws_sdk_apigateway::operation::delete_base_path_mapping::builders::DeleteBasePathMappingFluentBuilder
source · pub struct DeleteBasePathMappingFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteBasePathMapping
.
Deletes the BasePathMapping resource.
Implementations§
source§impl DeleteBasePathMappingFluentBuilder
impl DeleteBasePathMappingFluentBuilder
sourcepub fn as_input(&self) -> &DeleteBasePathMappingInputBuilder
pub fn as_input(&self) -> &DeleteBasePathMappingInputBuilder
Access the DeleteBasePathMapping as a reference.
sourcepub async fn send(
self
) -> Result<DeleteBasePathMappingOutput, SdkError<DeleteBasePathMappingError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteBasePathMappingOutput, SdkError<DeleteBasePathMappingError, 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<DeleteBasePathMappingOutput, DeleteBasePathMappingError>, SdkError<DeleteBasePathMappingError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeleteBasePathMappingOutput, DeleteBasePathMappingError>, SdkError<DeleteBasePathMappingError>>
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 of the BasePathMapping resource to delete.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The domain name of the BasePathMapping resource to delete.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
The domain name of the BasePathMapping resource to delete.
sourcepub fn base_path(self, input: impl Into<String>) -> Self
pub fn base_path(self, input: impl Into<String>) -> Self
The base path name of the BasePathMapping resource to delete.
To specify an empty base path, set this parameter to '(none)'
.
sourcepub fn set_base_path(self, input: Option<String>) -> Self
pub fn set_base_path(self, input: Option<String>) -> Self
The base path name of the BasePathMapping resource to delete.
To specify an empty base path, set this parameter to '(none)'
.
sourcepub fn get_base_path(&self) -> &Option<String>
pub fn get_base_path(&self) -> &Option<String>
The base path name of the BasePathMapping resource to delete.
To specify an empty base path, set this parameter to '(none)'
.
Trait Implementations§
source§impl Clone for DeleteBasePathMappingFluentBuilder
impl Clone for DeleteBasePathMappingFluentBuilder
source§fn clone(&self) -> DeleteBasePathMappingFluentBuilder
fn clone(&self) -> DeleteBasePathMappingFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more