All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloudshift.awscdk.dsl.services.elasticache.CfnReplicationGroupLogDeliveryConfigurationRequestPropertyDsl.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package cloudshift.awscdk.dsl.services.elasticache

import cloudshift.awscdk.common.CdkDslMarker
import kotlin.String
import software.amazon.awscdk.IResolvable
import software.amazon.awscdk.services.elasticache.CfnReplicationGroup

/**
 * Specifies the destination, format and type of the logs.
 *
 * 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.elasticache.*;
 * LogDeliveryConfigurationRequestProperty logDeliveryConfigurationRequestProperty =
 * LogDeliveryConfigurationRequestProperty.builder()
 * .destinationDetails(DestinationDetailsProperty.builder()
 * .cloudWatchLogsDetails(CloudWatchLogsDestinationDetailsProperty.builder()
 * .logGroup("logGroup")
 * .build())
 * .kinesisFirehoseDetails(KinesisFirehoseDestinationDetailsProperty.builder()
 * .deliveryStream("deliveryStream")
 * .build())
 * .build())
 * .destinationType("destinationType")
 * .logFormat("logFormat")
 * .logType("logType")
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-logdeliveryconfigurationrequest.html)
 */
@CdkDslMarker
public class CfnReplicationGroupLogDeliveryConfigurationRequestPropertyDsl {
  private val cdkBuilder: CfnReplicationGroup.LogDeliveryConfigurationRequestProperty.Builder =
      CfnReplicationGroup.LogDeliveryConfigurationRequestProperty.builder()

  /**
   * @param destinationDetails Configuration details of either a CloudWatch Logs destination or
   * Kinesis Data Firehose destination. 
   */
  public fun destinationDetails(destinationDetails: IResolvable) {
    cdkBuilder.destinationDetails(destinationDetails)
  }

  /**
   * @param destinationDetails Configuration details of either a CloudWatch Logs destination or
   * Kinesis Data Firehose destination. 
   */
  public
      fun destinationDetails(destinationDetails: CfnReplicationGroup.DestinationDetailsProperty) {
    cdkBuilder.destinationDetails(destinationDetails)
  }

  /**
   * @param destinationType Specify either CloudWatch Logs or Kinesis Data Firehose as the
   * destination type. 
   * Valid values are either `cloudwatch-logs` or `kinesis-firehose` .
   */
  public fun destinationType(destinationType: String) {
    cdkBuilder.destinationType(destinationType)
  }

  /**
   * @param logFormat Valid values are either `json` or `text` . 
   */
  public fun logFormat(logFormat: String) {
    cdkBuilder.logFormat(logFormat)
  }

  /**
   * @param logType Valid value is either `slow-log` , which refers to
   * [slow-log](https://docs.aws.amazon.com/https://redis.io/commands/slowlog) or `engine-log` . 
   */
  public fun logType(logType: String) {
    cdkBuilder.logType(logType)
  }

  public fun build(): CfnReplicationGroup.LogDeliveryConfigurationRequestProperty =
      cdkBuilder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy