Struct aws_sdk_s3control::types::S3SetObjectAclOperation
source · #[non_exhaustive]pub struct S3SetObjectAclOperation {
pub access_control_policy: Option<S3AccessControlPolicy>,
}
Expand description
Contains the configuration parameters for a PUT Object ACL operation. S3 Batch Operations passes every object to the underlying PutObjectAcl
API operation. For more information about the parameters for this operation, see PutObjectAcl.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.access_control_policy: Option<S3AccessControlPolicy>
Implementations§
source§impl S3SetObjectAclOperation
impl S3SetObjectAclOperation
sourcepub fn access_control_policy(&self) -> Option<&S3AccessControlPolicy>
pub fn access_control_policy(&self) -> Option<&S3AccessControlPolicy>
source§impl S3SetObjectAclOperation
impl S3SetObjectAclOperation
sourcepub fn builder() -> S3SetObjectAclOperationBuilder
pub fn builder() -> S3SetObjectAclOperationBuilder
Creates a new builder-style object to manufacture S3SetObjectAclOperation
.
Trait Implementations§
source§impl Clone for S3SetObjectAclOperation
impl Clone for S3SetObjectAclOperation
source§fn clone(&self) -> S3SetObjectAclOperation
fn clone(&self) -> S3SetObjectAclOperation
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 S3SetObjectAclOperation
impl Debug for S3SetObjectAclOperation
source§impl PartialEq for S3SetObjectAclOperation
impl PartialEq for S3SetObjectAclOperation
source§fn eq(&self, other: &S3SetObjectAclOperation) -> bool
fn eq(&self, other: &S3SetObjectAclOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for S3SetObjectAclOperation
Auto Trait Implementations§
impl RefUnwindSafe for S3SetObjectAclOperation
impl Send for S3SetObjectAclOperation
impl Sync for S3SetObjectAclOperation
impl Unpin for S3SetObjectAclOperation
impl UnwindSafe for S3SetObjectAclOperation
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.