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

io.burkard.cdk.services.apigateway.JsonWithStandardFieldProps.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.apigateway

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

  def apply(
    resourcePath: Boolean,
    ip: Boolean,
    requestTime: Boolean,
    httpMethod: Boolean,
    responseLength: Boolean,
    status: Boolean,
    user: Boolean,
    protocol: Boolean,
    caller: Boolean
  ): software.amazon.awscdk.services.apigateway.JsonWithStandardFieldProps =
    (new software.amazon.awscdk.services.apigateway.JsonWithStandardFieldProps.Builder)
      .resourcePath(resourcePath)
      .ip(ip)
      .requestTime(requestTime)
      .httpMethod(httpMethod)
      .responseLength(responseLength)
      .status(status)
      .user(user)
      .protocol(protocol)
      .caller(caller)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy