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

BucketAccessLogConfig

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

Describes the access log configuration for a bucket in the Amazon Lightsail object storage service.

For more information about bucket access logs, see Logging bucket requests using access logging in Amazon Lightsail in the Amazon Lightsail Developer Guide.

interface BucketAccessLogConfig {
destination?: string | null;
enabled: boolean;
prefix?: string | null;
}

§Properties

§
destination?: string | null
[src]

The name of the bucket where the access is saved. The destination can be a Lightsail bucket in the same account, and in the same AWS Region as the source bucket.

Note: This parameter is required when enabling the access log for a bucket, and should be omitted when disabling the access log.

§
enabled: boolean
[src]

A Boolean value that indicates whether bucket access logging is enabled for the bucket.

§
prefix?: string | null
[src]

The optional object prefix for the bucket access log.

The prefix is an optional addition to the object key that organizes your access log files in the destination bucket. For example, if you specify a logs/ prefix, then each log object will begin with the logs/ prefix in its key (for example, logs/2021-11-01-21-32-16-E568B2907131C0C0).

Note: This parameter can be optionally specified when enabling the access log for a bucket, and should be omitted when disabling the access log.