#[non_exhaustive]pub struct UnprocessedScramSecretBuilder { /* private fields */ }
Expand description
A builder for UnprocessedScramSecret
.
Implementations§
source§impl UnprocessedScramSecretBuilder
impl UnprocessedScramSecretBuilder
sourcepub fn error_code(self, input: impl Into<String>) -> Self
pub fn error_code(self, input: impl Into<String>) -> Self
Error code for associate/disassociate failure.
sourcepub fn set_error_code(self, input: Option<String>) -> Self
pub fn set_error_code(self, input: Option<String>) -> Self
Error code for associate/disassociate failure.
sourcepub fn get_error_code(&self) -> &Option<String>
pub fn get_error_code(&self) -> &Option<String>
Error code for associate/disassociate failure.
sourcepub fn error_message(self, input: impl Into<String>) -> Self
pub fn error_message(self, input: impl Into<String>) -> Self
Error message for associate/disassociate failure.
sourcepub fn set_error_message(self, input: Option<String>) -> Self
pub fn set_error_message(self, input: Option<String>) -> Self
Error message for associate/disassociate failure.
sourcepub fn get_error_message(&self) -> &Option<String>
pub fn get_error_message(&self) -> &Option<String>
Error message for associate/disassociate failure.
sourcepub fn secret_arn(self, input: impl Into<String>) -> Self
pub fn secret_arn(self, input: impl Into<String>) -> Self
AWS Secrets Manager secret ARN.
sourcepub fn set_secret_arn(self, input: Option<String>) -> Self
pub fn set_secret_arn(self, input: Option<String>) -> Self
AWS Secrets Manager secret ARN.
sourcepub fn get_secret_arn(&self) -> &Option<String>
pub fn get_secret_arn(&self) -> &Option<String>
AWS Secrets Manager secret ARN.
sourcepub fn build(self) -> UnprocessedScramSecret
pub fn build(self) -> UnprocessedScramSecret
Consumes the builder and constructs a UnprocessedScramSecret
.
Trait Implementations§
source§impl Clone for UnprocessedScramSecretBuilder
impl Clone for UnprocessedScramSecretBuilder
source§fn clone(&self) -> UnprocessedScramSecretBuilder
fn clone(&self) -> UnprocessedScramSecretBuilder
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 Default for UnprocessedScramSecretBuilder
impl Default for UnprocessedScramSecretBuilder
source§fn default() -> UnprocessedScramSecretBuilder
fn default() -> UnprocessedScramSecretBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UnprocessedScramSecretBuilder
impl PartialEq for UnprocessedScramSecretBuilder
source§fn eq(&self, other: &UnprocessedScramSecretBuilder) -> bool
fn eq(&self, other: &UnprocessedScramSecretBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UnprocessedScramSecretBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UnprocessedScramSecretBuilder
impl Send for UnprocessedScramSecretBuilder
impl Sync for UnprocessedScramSecretBuilder
impl Unpin for UnprocessedScramSecretBuilder
impl UnwindSafe for UnprocessedScramSecretBuilder
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.