interface CloudwatchDeliveryDestinationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.CloudwatchDeliveryDestinationProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs#CloudwatchDeliveryDestinationProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.CloudwatchDeliveryDestinationProps |
Python | aws_cdk.mixins_preview.aws_logs.CloudwatchDeliveryDestinationProps |
TypeScript (source) | @aws-cdk/mixins-preview ยป aws_logs ยป CloudwatchDeliveryDestinationProps |
Properties for Cloudwatch delivery destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from '@aws-cdk/mixins-preview';
import { aws_logs as interfaces_logs } from 'aws-cdk-lib/interfaces';
declare const logGroupRef: interfaces_logs.ILogGroupRef;
const cloudwatchDeliveryDestinationProps: logs.CloudwatchDeliveryDestinationProps = {
logGroup: logGroupRef,
// the properties below are optional
outputFormat: 'outputFormat',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | ILog | Log group to deliver logs to. |
| output | string | Format of the logs that are sent to this delivery destination. |
logGroup
Type:
ILog
Log group to deliver logs to.
outputFormat?
Type:
string
(optional)
Format of the logs that are sent to this delivery destination.

.NET
Go
Java
Python
TypeScript (