[][src]Struct rusoto_codebuild::S3LogsConfig

pub struct S3LogsConfig {
    pub encryption_disabled: Option<bool>,
    pub location: Option<String>,
    pub status: String,
}

Information about S3 logs for a build project.

Fields

encryption_disabled: Option<bool>

Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

location: Option<String>

The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket, and your path prefix is build-log, then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log.

status: String

The current status of the S3 build logs. Valid values are:

Trait Implementations

impl PartialEq<S3LogsConfig> for S3LogsConfig[src]

impl Default for S3LogsConfig[src]

impl Clone for S3LogsConfig[src]

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

Performs copy-assignment from source. Read more

impl Debug for S3LogsConfig[src]

impl Serialize for S3LogsConfig[src]

impl<'de> Deserialize<'de> for S3LogsConfig[src]

Auto Trait Implementations

impl Send for S3LogsConfig

impl Sync for S3LogsConfig

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self