Struct aws_sdk_s3::model::LoggingEnabled
source · [−]#[non_exhaustive]pub struct LoggingEnabled {
pub target_bucket: Option<String>,
pub target_grants: Option<Vec<TargetGrant>>,
pub target_prefix: Option<String>,
}
Expand description
Describes where logs are stored and the prefix that Amazon S3 assigns to all log object keys for a bucket. For more information, see PUT Bucket logging in the Amazon S3 API Reference.
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.target_bucket: Option<String>
Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case, you should choose a different TargetPrefix
for each source bucket so that the delivered log files can be distinguished by key.
target_grants: Option<Vec<TargetGrant>>
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 for server access log delivery in the Amazon S3 User Guide.
target_prefix: Option<String>
A prefix for all log object keys. If you store log files from multiple Amazon S3 buckets in a single bucket, you can use a prefix to distinguish which log files came from which bucket.
Implementations
sourceimpl LoggingEnabled
impl LoggingEnabled
sourcepub fn target_bucket(&self) -> Option<&str>
pub fn target_bucket(&self) -> Option<&str>
Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case, you should choose a different TargetPrefix
for each source bucket so that the delivered log files can be distinguished by key.
sourcepub fn target_grants(&self) -> Option<&[TargetGrant]>
pub fn target_grants(&self) -> Option<&[TargetGrant]>
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 for server access log delivery in the Amazon S3 User Guide.
sourcepub fn target_prefix(&self) -> Option<&str>
pub fn target_prefix(&self) -> Option<&str>
A prefix for all log object keys. If you store log files from multiple Amazon S3 buckets in a single bucket, you can use a prefix to distinguish which log files came from which bucket.
sourceimpl LoggingEnabled
impl LoggingEnabled
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LoggingEnabled
Trait Implementations
sourceimpl Clone for LoggingEnabled
impl Clone for LoggingEnabled
sourcefn clone(&self) -> LoggingEnabled
fn clone(&self) -> LoggingEnabled
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 LoggingEnabled
impl Debug for LoggingEnabled
sourceimpl PartialEq<LoggingEnabled> for LoggingEnabled
impl PartialEq<LoggingEnabled> for LoggingEnabled
sourcefn eq(&self, other: &LoggingEnabled) -> bool
fn eq(&self, other: &LoggingEnabled) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LoggingEnabled) -> bool
fn ne(&self, other: &LoggingEnabled) -> bool
This method tests for !=
.
impl StructuralPartialEq for LoggingEnabled
Auto Trait Implementations
impl RefUnwindSafe for LoggingEnabled
impl Send for LoggingEnabled
impl Sync for LoggingEnabled
impl Unpin for LoggingEnabled
impl UnwindSafe for LoggingEnabled
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> 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