Interface LogDestinationConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LogDestinationConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-15T10:25:09.560Z") @Stability(Experimental) public interface LogDestinationConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Log destination configuration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pipes.alpha.*;
 LogDestinationConfig logDestinationConfig = LogDestinationConfig.builder()
         .parameters(LogDestinationParameters.builder()
                 .cloudwatchLogsLogDestination(CloudwatchLogsLogDestinationProperty.builder()
                         .logGroupArn("logGroupArn")
                         .build())
                 .firehoseLogDestination(FirehoseLogDestinationProperty.builder()
                         .deliveryStreamArn("deliveryStreamArn")
                         .build())
                 .s3LogDestination(S3LogDestinationProperty.builder()
                         .bucketName("bucketName")
                         .bucketOwner("bucketOwner")
                         .outputFormat("outputFormat")
                         .prefix("prefix")
                         .build())
                 .build())
         .build();