Interface CfnPipe.PipeLogConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.PipeLogConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.PipeLogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Represents the configuration settings for the logs to which this pipe should report events.

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.*;
 PipeLogConfigurationProperty pipeLogConfigurationProperty = PipeLogConfigurationProperty.builder()
         .cloudwatchLogsLogDestination(CloudwatchLogsLogDestinationProperty.builder()
                 .logGroupArn("logGroupArn")
                 .build())
         .firehoseLogDestination(FirehoseLogDestinationProperty.builder()
                 .deliveryStreamArn("deliveryStreamArn")
                 .build())
         .includeExecutionData(List.of("includeExecutionData"))
         .level("level")
         .s3LogDestination(S3LogDestinationProperty.builder()
                 .bucketName("bucketName")
                 .bucketOwner("bucketOwner")
                 .outputFormat("outputFormat")
                 .prefix("prefix")
                 .build())
         .build();
 

See Also: