Struct aws_sdk_glue::input::GetDatabasesInput
source · #[non_exhaustive]pub struct GetDatabasesInput { /* private fields */ }Implementations§
source§impl GetDatabasesInput
impl GetDatabasesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetDatabases, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetDatabases, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetDatabases>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetDatabasesInput.
source§impl GetDatabasesInput
impl GetDatabasesInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog from which to retrieve Databases. If none is provided, the Amazon Web Services account ID is used by default.
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 databases to return in one response.
Allows you to specify that you want to list the databases shared with your account. The allowable values are FOREIGN or ALL.
-
If set to
FOREIGN, will list the databases shared with your account. -
If set to
ALL, will list the databases shared with your account, as well as the databases in yor local account.
Trait Implementations§
source§impl Clone for GetDatabasesInput
impl Clone for GetDatabasesInput
source§fn clone(&self) -> GetDatabasesInput
fn clone(&self) -> GetDatabasesInput
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 GetDatabasesInput
impl Debug for GetDatabasesInput
source§impl PartialEq<GetDatabasesInput> for GetDatabasesInput
impl PartialEq<GetDatabasesInput> for GetDatabasesInput
source§fn eq(&self, other: &GetDatabasesInput) -> bool
fn eq(&self, other: &GetDatabasesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.