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

ExecuteCommandLogConfiguration

import type { ExecuteCommandLogConfiguration } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";

The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket.

interface ExecuteCommandLogConfiguration {
cloudWatchEncryptionEnabled?: boolean | null;
cloudWatchLogGroupName?: string | null;
s3BucketName?: string | null;
s3EncryptionEnabled?: boolean | null;
s3KeyPrefix?: string | null;
}

§Properties

§
cloudWatchEncryptionEnabled?: boolean | null
[src]

Determines whether to use encryption on the CloudWatch logs. If not specified, encryption will be off.

§
cloudWatchLogGroupName?: string | null
[src]

The name of the CloudWatch log group to send logs to.

Note: The CloudWatch log group must already be created.

§
s3BucketName?: string | null
[src]

The name of the S3 bucket to send logs to.

Note: The S3 bucket must already be created.

§
s3EncryptionEnabled?: boolean | null
[src]

Determines whether to use encryption on the S3 logs. If not specified, encryption is not used.

§
s3KeyPrefix?: string | null
[src]

An optional folder in the S3 bucket to place logs in.