#[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
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 inline_chunk_checksum_algorithm(
self,
input: DataChecksumAlgorithm
) -> Self
pub fn inline_chunk_checksum_algorithm( self, input: DataChecksumAlgorithm ) -> Self
Inline chunk checksum algorithm
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 object_checksum(self, input: impl Into<String>) -> Self
pub fn object_checksum(self, input: impl Into<String>) -> Self
object checksum
sourcepub fn set_object_checksum(self, input: Option<String>) -> Self
pub fn set_object_checksum(self, input: Option<String>) -> Self
object checksum
sourcepub fn object_checksum_algorithm(self, input: SummaryChecksumAlgorithm) -> Self
pub fn object_checksum_algorithm(self, input: SummaryChecksumAlgorithm) -> Self
object checksum algorithm
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 build(self) -> PutObjectOutput
pub fn build(self) -> PutObjectOutput
Consumes the builder and constructs a PutObjectOutput
.
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<PutObjectOutputBuilder> for PutObjectOutputBuilder
impl PartialEq<PutObjectOutputBuilder> 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 ==
.