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

io.cloudshiftdev.awscdk.services.ecs.FirelensOptions.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.services.ecs

import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Boolean
import kotlin.String
import kotlin.Unit

/**
 * The options for firelens log router
 * https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html#firelens-taskdef-customconfig.
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import io.cloudshiftdev.awscdk.services.ecs.*;
 * FirelensOptions firelensOptions = FirelensOptions.builder()
 * .configFileType(FirelensConfigFileType.S3)
 * .configFileValue("configFileValue")
 * .enableECSLogMetadata(false)
 * .build();
 * ```
 */
public interface FirelensOptions {
  /**
   * Custom configuration file, s3 or file.
   *
   * Both configFileType and configFileValue must be used together
   * to define a custom configuration source.
   *
   * Default: - determined by checking configFileValue with S3 ARN.
   */
  public fun configFileType(): FirelensConfigFileType? =
      unwrap(this).getConfigFileType()?.let(FirelensConfigFileType::wrap)

  /**
   * Custom configuration file, S3 ARN or a file path Both configFileType and configFileValue must
   * be used together to define a custom configuration source.
   *
   * Default: - no config file value
   */
  public fun configFileValue(): String? = unwrap(this).getConfigFileValue()

  /**
   * By default, Amazon ECS adds additional fields in your log entries that help identify the source
   * of the logs.
   *
   * You can disable this action by setting enable-ecs-log-metadata to false.
   *
   * Default: - true
   */
  public fun enableECSLogMetadata(): Boolean? = unwrap(this).getEnableECSLogMetadata()

  /**
   * A builder for [FirelensOptions]
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * @param configFileType Custom configuration file, s3 or file.
     * Both configFileType and configFileValue must be used together
     * to define a custom configuration source.
     */
    public fun configFileType(configFileType: FirelensConfigFileType)

    /**
     * @param configFileValue Custom configuration file, S3 ARN or a file path Both configFileType
     * and configFileValue must be used together to define a custom configuration source.
     */
    public fun configFileValue(configFileValue: String)

    /**
     * @param enableEcsLogMetadata By default, Amazon ECS adds additional fields in your log entries
     * that help identify the source of the logs.
     * You can disable this action by setting enable-ecs-log-metadata to false.
     */
    public fun enableEcsLogMetadata(enableEcsLogMetadata: Boolean)
  }

  private class BuilderImpl : Builder {
    private val cdkBuilder: software.amazon.awscdk.services.ecs.FirelensOptions.Builder =
        software.amazon.awscdk.services.ecs.FirelensOptions.builder()

    /**
     * @param configFileType Custom configuration file, s3 or file.
     * Both configFileType and configFileValue must be used together
     * to define a custom configuration source.
     */
    override fun configFileType(configFileType: FirelensConfigFileType) {
      cdkBuilder.configFileType(configFileType.let(FirelensConfigFileType.Companion::unwrap))
    }

    /**
     * @param configFileValue Custom configuration file, S3 ARN or a file path Both configFileType
     * and configFileValue must be used together to define a custom configuration source.
     */
    override fun configFileValue(configFileValue: String) {
      cdkBuilder.configFileValue(configFileValue)
    }

    /**
     * @param enableEcsLogMetadata By default, Amazon ECS adds additional fields in your log entries
     * that help identify the source of the logs.
     * You can disable this action by setting enable-ecs-log-metadata to false.
     */
    override fun enableEcsLogMetadata(enableEcsLogMetadata: Boolean) {
      cdkBuilder.enableEcsLogMetadata(enableEcsLogMetadata)
    }

    public fun build(): software.amazon.awscdk.services.ecs.FirelensOptions = cdkBuilder.build()
  }

  private class Wrapper(
    cdkObject: software.amazon.awscdk.services.ecs.FirelensOptions,
  ) : CdkObject(cdkObject),
      FirelensOptions {
    /**
     * Custom configuration file, s3 or file.
     *
     * Both configFileType and configFileValue must be used together
     * to define a custom configuration source.
     *
     * Default: - determined by checking configFileValue with S3 ARN.
     */
    override fun configFileType(): FirelensConfigFileType? =
        unwrap(this).getConfigFileType()?.let(FirelensConfigFileType::wrap)

    /**
     * Custom configuration file, S3 ARN or a file path Both configFileType and configFileValue must
     * be used together to define a custom configuration source.
     *
     * Default: - no config file value
     */
    override fun configFileValue(): String? = unwrap(this).getConfigFileValue()

    /**
     * By default, Amazon ECS adds additional fields in your log entries that help identify the
     * source of the logs.
     *
     * You can disable this action by setting enable-ecs-log-metadata to false.
     *
     * Default: - true
     */
    override fun enableECSLogMetadata(): Boolean? = unwrap(this).getEnableECSLogMetadata()
  }

  public companion object {
    public operator fun invoke(block: Builder.() -> Unit = {}): FirelensOptions {
      val builderImpl = BuilderImpl()
      return Wrapper(builderImpl.apply(block).build())
    }

    internal fun wrap(cdkObject: software.amazon.awscdk.services.ecs.FirelensOptions):
        FirelensOptions = CdkObjectWrappers.wrap(cdkObject) as? FirelensOptions ?:
        Wrapper(cdkObject)

    internal fun unwrap(wrapped: FirelensOptions):
        software.amazon.awscdk.services.ecs.FirelensOptions = (wrapped as CdkObject).cdkObject as
        software.amazon.awscdk.services.ecs.FirelensOptions
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy