[][src]Struct rusoto_codebuild::LogsLocation

pub struct LogsLocation {
    pub cloud_watch_logs: Option<CloudWatchLogsConfig>,
    pub cloud_watch_logs_arn: Option<String>,
    pub deep_link: Option<String>,
    pub group_name: Option<String>,
    pub s_3_deep_link: Option<String>,
    pub s_3_logs: Option<S3LogsConfig>,
    pub s_3_logs_arn: Option<String>,
    pub stream_name: Option<String>,
}

Information about build logs in Amazon CloudWatch Logs.

Fields

cloud_watch_logs: Option<CloudWatchLogsConfig>

Information about Amazon CloudWatch Logs for a build project.

cloud_watch_logs_arn: Option<String>

The ARN of Amazon CloudWatch Logs for a build project. Its format is arn:${Partition}:logs:${Region}:${Account}:log-group:${LogGroupName}:log-stream:${LogStreamName}. For more information, see Resources Defined by Amazon CloudWatch Logs.

deep_link: Option<String>

The URL to an individual build log in Amazon CloudWatch Logs.

group_name: Option<String>

The name of the Amazon CloudWatch Logs group for the build logs.

s_3_deep_link: Option<String>

The URL to a build log in an S3 bucket.

s_3_logs: Option<S3LogsConfig>

Information about S3 logs for a build project.

s_3_logs_arn: Option<String>

The ARN of S3 logs for a build project. Its format is arn:${Partition}:s3:::${BucketName}/${ObjectName}. For more information, see Resources Defined by Amazon S3.

stream_name: Option<String>

The name of the Amazon CloudWatch Logs stream for the build logs.

Trait Implementations

impl Clone for LogsLocation[src]

impl Debug for LogsLocation[src]

impl Default for LogsLocation[src]

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

impl PartialEq<LogsLocation> for LogsLocation[src]

impl StructuralPartialEq for LogsLocation[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.