Struct aws_sdk_glue::operation::get_user_defined_functions::builders::GetUserDefinedFunctionsInputBuilder
source · #[non_exhaustive]pub struct GetUserDefinedFunctionsInputBuilder { /* private fields */ }
Expand description
A builder for GetUserDefinedFunctionsInput
.
Implementations§
source§impl GetUserDefinedFunctionsInputBuilder
impl GetUserDefinedFunctionsInputBuilder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
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 set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
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 get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &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.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
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 set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
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 get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &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.
sourcepub fn pattern(self, input: impl Into<String>) -> Self
pub fn pattern(self, input: impl Into<String>) -> Self
An optional function-name pattern string that filters the function definitions returned.
sourcepub fn set_pattern(self, input: Option<String>) -> Self
pub fn set_pattern(self, input: Option<String>) -> Self
An optional function-name pattern string that filters the function definitions returned.
sourcepub fn get_pattern(&self) -> &Option<String>
pub fn get_pattern(&self) -> &Option<String>
An optional function-name pattern string that filters the function definitions returned.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if this is a continuation call.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of functions to return in one response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of functions to return in one response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of functions to return in one response.
sourcepub fn build(self) -> Result<GetUserDefinedFunctionsInput, BuildError>
pub fn build(self) -> Result<GetUserDefinedFunctionsInput, BuildError>
Consumes the builder and constructs a GetUserDefinedFunctionsInput
.
source§impl GetUserDefinedFunctionsInputBuilder
impl GetUserDefinedFunctionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetUserDefinedFunctionsOutput, SdkError<GetUserDefinedFunctionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetUserDefinedFunctionsOutput, SdkError<GetUserDefinedFunctionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetUserDefinedFunctionsInputBuilder
impl Clone for GetUserDefinedFunctionsInputBuilder
source§fn clone(&self) -> GetUserDefinedFunctionsInputBuilder
fn clone(&self) -> GetUserDefinedFunctionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetUserDefinedFunctionsInputBuilder
impl Default for GetUserDefinedFunctionsInputBuilder
source§fn default() -> GetUserDefinedFunctionsInputBuilder
fn default() -> GetUserDefinedFunctionsInputBuilder
source§impl PartialEq for GetUserDefinedFunctionsInputBuilder
impl PartialEq for GetUserDefinedFunctionsInputBuilder
source§fn eq(&self, other: &GetUserDefinedFunctionsInputBuilder) -> bool
fn eq(&self, other: &GetUserDefinedFunctionsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.