#[non_exhaustive]pub struct GetKxDatabaseInputBuilder { /* private fields */ }Expand description
A builder for GetKxDatabaseInput.
Implementations§
source§impl GetKxDatabaseInputBuilder
impl GetKxDatabaseInputBuilder
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
A unique identifier for the kdb environment.
This field is required.sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
A unique identifier for the kdb environment.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the kdb database.
This field is required.sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the kdb database.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the kdb database.
sourcepub fn build(self) -> Result<GetKxDatabaseInput, BuildError>
pub fn build(self) -> Result<GetKxDatabaseInput, BuildError>
Consumes the builder and constructs a GetKxDatabaseInput.
source§impl GetKxDatabaseInputBuilder
impl GetKxDatabaseInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetKxDatabaseOutput, SdkError<GetKxDatabaseError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetKxDatabaseOutput, SdkError<GetKxDatabaseError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetKxDatabaseInputBuilder
impl Clone for GetKxDatabaseInputBuilder
source§fn clone(&self) -> GetKxDatabaseInputBuilder
fn clone(&self) -> GetKxDatabaseInputBuilder
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 GetKxDatabaseInputBuilder
impl Debug for GetKxDatabaseInputBuilder
source§impl Default for GetKxDatabaseInputBuilder
impl Default for GetKxDatabaseInputBuilder
source§fn default() -> GetKxDatabaseInputBuilder
fn default() -> GetKxDatabaseInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetKxDatabaseInputBuilder
impl PartialEq for GetKxDatabaseInputBuilder
source§fn eq(&self, other: &GetKxDatabaseInputBuilder) -> bool
fn eq(&self, other: &GetKxDatabaseInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetKxDatabaseInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetKxDatabaseInputBuilder
impl Send for GetKxDatabaseInputBuilder
impl Sync for GetKxDatabaseInputBuilder
impl Unpin for GetKxDatabaseInputBuilder
impl UnwindSafe for GetKxDatabaseInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.