Struct rusoto_s3::LoggingEnabled [] [src]

pub struct LoggingEnabled {
    pub target_bucket: Option<String>,
    pub target_grants: Option<Vec<TargetGrant>>,
    pub target_prefix: Option<String>,
}

Fields

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.

This element lets you specify a prefix for the keys that the log files will be stored under.

Trait Implementations

impl Default for LoggingEnabled
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for LoggingEnabled
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LoggingEnabled
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations