#[non_exhaustive]pub struct GetConfigInputBuilder { /* private fields */ }Expand description
A builder for GetConfigInput.
Implementations§
source§impl GetConfigInputBuilder
impl GetConfigInputBuilder
sourcepub fn client_arn(self, input: impl Into<String>) -> Self
pub fn client_arn(self, input: impl Into<String>) -> Self
The ARN of the client.
sourcepub fn set_client_arn(self, input: Option<String>) -> Self
pub fn set_client_arn(self, input: Option<String>) -> Self
The ARN of the client.
sourcepub fn get_client_arn(&self) -> &Option<String>
pub fn get_client_arn(&self) -> &Option<String>
The ARN of the client.
sourcepub fn client_version(self, input: ClientVersion) -> Self
pub fn client_version(self, input: ClientVersion) -> Self
The client version.
sourcepub fn set_client_version(self, input: Option<ClientVersion>) -> Self
pub fn set_client_version(self, input: Option<ClientVersion>) -> Self
The client version.
sourcepub fn get_client_version(&self) -> &Option<ClientVersion>
pub fn get_client_version(&self) -> &Option<ClientVersion>
The client version.
sourcepub fn hapg_list(self, input: impl Into<String>) -> Self
pub fn hapg_list(self, input: impl Into<String>) -> Self
Appends an item to hapg_list.
To override the contents of this collection use set_hapg_list.
A list of ARNs that identify the high-availability partition groups that are associated with the client.
sourcepub fn set_hapg_list(self, input: Option<Vec<String>>) -> Self
pub fn set_hapg_list(self, input: Option<Vec<String>>) -> Self
A list of ARNs that identify the high-availability partition groups that are associated with the client.
sourcepub fn get_hapg_list(&self) -> &Option<Vec<String>>
pub fn get_hapg_list(&self) -> &Option<Vec<String>>
A list of ARNs that identify the high-availability partition groups that are associated with the client.
sourcepub fn build(self) -> Result<GetConfigInput, BuildError>
pub fn build(self) -> Result<GetConfigInput, BuildError>
Consumes the builder and constructs a GetConfigInput.
source§impl GetConfigInputBuilder
impl GetConfigInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetConfigOutput, SdkError<GetConfigError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetConfigOutput, SdkError<GetConfigError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetConfigInputBuilder
impl Clone for GetConfigInputBuilder
source§fn clone(&self) -> GetConfigInputBuilder
fn clone(&self) -> GetConfigInputBuilder
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 GetConfigInputBuilder
impl Debug for GetConfigInputBuilder
source§impl Default for GetConfigInputBuilder
impl Default for GetConfigInputBuilder
source§fn default() -> GetConfigInputBuilder
fn default() -> GetConfigInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetConfigInputBuilder> for GetConfigInputBuilder
impl PartialEq<GetConfigInputBuilder> for GetConfigInputBuilder
source§fn eq(&self, other: &GetConfigInputBuilder) -> bool
fn eq(&self, other: &GetConfigInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetConfigInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetConfigInputBuilder
impl Send for GetConfigInputBuilder
impl Sync for GetConfigInputBuilder
impl Unpin for GetConfigInputBuilder
impl UnwindSafe for GetConfigInputBuilder
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