#[non_exhaustive]pub struct RestoreObjectOutputBuilder { /* private fields */ }
Expand description
A builder for RestoreObjectOutput
.
Implementations§
source§impl RestoreObjectOutputBuilder
impl RestoreObjectOutputBuilder
sourcepub fn request_charged(self, input: RequestCharged) -> Self
pub fn request_charged(self, input: RequestCharged) -> Self
If present, indicates that the requester was successfully charged for the request.
sourcepub fn set_request_charged(self, input: Option<RequestCharged>) -> Self
pub fn set_request_charged(self, input: Option<RequestCharged>) -> Self
If present, indicates that the requester was successfully charged for the request.
sourcepub fn get_request_charged(&self) -> &Option<RequestCharged>
pub fn get_request_charged(&self) -> &Option<RequestCharged>
If present, indicates that the requester was successfully charged for the request.
sourcepub fn restore_output_path(self, input: impl Into<String>) -> Self
pub fn restore_output_path(self, input: impl Into<String>) -> Self
Indicates the path in the provided S3 output location where Select results will be restored to.
sourcepub fn set_restore_output_path(self, input: Option<String>) -> Self
pub fn set_restore_output_path(self, input: Option<String>) -> Self
Indicates the path in the provided S3 output location where Select results will be restored to.
sourcepub fn get_restore_output_path(&self) -> &Option<String>
pub fn get_restore_output_path(&self) -> &Option<String>
Indicates the path in the provided S3 output location where Select results will be restored to.
sourcepub fn build(self) -> RestoreObjectOutput
pub fn build(self) -> RestoreObjectOutput
Consumes the builder and constructs a RestoreObjectOutput
.
Trait Implementations§
source§impl Clone for RestoreObjectOutputBuilder
impl Clone for RestoreObjectOutputBuilder
source§fn clone(&self) -> RestoreObjectOutputBuilder
fn clone(&self) -> RestoreObjectOutputBuilder
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 RestoreObjectOutputBuilder
impl Debug for RestoreObjectOutputBuilder
source§impl Default for RestoreObjectOutputBuilder
impl Default for RestoreObjectOutputBuilder
source§fn default() -> RestoreObjectOutputBuilder
fn default() -> RestoreObjectOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RestoreObjectOutputBuilder
impl PartialEq for RestoreObjectOutputBuilder
source§fn eq(&self, other: &RestoreObjectOutputBuilder) -> bool
fn eq(&self, other: &RestoreObjectOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RestoreObjectOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for RestoreObjectOutputBuilder
impl Send for RestoreObjectOutputBuilder
impl Sync for RestoreObjectOutputBuilder
impl Unpin for RestoreObjectOutputBuilder
impl UnwindSafe for RestoreObjectOutputBuilder
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