pub struct DeleteNamedQueryFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteNamedQuery.
Deletes the named query if you have access to the workgroup in which the query was saved.
Implementations§
Source§impl DeleteNamedQueryFluentBuilder
impl DeleteNamedQueryFluentBuilder
Sourcepub fn as_input(&self) -> &DeleteNamedQueryInputBuilder
pub fn as_input(&self) -> &DeleteNamedQueryInputBuilder
Access the DeleteNamedQuery as a reference.
Sourcepub async fn send(
self,
) -> Result<DeleteNamedQueryOutput, SdkError<DeleteNamedQueryError, HttpResponse>>
pub async fn send( self, ) -> Result<DeleteNamedQueryOutput, SdkError<DeleteNamedQueryError, 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 fn customize(
self,
) -> CustomizableOperation<DeleteNamedQueryOutput, DeleteNamedQueryError, Self>
pub fn customize( self, ) -> CustomizableOperation<DeleteNamedQueryOutput, DeleteNamedQueryError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
Sourcepub fn named_query_id(self, input: impl Into<String>) -> Self
pub fn named_query_id(self, input: impl Into<String>) -> Self
The unique ID of the query to delete.
Sourcepub fn set_named_query_id(self, input: Option<String>) -> Self
pub fn set_named_query_id(self, input: Option<String>) -> Self
The unique ID of the query to delete.
Sourcepub fn get_named_query_id(&self) -> &Option<String>
pub fn get_named_query_id(&self) -> &Option<String>
The unique ID of the query to delete.
Trait Implementations§
Source§impl Clone for DeleteNamedQueryFluentBuilder
impl Clone for DeleteNamedQueryFluentBuilder
Source§fn clone(&self) -> DeleteNamedQueryFluentBuilder
fn clone(&self) -> DeleteNamedQueryFluentBuilder
Returns a duplicate 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 Freeze for DeleteNamedQueryFluentBuilder
impl !RefUnwindSafe for DeleteNamedQueryFluentBuilder
impl Send for DeleteNamedQueryFluentBuilder
impl Sync for DeleteNamedQueryFluentBuilder
impl Unpin for DeleteNamedQueryFluentBuilder
impl UnsafeUnpin for DeleteNamedQueryFluentBuilder
impl !UnwindSafe for DeleteNamedQueryFluentBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.