#[non_exhaustive]pub struct GetNamedQueryInputBuilder { /* private fields */ }Expand description
A builder for GetNamedQueryInput.
Implementations§
source§impl GetNamedQueryInputBuilder
impl GetNamedQueryInputBuilder
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. Use ListNamedQueries to get query IDs.
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. Use ListNamedQueries to get query IDs.
sourcepub fn get_named_query_id(&self) -> &Option<String>
pub fn get_named_query_id(&self) -> &Option<String>
The unique ID of the query. Use ListNamedQueries to get query IDs.
sourcepub fn build(self) -> Result<GetNamedQueryInput, BuildError>
pub fn build(self) -> Result<GetNamedQueryInput, BuildError>
Consumes the builder and constructs a GetNamedQueryInput.
source§impl GetNamedQueryInputBuilder
impl GetNamedQueryInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetNamedQueryOutput, SdkError<GetNamedQueryError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetNamedQueryOutput, SdkError<GetNamedQueryError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetNamedQueryInputBuilder
impl Clone for GetNamedQueryInputBuilder
source§fn clone(&self) -> GetNamedQueryInputBuilder
fn clone(&self) -> GetNamedQueryInputBuilder
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 GetNamedQueryInputBuilder
impl Debug for GetNamedQueryInputBuilder
source§impl Default for GetNamedQueryInputBuilder
impl Default for GetNamedQueryInputBuilder
source§fn default() -> GetNamedQueryInputBuilder
fn default() -> GetNamedQueryInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetNamedQueryInputBuilder> for GetNamedQueryInputBuilder
impl PartialEq<GetNamedQueryInputBuilder> for GetNamedQueryInputBuilder
source§fn eq(&self, other: &GetNamedQueryInputBuilder) -> bool
fn eq(&self, other: &GetNamedQueryInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetNamedQueryInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetNamedQueryInputBuilder
impl Send for GetNamedQueryInputBuilder
impl Sync for GetNamedQueryInputBuilder
impl Unpin for GetNamedQueryInputBuilder
impl UnwindSafe for GetNamedQueryInputBuilder
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