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

io.burkard.cdk.services.kinesis.StreamAttributes.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.kinesis

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object StreamAttributes {

  def apply(
    streamArn: String,
    encryptionKey: Option[software.amazon.awscdk.services.kms.IKey] = None
  ): software.amazon.awscdk.services.kinesis.StreamAttributes =
    (new software.amazon.awscdk.services.kinesis.StreamAttributes.Builder)
      .streamArn(streamArn)
      .encryptionKey(encryptionKey.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy