Struct aws_sdk_s3::model::TargetGrant
source · [−]#[non_exhaustive]pub struct TargetGrant {
pub grantee: Option<Grantee>,
pub permission: Option<BucketLogsPermission>,
}
Expand description
Container for granting information.
Buckets that use the bucket owner enforced setting for Object Ownership don't support target grants. For more information, see Permissions server access log delivery in the Amazon S3 User Guide.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.grantee: Option<Grantee>
Container for the person being granted permissions.
permission: Option<BucketLogsPermission>
Logging permissions assigned to the grantee for the bucket.
Implementations
sourceimpl TargetGrant
impl TargetGrant
sourcepub fn permission(&self) -> Option<&BucketLogsPermission>
pub fn permission(&self) -> Option<&BucketLogsPermission>
Logging permissions assigned to the grantee for the bucket.
sourceimpl TargetGrant
impl TargetGrant
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TargetGrant
Trait Implementations
sourceimpl Clone for TargetGrant
impl Clone for TargetGrant
sourcefn clone(&self) -> TargetGrant
fn clone(&self) -> TargetGrant
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TargetGrant
impl Debug for TargetGrant
sourceimpl PartialEq<TargetGrant> for TargetGrant
impl PartialEq<TargetGrant> for TargetGrant
sourcefn eq(&self, other: &TargetGrant) -> bool
fn eq(&self, other: &TargetGrant) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TargetGrant) -> bool
fn ne(&self, other: &TargetGrant) -> bool
This method tests for !=
.
impl StructuralPartialEq for TargetGrant
Auto Trait Implementations
impl RefUnwindSafe for TargetGrant
impl Send for TargetGrant
impl Sync for TargetGrant
impl Unpin for TargetGrant
impl UnwindSafe for TargetGrant
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more