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

io.cloudshiftdev.awscdk.services.ses.actions.Stop.kt Maven / Gradle / Ivy

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

package io.cloudshiftdev.awscdk.services.ses.actions

import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.services.ses.IReceiptRule
import io.cloudshiftdev.awscdk.services.ses.IReceiptRuleAction
import io.cloudshiftdev.awscdk.services.ses.ReceiptRuleActionConfig
import io.cloudshiftdev.awscdk.services.sns.ITopic
import kotlin.Unit

/**
 * Terminates the evaluation of the receipt rule set and optionally publishes a notification to
 * Amazon SNS.
 *
 * 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.ses.actions.*;
 * import io.cloudshiftdev.awscdk.services.sns.*;
 * Topic topic;
 * Stop stop = Stop.Builder.create()
 * .topic(topic)
 * .build();
 * ```
 */
public open class Stop(
  cdkObject: software.amazon.awscdk.services.ses.actions.Stop,
) : CdkObject(cdkObject),
    IReceiptRuleAction {
  public constructor() : this(software.amazon.awscdk.services.ses.actions.Stop()
  )

  public constructor(props: StopProps) :
      this(software.amazon.awscdk.services.ses.actions.Stop(props.let(StopProps.Companion::unwrap))
  )

  public constructor(props: StopProps.Builder.() -> Unit) : this(StopProps(props)
  )

  /**
   * Returns the receipt rule action specification.
   *
   * @param _rule 
   */
  public override fun bind(rule: IReceiptRule): ReceiptRuleActionConfig =
      unwrap(this).bind(rule.let(IReceiptRule.Companion::unwrap)).let(ReceiptRuleActionConfig::wrap)

  /**
   * A fluent builder for [io.cloudshiftdev.awscdk.services.ses.actions.Stop].
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * The SNS topic to notify when the stop action is taken.
     *
     * @param topic The SNS topic to notify when the stop action is taken. 
     */
    public fun topic(topic: ITopic)
  }

  private class BuilderImpl : Builder {
    private val cdkBuilder: software.amazon.awscdk.services.ses.actions.Stop.Builder =
        software.amazon.awscdk.services.ses.actions.Stop.Builder.create()

    /**
     * The SNS topic to notify when the stop action is taken.
     *
     * @param topic The SNS topic to notify when the stop action is taken. 
     */
    override fun topic(topic: ITopic) {
      cdkBuilder.topic(topic.let(ITopic.Companion::unwrap))
    }

    public fun build(): software.amazon.awscdk.services.ses.actions.Stop = cdkBuilder.build()
  }

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

    internal fun wrap(cdkObject: software.amazon.awscdk.services.ses.actions.Stop): Stop =
        Stop(cdkObject)

    internal fun unwrap(wrapped: Stop): software.amazon.awscdk.services.ses.actions.Stop =
        wrapped.cdkObject as software.amazon.awscdk.services.ses.actions.Stop
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy