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

LogsLocation

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

Information about build logs in CloudWatch Logs.

interface LogsLocation {
cloudWatchLogs?: CloudWatchLogsConfig | null;
cloudWatchLogsArn?: string | null;
deepLink?: string | null;
groupName?: string | null;
s3DeepLink?: string | null;
s3Logs?: S3LogsConfig | null;
s3LogsArn?: string | null;
streamName?: string | null;
}

§Properties

§
cloudWatchLogs?: CloudWatchLogsConfig | null
[src]

Information about CloudWatch Logs for a build project.

§
cloudWatchLogsArn?: string | null
[src]

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.

§
groupName?: string | null
[src]

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

§
s3Logs?: S3LogsConfig | null
[src]

Information about S3 logs for a build project.

§
s3LogsArn?: string | null
[src]

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.

§
streamName?: string | null
[src]

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