io.burkard.cdk.services.greengrassv2.cfnComponentVersion.LambdaEventSourceProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.greengrassv2.cfnComponentVersion
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object LambdaEventSourceProperty {
def apply(
`type`: Option[String] = None,
topic: Option[String] = None
): software.amazon.awscdk.services.greengrassv2.CfnComponentVersion.LambdaEventSourceProperty =
(new software.amazon.awscdk.services.greengrassv2.CfnComponentVersion.LambdaEventSourceProperty.Builder)
.`type`(`type`.orNull)
.topic(topic.orNull)
.build()
}