[][src]Struct rusoto_elb::AccessLog

pub struct AccessLog {
    pub emit_interval: Option<i64>,
    pub enabled: bool,
    pub s3_bucket_name: Option<String>,
    pub s3_bucket_prefix: Option<String>,
}

Information about the AccessLog attribute.

Fields

emit_interval: Option<i64>

The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.

Default: 60 minutes

enabled: bool

Specifies whether access logs are enabled for the load balancer.

s3_bucket_name: Option<String>

The name of the Amazon S3 bucket where the access logs are stored.

s3_bucket_prefix: Option<String>

The logical hierarchy you created for your Amazon S3 bucket, for example my-bucket-prefix/prod. If the prefix is not provided, the log is placed at the root level of the bucket.

Trait Implementations

impl PartialEq<AccessLog> for AccessLog[src]

impl Default for AccessLog[src]

impl Clone for AccessLog[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AccessLog[src]

Auto Trait Implementations

impl Send for AccessLog

impl Sync for AccessLog

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self