
io.burkard.cdk.services.sam.cfnFunction.EventInvokeConfigProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.sam.cfnFunction
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object EventInvokeConfigProperty {
def apply(
maximumEventAgeInSeconds: Option[Number] = None,
destinationConfig: Option[software.amazon.awscdk.services.sam.CfnFunction.EventInvokeDestinationConfigProperty] = None,
maximumRetryAttempts: Option[Number] = None
): software.amazon.awscdk.services.sam.CfnFunction.EventInvokeConfigProperty =
(new software.amazon.awscdk.services.sam.CfnFunction.EventInvokeConfigProperty.Builder)
.maximumEventAgeInSeconds(maximumEventAgeInSeconds.orNull)
.destinationConfig(destinationConfig.orNull)
.maximumRetryAttempts(maximumRetryAttempts.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy