com.faendir.awscdkkt.generated.services.wafv2.CfnIPSetDsl.kt Maven / Gradle / Ivy
package com.faendir.awscdkkt.generated.services.wafv2
import com.faendir.awscdkkt.AwsCdkDsl
import javax.`annotation`.Generated
import kotlin.String
import kotlin.Unit
import software.amazon.awscdk.services.wafv2.CfnIPSet
import software.amazon.awscdk.services.wafv2.CfnIPSetProps
import software.constructs.Construct
@Generated
public fun Construct.cfnIPSet(
id: String,
props: CfnIPSetProps,
initializer: @AwsCdkDsl CfnIPSet.() -> Unit = {},
): CfnIPSet = CfnIPSet(this, id, props).apply(initializer)
@Generated
public fun Construct.buildCfnIPSet(id: String, initializer: @AwsCdkDsl CfnIPSet.Builder.() -> Unit =
{}): CfnIPSet = CfnIPSet.Builder.create(this, id).apply(initializer).build()