pub struct RestoreCredentialsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> RestoreCredentialsBuilder<S>
impl<S: State> RestoreCredentialsBuilder<S>
Sourcepub fn build(self) -> RestoreCredentialswhere
S: IsComplete,
pub fn build(self) -> RestoreCredentialswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn credentials(
self,
value: CredentialProcessOutput,
) -> RestoreCredentialsBuilder<SetCredentials<S>>where
S::Credentials: IsUnset,
pub fn credentials(
self,
value: CredentialProcessOutput,
) -> RestoreCredentialsBuilder<SetCredentials<S>>where
S::Credentials: IsUnset,
Required.
Temporary read-only AWS credentials in the credential_process output
format, valid for at most one hour.
Sourcepub fn repo_password(
self,
value: Redacted<String>,
) -> RestoreCredentialsBuilder<SetRepoPassword<S>>where
S::RepoPassword: IsUnset,
pub fn repo_password(
self,
value: Redacted<String>,
) -> RestoreCredentialsBuilder<SetRepoPassword<S>>where
S::RepoPassword: IsUnset,
Required.
Passphrase for the group’s backup repository (a Kopia repository).
Auto Trait Implementations§
impl<S> Freeze for RestoreCredentialsBuilder<S>
impl<S> RefUnwindSafe for RestoreCredentialsBuilder<S>
impl<S> Send for RestoreCredentialsBuilder<S>
impl<S> Sync for RestoreCredentialsBuilder<S>
impl<S> Unpin for RestoreCredentialsBuilder<S>
impl<S> UnsafeUnpin for RestoreCredentialsBuilder<S>
impl<S> UnwindSafe for RestoreCredentialsBuilder<S>
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