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

io.burkard.cdk.services.greengrassv2.cfnComponentVersion.LambdaVolumeMountProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.greengrassv2.cfnComponentVersion

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

  def apply(
    permission: Option[String] = None,
    sourcePath: Option[String] = None,
    addGroupOwner: Option[Boolean] = None,
    destinationPath: Option[String] = None
  ): software.amazon.awscdk.services.greengrassv2.CfnComponentVersion.LambdaVolumeMountProperty =
    (new software.amazon.awscdk.services.greengrassv2.CfnComponentVersion.LambdaVolumeMountProperty.Builder)
      .permission(permission.orNull)
      .sourcePath(sourcePath.orNull)
      .addGroupOwner(addGroupOwner.map(Boolean.box).orNull)
      .destinationPath(destinationPath.orNull)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy