#[non_exhaustive]pub struct DeleteRestApiInputBuilder { /* private fields */ }
Expand description
A builder for DeleteRestApiInput
.
Implementations§
source§impl DeleteRestApiInputBuilder
impl DeleteRestApiInputBuilder
sourcepub fn rest_api_id(self, input: impl Into<String>) -> Self
pub fn rest_api_id(self, input: impl Into<String>) -> Self
The string identifier of the associated RestApi.
sourcepub fn set_rest_api_id(self, input: Option<String>) -> Self
pub fn set_rest_api_id(self, input: Option<String>) -> Self
The string identifier of the associated RestApi.
sourcepub fn get_rest_api_id(&self) -> &Option<String>
pub fn get_rest_api_id(&self) -> &Option<String>
The string identifier of the associated RestApi.
sourcepub fn build(self) -> Result<DeleteRestApiInput, BuildError>
pub fn build(self) -> Result<DeleteRestApiInput, BuildError>
Consumes the builder and constructs a DeleteRestApiInput
.
source§impl DeleteRestApiInputBuilder
impl DeleteRestApiInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteRestApiOutput, SdkError<DeleteRestApiError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteRestApiOutput, SdkError<DeleteRestApiError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteRestApiInputBuilder
impl Clone for DeleteRestApiInputBuilder
source§fn clone(&self) -> DeleteRestApiInputBuilder
fn clone(&self) -> DeleteRestApiInputBuilder
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 moresource§impl Debug for DeleteRestApiInputBuilder
impl Debug for DeleteRestApiInputBuilder
source§impl Default for DeleteRestApiInputBuilder
impl Default for DeleteRestApiInputBuilder
source§fn default() -> DeleteRestApiInputBuilder
fn default() -> DeleteRestApiInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteRestApiInputBuilder> for DeleteRestApiInputBuilder
impl PartialEq<DeleteRestApiInputBuilder> for DeleteRestApiInputBuilder
source§fn eq(&self, other: &DeleteRestApiInputBuilder) -> bool
fn eq(&self, other: &DeleteRestApiInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteRestApiInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteRestApiInputBuilder
impl Send for DeleteRestApiInputBuilder
impl Sync for DeleteRestApiInputBuilder
impl Unpin for DeleteRestApiInputBuilder
impl UnwindSafe for DeleteRestApiInputBuilder
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