interface CloudwatchLogsLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.CloudwatchLogsLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_CloudwatchLogsLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.CloudwatchLogsLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.CloudwatchLogsLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » CloudwatchLogsLogDestinationProperty |
Represents the Amazon CloudWatch Logs logging configuration settings for the pipe.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const cloudwatchLogsLogDestinationProperty: pipes_mixins.CfnPipePropsMixin.CloudwatchLogsLogDestinationProperty = {
logGroupArn: 'logGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The AWS Resource Name (ARN) for the CloudWatch log group to which EventBridge sends the log records. |
logGroupArn?
Type:
string
(optional)
The AWS Resource Name (ARN) for the CloudWatch log group to which EventBridge sends the log records.

.NET
Go
Java
Python
TypeScript