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

S3LogsConfig

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

Information about S3 logs for a build project.

interface S3LogsConfig {
bucketOwnerAccess?: BucketOwnerAccess | null;
encryptionDisabled?: boolean | null;
location?: string | null;
}

§Properties

§
bucketOwnerAccess?: BucketOwnerAccess | null
[src]
§
encryptionDisabled?: boolean | null
[src]

Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted.

§
location?: string | null
[src]

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.

§

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.