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

EnableLoggingMessage

import type { EnableLoggingMessage } from "https://aws-api.deno.dev/v0.3/services/redshift.ts?docs=full";
interface EnableLoggingMessage {
BucketName: string;
ClusterIdentifier: string;
S3KeyPrefix?: string | null;
}

§Properties

§
BucketName: string
[src]

The name of an existing S3 bucket where the log files are to be stored.

Constraints:

  • Must be in the same region as the cluster
  • The cluster must have read bucket and put object permissions
§
ClusterIdentifier: string
[src]

The identifier of the cluster on which logging is to be started.

Example: examplecluster

§
S3KeyPrefix?: string | null
[src]

The prefix applied to the log file names.

Constraints:

  • Cannot exceed 512 characters
  • Cannot contain spaces( ), double quotes ("), single quotes ('), a backslash (), or control characters. The hexadecimal codes for invalid characters are:
    • x00 to x20
    • x22
    • x27
    • x5c
    • x7f or larger