[][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:

  • ENABLED: S3 build logs are enabled for this build project.

  • DISABLED: S3 build logs are not enabled for this build project.

Trait Implementations

impl Clone for S3LogsConfig[src]

impl Debug for S3LogsConfig[src]

impl Default for S3LogsConfig[src]

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

impl PartialEq<S3LogsConfig> for S3LogsConfig[src]

impl Serialize for S3LogsConfig[src]

impl StructuralPartialEq for S3LogsConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.