#[non_exhaustive]pub struct GetDatabasesOutputBuilder { /* private fields */ }
Expand description
A builder for GetDatabasesOutput
.
Implementations§
source§impl GetDatabasesOutputBuilder
impl GetDatabasesOutputBuilder
sourcepub fn database_list(self, input: Database) -> Self
pub fn database_list(self, input: Database) -> Self
Appends an item to database_list
.
To override the contents of this collection use set_database_list
.
A list of Database
objects from the specified catalog.
sourcepub fn set_database_list(self, input: Option<Vec<Database>>) -> Self
pub fn set_database_list(self, input: Option<Vec<Database>>) -> Self
A list of Database
objects from the specified catalog.
sourcepub fn get_database_list(&self) -> &Option<Vec<Database>>
pub fn get_database_list(&self) -> &Option<Vec<Database>>
A list of Database
objects from the specified catalog.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
sourcepub fn build(self) -> GetDatabasesOutput
pub fn build(self) -> GetDatabasesOutput
Consumes the builder and constructs a GetDatabasesOutput
.
Trait Implementations§
source§impl Clone for GetDatabasesOutputBuilder
impl Clone for GetDatabasesOutputBuilder
source§fn clone(&self) -> GetDatabasesOutputBuilder
fn clone(&self) -> GetDatabasesOutputBuilder
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 GetDatabasesOutputBuilder
impl Debug for GetDatabasesOutputBuilder
source§impl Default for GetDatabasesOutputBuilder
impl Default for GetDatabasesOutputBuilder
source§fn default() -> GetDatabasesOutputBuilder
fn default() -> GetDatabasesOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetDatabasesOutputBuilder
impl PartialEq for GetDatabasesOutputBuilder
source§fn eq(&self, other: &GetDatabasesOutputBuilder) -> bool
fn eq(&self, other: &GetDatabasesOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDatabasesOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetDatabasesOutputBuilder
impl Send for GetDatabasesOutputBuilder
impl Sync for GetDatabasesOutputBuilder
impl Unpin for GetDatabasesOutputBuilder
impl UnwindSafe for GetDatabasesOutputBuilder
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