#[non_exhaustive]pub struct PutObjectOutputBuilder { /* private fields */ }
Expand description
A builder for PutObjectOutput
.
Implementations§
source§impl PutObjectOutputBuilder
impl PutObjectOutputBuilder
sourcepub fn inline_chunk_checksum(self, input: impl Into<String>) -> Self
pub fn inline_chunk_checksum(self, input: impl Into<String>) -> Self
Inline chunk checksum This field is required.
sourcepub fn set_inline_chunk_checksum(self, input: Option<String>) -> Self
pub fn set_inline_chunk_checksum(self, input: Option<String>) -> Self
Inline chunk checksum
sourcepub fn get_inline_chunk_checksum(&self) -> &Option<String>
pub fn get_inline_chunk_checksum(&self) -> &Option<String>
Inline chunk checksum
sourcepub fn inline_chunk_checksum_algorithm(
self,
input: DataChecksumAlgorithm
) -> Self
pub fn inline_chunk_checksum_algorithm( self, input: DataChecksumAlgorithm ) -> Self
Inline chunk checksum algorithm This field is required.
sourcepub fn set_inline_chunk_checksum_algorithm(
self,
input: Option<DataChecksumAlgorithm>
) -> Self
pub fn set_inline_chunk_checksum_algorithm( self, input: Option<DataChecksumAlgorithm> ) -> Self
Inline chunk checksum algorithm
sourcepub fn get_inline_chunk_checksum_algorithm(
&self
) -> &Option<DataChecksumAlgorithm>
pub fn get_inline_chunk_checksum_algorithm( &self ) -> &Option<DataChecksumAlgorithm>
Inline chunk checksum algorithm
sourcepub fn object_checksum(self, input: impl Into<String>) -> Self
pub fn object_checksum(self, input: impl Into<String>) -> Self
object checksum This field is required.
sourcepub fn set_object_checksum(self, input: Option<String>) -> Self
pub fn set_object_checksum(self, input: Option<String>) -> Self
object checksum
sourcepub fn get_object_checksum(&self) -> &Option<String>
pub fn get_object_checksum(&self) -> &Option<String>
object checksum
sourcepub fn object_checksum_algorithm(self, input: SummaryChecksumAlgorithm) -> Self
pub fn object_checksum_algorithm(self, input: SummaryChecksumAlgorithm) -> Self
object checksum algorithm This field is required.
sourcepub fn set_object_checksum_algorithm(
self,
input: Option<SummaryChecksumAlgorithm>
) -> Self
pub fn set_object_checksum_algorithm( self, input: Option<SummaryChecksumAlgorithm> ) -> Self
object checksum algorithm
sourcepub fn get_object_checksum_algorithm(&self) -> &Option<SummaryChecksumAlgorithm>
pub fn get_object_checksum_algorithm(&self) -> &Option<SummaryChecksumAlgorithm>
object checksum algorithm
sourcepub fn build(self) -> Result<PutObjectOutput, BuildError>
pub fn build(self) -> Result<PutObjectOutput, BuildError>
Consumes the builder and constructs a PutObjectOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for PutObjectOutputBuilder
impl Clone for PutObjectOutputBuilder
source§fn clone(&self) -> PutObjectOutputBuilder
fn clone(&self) -> PutObjectOutputBuilder
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 PutObjectOutputBuilder
impl Debug for PutObjectOutputBuilder
source§impl Default for PutObjectOutputBuilder
impl Default for PutObjectOutputBuilder
source§fn default() -> PutObjectOutputBuilder
fn default() -> PutObjectOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PutObjectOutputBuilder
impl PartialEq for PutObjectOutputBuilder
source§fn eq(&self, other: &PutObjectOutputBuilder) -> bool
fn eq(&self, other: &PutObjectOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutObjectOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PutObjectOutputBuilder
impl Send for PutObjectOutputBuilder
impl Sync for PutObjectOutputBuilder
impl Unpin for PutObjectOutputBuilder
impl UnwindSafe for PutObjectOutputBuilder
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.