Struct aws_sdk_finspace::operation::update_kx_database::builders::UpdateKxDatabaseInputBuilder
source · #[non_exhaustive]pub struct UpdateKxDatabaseInputBuilder { /* private fields */ }Expand description
A builder for UpdateKxDatabaseInput.
Implementations§
source§impl UpdateKxDatabaseInputBuilder
impl UpdateKxDatabaseInputBuilder
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.
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.
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 description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the database.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the database.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the database.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A token that ensures idempotency. This token expires in 10 minutes.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A token that ensures idempotency. This token expires in 10 minutes.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A token that ensures idempotency. This token expires in 10 minutes.
sourcepub fn build(self) -> Result<UpdateKxDatabaseInput, BuildError>
pub fn build(self) -> Result<UpdateKxDatabaseInput, BuildError>
Consumes the builder and constructs a UpdateKxDatabaseInput.
source§impl UpdateKxDatabaseInputBuilder
impl UpdateKxDatabaseInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateKxDatabaseOutput, SdkError<UpdateKxDatabaseError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateKxDatabaseOutput, SdkError<UpdateKxDatabaseError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateKxDatabaseInputBuilder
impl Clone for UpdateKxDatabaseInputBuilder
source§fn clone(&self) -> UpdateKxDatabaseInputBuilder
fn clone(&self) -> UpdateKxDatabaseInputBuilder
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 UpdateKxDatabaseInputBuilder
impl Debug for UpdateKxDatabaseInputBuilder
source§impl Default for UpdateKxDatabaseInputBuilder
impl Default for UpdateKxDatabaseInputBuilder
source§fn default() -> UpdateKxDatabaseInputBuilder
fn default() -> UpdateKxDatabaseInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateKxDatabaseInputBuilder
impl PartialEq for UpdateKxDatabaseInputBuilder
source§fn eq(&self, other: &UpdateKxDatabaseInputBuilder) -> bool
fn eq(&self, other: &UpdateKxDatabaseInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKxDatabaseInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateKxDatabaseInputBuilder
impl Send for UpdateKxDatabaseInputBuilder
impl Sync for UpdateKxDatabaseInputBuilder
impl Unpin for UpdateKxDatabaseInputBuilder
impl UnwindSafe for UpdateKxDatabaseInputBuilder
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