pub struct GenerateTemporaryPathCredentialsBuilder { /* private fields */ }Expand description
Builder for temporary path credentials
Implementations§
Source§impl GenerateTemporaryPathCredentialsBuilder
impl GenerateTemporaryPathCredentialsBuilder
Sourcepub fn with_dry_run(self, dry_run: impl Into<Option<bool>>) -> Self
pub fn with_dry_run(self, dry_run: impl Into<Option<bool>>) -> Self
When set to true, the service will not validate that the generated credentials can perform write operations, therefore no new paths will be created and the response will not contain valid credentials. Defaults to false.
Trait Implementations§
Source§impl IntoFuture for GenerateTemporaryPathCredentialsBuilder
impl IntoFuture for GenerateTemporaryPathCredentialsBuilder
Source§type Output = Result<TemporaryCredential, Error>
type Output = Result<TemporaryCredential, Error>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <GenerateTemporaryPathCredentialsBuilder as IntoFuture>::Output> + Send>>
type IntoFuture = Pin<Box<dyn Future<Output = <GenerateTemporaryPathCredentialsBuilder as IntoFuture>::Output> + Send>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for GenerateTemporaryPathCredentialsBuilder
impl !UnwindSafe for GenerateTemporaryPathCredentialsBuilder
impl Freeze for GenerateTemporaryPathCredentialsBuilder
impl Send for GenerateTemporaryPathCredentialsBuilder
impl Sync for GenerateTemporaryPathCredentialsBuilder
impl Unpin for GenerateTemporaryPathCredentialsBuilder
impl UnsafeUnpin for GenerateTemporaryPathCredentialsBuilder
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