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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forLogDestinationConfig
static final class
An implementation forLogDestinationConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic LogDestinationConfig.Builder
builder()
(experimental) Get the log destination configuration parameters.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
(experimental) Get the log destination configuration parameters. -
builder
- Returns:
- a
LogDestinationConfig.Builder
ofLogDestinationConfig
-