io.burkard.cdk.services.ec2.CfnVPCEndpointConnectionNotificationProps.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.ec2
import scala.collection.JavaConverters._
@scala.annotation.nowarn("cat=deprecation")
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CfnVPCEndpointConnectionNotificationProps {
def apply(
connectionEvents: List[String],
connectionNotificationArn: String,
vpcEndpointId: Option[String] = None,
serviceId: Option[String] = None
): software.amazon.awscdk.services.ec2.CfnVPCEndpointConnectionNotificationProps =
(new software.amazon.awscdk.services.ec2.CfnVPCEndpointConnectionNotificationProps.Builder)
.connectionEvents(connectionEvents.asJava)
.connectionNotificationArn(connectionNotificationArn)
.vpcEndpointId(vpcEndpointId.orNull)
.serviceId(serviceId.orNull)
.build()
}