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

io.burkard.cdk.services.ec2.cfnInstance.PrivateIpAddressSpecificationProperty.scala Maven / Gradle / Ivy

package io.burkard.cdk.services.ec2.cfnInstance

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

  def apply(
    primary: Boolean,
    privateIpAddress: String
  ): software.amazon.awscdk.services.ec2.CfnInstance.PrivateIpAddressSpecificationProperty =
    (new software.amazon.awscdk.services.ec2.CfnInstance.PrivateIpAddressSpecificationProperty.Builder)
      .primary(primary)
      .privateIpAddress(privateIpAddress)
      .build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy