#[non_exhaustive]pub struct GetUserDefinedFunctionsInput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub pattern: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.catalog_id: Option<String>
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.
database_name: Option<String>
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.
pattern: Option<String>
An optional function-name pattern string that filters the function definitions returned.
next_token: Option<String>
A continuation token, if this is a continuation call.
max_results: Option<i32>
The maximum number of functions to return in one response.
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
.
Trait Implementations§
source§impl Clone for GetUserDefinedFunctionsInput
impl Clone for GetUserDefinedFunctionsInput
source§fn clone(&self) -> GetUserDefinedFunctionsInput
fn clone(&self) -> GetUserDefinedFunctionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetUserDefinedFunctionsInput
impl Debug for GetUserDefinedFunctionsInput
source§impl PartialEq for GetUserDefinedFunctionsInput
impl PartialEq for GetUserDefinedFunctionsInput
source§fn eq(&self, other: &GetUserDefinedFunctionsInput) -> bool
fn eq(&self, other: &GetUserDefinedFunctionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.