#[non_exhaustive]pub struct GetUserDefinedFunctionsInput { /* private fields */ }
Implementations§
source§impl GetUserDefinedFunctionsInput
impl GetUserDefinedFunctionsInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog where the functions to be retrieved are located. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the catalog database where the functions are located. If none is provided, functions from all the databases across the catalog will be returned.
sourcepub fn pattern(&self) -> Option<&str>
pub fn pattern(&self) -> Option<&str>
An optional function-name pattern string that filters the function definitions returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if this is a continuation call.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of functions to return in one response.
source§impl GetUserDefinedFunctionsInput
impl GetUserDefinedFunctionsInput
sourcepub fn builder() -> GetUserDefinedFunctionsInputBuilder
pub fn builder() -> GetUserDefinedFunctionsInputBuilder
Creates a new builder-style object to manufacture GetUserDefinedFunctionsInput
.
source§impl GetUserDefinedFunctionsInput
impl GetUserDefinedFunctionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetUserDefinedFunctions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<GetUserDefinedFunctions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetUserDefinedFunctions
>
Trait Implementations§
source§impl Clone for GetUserDefinedFunctionsInput
impl Clone for GetUserDefinedFunctionsInput
source§fn clone(&self) -> GetUserDefinedFunctionsInput
fn clone(&self) -> GetUserDefinedFunctionsInput
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 GetUserDefinedFunctionsInput
impl Debug for GetUserDefinedFunctionsInput
source§impl PartialEq<GetUserDefinedFunctionsInput> for GetUserDefinedFunctionsInput
impl PartialEq<GetUserDefinedFunctionsInput> for GetUserDefinedFunctionsInput
source§fn eq(&self, other: &GetUserDefinedFunctionsInput) -> bool
fn eq(&self, other: &GetUserDefinedFunctionsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetUserDefinedFunctionsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetUserDefinedFunctionsInput
impl Send for GetUserDefinedFunctionsInput
impl Sync for GetUserDefinedFunctionsInput
impl Unpin for GetUserDefinedFunctionsInput
impl UnwindSafe for GetUserDefinedFunctionsInput
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