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

io.burkard.cdk.services.fsx.FileSystemAttributes.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.fsx

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

  def apply(
    dnsName: String,
    securityGroup: software.amazon.awscdk.services.ec2.ISecurityGroup,
    fileSystemId: String
  ): software.amazon.awscdk.services.fsx.FileSystemAttributes =
    (new software.amazon.awscdk.services.fsx.FileSystemAttributes.Builder)
      .dnsName(dnsName)
      .securityGroup(securityGroup)
      .fileSystemId(fileSystemId)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy