interface LogDestinationParameters
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Pipes.Alpha.LogDestinationParameters | 
  Go | github.com/aws/aws-cdk-go/awscdkpipesalpha/v2#LogDestinationParameters | 
  Java | software.amazon.awscdk.services.pipes.alpha.LogDestinationParameters | 
  Python | aws_cdk.aws_pipes_alpha.LogDestinationParameters | 
  TypeScript (source) | @aws-cdk/aws-pipes-alpha ยป LogDestinationParameters | 
Log destination configuration parameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pipes_alpha from '@aws-cdk/aws-pipes-alpha';
const logDestinationParameters: pipes_alpha.LogDestinationParameters = {
  cloudwatchLogsLogDestination: {
    logGroupArn: 'logGroupArn',
  },
  firehoseLogDestination: {
    deliveryStreamArn: 'deliveryStreamArn',
  },
  s3LogDestination: {
    bucketName: 'bucketName',
    bucketOwner: 'bucketOwner',
    outputFormat: 'outputFormat',
    prefix: 'prefix',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| cloudwatch | Cloudwatch | The logging configuration settings for the pipe. | 
| firehose | Firehose | The Amazon Data Firehose logging configuration settings for the pipe. | 
| s3 | S3 | The Amazon S3 logging configuration settings for the pipe. | 
cloudwatchLogsLogDestination?
Type:
Cloudwatch
(optional, default: none)
The logging configuration settings for the pipe.
firehoseLogDestination?
Type:
Firehose
(optional, default: none)
The Amazon Data Firehose logging configuration settings for the pipe.
s3LogDestination?
Type:
S3
(optional, default: none)
The Amazon S3 logging configuration settings for the pipe.

 .NET
 Go
 Java
 Python
 TypeScript (