Interface CfnLogDeliveryConfiguration.LogConfigurationProperty

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

@Stability(Stable) public static interface CfnLogDeliveryConfiguration.LogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration of user event logs to an external AWS service like Amazon Data Firehose, Amazon S3, or Amazon CloudWatch Logs.

This data type is a request parameter of SetLogDeliveryConfiguration and a response parameter of GetLogDeliveryConfiguration .

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.cognito.*;
 LogConfigurationProperty logConfigurationProperty = LogConfigurationProperty.builder()
         .cloudWatchLogsConfiguration(CloudWatchLogsConfigurationProperty.builder()
                 .logGroupArn("logGroupArn")
                 .build())
         .eventSource("eventSource")
         .firehoseConfiguration(FirehoseConfigurationProperty.builder()
                 .streamArn("streamArn")
                 .build())
         .logLevel("logLevel")
         .s3Configuration(S3ConfigurationProperty.builder()
                 .bucketArn("bucketArn")
                 .build())
         .build();
 

See Also: