pub struct GetDatabasesRequest {
pub catalog_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub resource_share_type: Option<String>,
}Fields§
§catalog_id: Option<String>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.
max_results: Option<i64>The maximum number of databases to return in one response.
next_token: Option<String>A continuation token, if this is a continuation call.
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 GetDatabasesRequest
impl Clone for GetDatabasesRequest
Source§fn clone(&self) -> GetDatabasesRequest
fn clone(&self) -> GetDatabasesRequest
Returns a duplicate 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 GetDatabasesRequest
impl Debug for GetDatabasesRequest
Source§impl Default for GetDatabasesRequest
impl Default for GetDatabasesRequest
Source§fn default() -> GetDatabasesRequest
fn default() -> GetDatabasesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetDatabasesRequest
impl PartialEq for GetDatabasesRequest
Source§impl Serialize for GetDatabasesRequest
impl Serialize for GetDatabasesRequest
impl StructuralPartialEq for GetDatabasesRequest
Auto Trait Implementations§
impl Freeze for GetDatabasesRequest
impl RefUnwindSafe for GetDatabasesRequest
impl Send for GetDatabasesRequest
impl Sync for GetDatabasesRequest
impl Unpin for GetDatabasesRequest
impl UnwindSafe for GetDatabasesRequest
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