Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LogsConfig

import type { LogsConfig } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

Information about logs for a build project. These can be logs in CloudWatch Logs, built in a specified S3 bucket, or both.

interface LogsConfig {
cloudWatchLogs?: CloudWatchLogsConfig | null;
s3Logs?: S3LogsConfig | null;
}

§Properties

§
cloudWatchLogs?: CloudWatchLogsConfig | null
[src]

Information about CloudWatch Logs for a build project. CloudWatch Logs are enabled by default.

§
s3Logs?: S3LogsConfig | null
[src]

Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.