interface LogDestinationConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pipes.Alpha.LogDestinationConfig |
Go | github.com/aws/aws-cdk-go/awscdkpipesalpha/v2#LogDestinationConfig |
Java | software.amazon.awscdk.services.pipes.alpha.LogDestinationConfig |
Python | aws_cdk.aws_pipes_alpha.LogDestinationConfig |
TypeScript (source) | @aws-cdk/aws-pipes-alpha » LogDestinationConfig |
Obtainable from
Cloudwatch.bind(), Firehose.bind(), S3.bind()
Log destination configuration.
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 logDestinationConfig: pipes_alpha.LogDestinationConfig = {
parameters: {
cloudwatchLogsLogDestination: {
logGroupArn: 'logGroupArn',
},
firehoseLogDestination: {
deliveryStreamArn: 'deliveryStreamArn',
},
s3LogDestination: {
bucketName: 'bucketName',
bucketOwner: 'bucketOwner',
outputFormat: 'outputFormat',
prefix: 'prefix',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters | Log | Get the log destination configuration parameters. |
parameters
Type:
Log
Get the log destination configuration parameters.

.NET
Go
Java
Python
TypeScript (