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>,
}
Expand description
Information about build logs in CloudWatch Logs.
Fields§
§cloud_watch_logs: Option<CloudWatchLogsConfig>
Information about CloudWatch Logs for a build project.
cloud_watch_logs_arn: Option<String>
The ARN of 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 CloudWatch Logs.
deep_link: Option<String>
The URL to an individual build log in CloudWatch Logs.
group_name: Option<String>
The name of the 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 CloudWatch Logs stream for the build logs.
Trait Implementations§
Source§impl Clone for LogsLocation
impl Clone for LogsLocation
Source§fn clone(&self) -> LogsLocation
fn clone(&self) -> LogsLocation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more