Interface CfnLoggingConfiguration.DestinationConfigurationProperty

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

@Stability(Stable) public static interface CfnLoggingConfiguration.DestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The DestinationConfiguration property type describes a location where chat logs will be stored.

Each member represents the configuration of one log destination. For logging, you define only one type of destination.

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.ivschat.*;
 DestinationConfigurationProperty destinationConfigurationProperty = DestinationConfigurationProperty.builder()
         .cloudWatchLogs(CloudWatchLogsDestinationConfigurationProperty.builder()
                 .logGroupName("logGroupName")
                 .build())
         .firehose(FirehoseDestinationConfigurationProperty.builder()
                 .deliveryStreamName("deliveryStreamName")
                 .build())
         .s3(S3DestinationConfigurationProperty.builder()
                 .bucketName("bucketName")
                 .build())
         .build();