#[non_exhaustive]pub struct GetKxChangesetInputBuilder { /* private fields */ }
Expand description
A builder for GetKxChangesetInput
.
Implementations§
source§impl GetKxChangesetInputBuilder
impl GetKxChangesetInputBuilder
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 changeset_id(self, input: impl Into<String>) -> Self
pub fn changeset_id(self, input: impl Into<String>) -> Self
A unique identifier of the changeset for which you want to retrieve data.
This field is required.sourcepub fn set_changeset_id(self, input: Option<String>) -> Self
pub fn set_changeset_id(self, input: Option<String>) -> Self
A unique identifier of the changeset for which you want to retrieve data.
sourcepub fn get_changeset_id(&self) -> &Option<String>
pub fn get_changeset_id(&self) -> &Option<String>
A unique identifier of the changeset for which you want to retrieve data.
sourcepub fn build(self) -> Result<GetKxChangesetInput, BuildError>
pub fn build(self) -> Result<GetKxChangesetInput, BuildError>
Consumes the builder and constructs a GetKxChangesetInput
.
source§impl GetKxChangesetInputBuilder
impl GetKxChangesetInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetKxChangesetOutput, SdkError<GetKxChangesetError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetKxChangesetOutput, SdkError<GetKxChangesetError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetKxChangesetInputBuilder
impl Clone for GetKxChangesetInputBuilder
source§fn clone(&self) -> GetKxChangesetInputBuilder
fn clone(&self) -> GetKxChangesetInputBuilder
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 GetKxChangesetInputBuilder
impl Debug for GetKxChangesetInputBuilder
source§impl Default for GetKxChangesetInputBuilder
impl Default for GetKxChangesetInputBuilder
source§fn default() -> GetKxChangesetInputBuilder
fn default() -> GetKxChangesetInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetKxChangesetInputBuilder
impl PartialEq for GetKxChangesetInputBuilder
source§fn eq(&self, other: &GetKxChangesetInputBuilder) -> bool
fn eq(&self, other: &GetKxChangesetInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetKxChangesetInputBuilder
Auto Trait Implementations§
impl Freeze for GetKxChangesetInputBuilder
impl RefUnwindSafe for GetKxChangesetInputBuilder
impl Send for GetKxChangesetInputBuilder
impl Sync for GetKxChangesetInputBuilder
impl Unpin for GetKxChangesetInputBuilder
impl UnwindSafe for GetKxChangesetInputBuilder
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.