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

io.burkard.cdk.services.route53.cfnHostedZone.VPCProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.route53.cfnHostedZone

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

  def apply(
    vpcId: String,
    vpcRegion: String
  ): software.amazon.awscdk.services.route53.CfnHostedZone.VPCProperty =
    (new software.amazon.awscdk.services.route53.CfnHostedZone.VPCProperty.Builder)
      .vpcId(vpcId)
      .vpcRegion(vpcRegion)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy