com.faendir.awscdkkt.generated.services.eks.CfnFargateProfileDsl.kt Maven / Gradle / Ivy
package com.faendir.awscdkkt.generated.services.eks
import com.faendir.awscdkkt.AwsCdkDsl
import javax.`annotation`.Generated
import kotlin.String
import kotlin.Unit
import software.amazon.awscdk.services.eks.CfnFargateProfile
import software.amazon.awscdk.services.eks.CfnFargateProfileProps
import software.constructs.Construct
@Generated
public fun Construct.cfnFargateProfile(
id: String,
props: CfnFargateProfileProps,
initializer: @AwsCdkDsl CfnFargateProfile.() -> Unit = {},
): CfnFargateProfile = CfnFargateProfile(this, id, props).apply(initializer)
@Generated
public fun Construct.buildCfnFargateProfile(id: String, initializer: @AwsCdkDsl
CfnFargateProfile.Builder.() -> Unit = {}): CfnFargateProfile =
CfnFargateProfile.Builder.create(this, id).apply(initializer).build()