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

io.burkard.cdk.services.apigatewayv2.cfnApiGatewayManagedOverrides.IntegrationOverridesProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.apigatewayv2.cfnApiGatewayManagedOverrides

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

  def apply(
    description: Option[String] = None,
    integrationMethod: Option[String] = None,
    payloadFormatVersion: Option[String] = None,
    timeoutInMillis: Option[Number] = None
  ): software.amazon.awscdk.services.apigatewayv2.CfnApiGatewayManagedOverrides.IntegrationOverridesProperty =
    (new software.amazon.awscdk.services.apigatewayv2.CfnApiGatewayManagedOverrides.IntegrationOverridesProperty.Builder)
      .description(description.orNull)
      .integrationMethod(integrationMethod.orNull)
      .payloadFormatVersion(payloadFormatVersion.orNull)
      .timeoutInMillis(timeoutInMillis.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy