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

com.pulumi.awsnative.route53resolver.kotlin.ResolverQueryLoggingConfigAssociationArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.route53resolver.kotlin

import com.pulumi.awsnative.route53resolver.ResolverQueryLoggingConfigAssociationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Resource schema for AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation.
 * @property resolverQueryLogConfigId ResolverQueryLogConfigId
 * @property resourceId ResourceId
 */
public data class ResolverQueryLoggingConfigAssociationArgs(
    public val resolverQueryLogConfigId: Output? = null,
    public val resourceId: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.route53resolver.ResolverQueryLoggingConfigAssociationArgs =
        com.pulumi.awsnative.route53resolver.ResolverQueryLoggingConfigAssociationArgs.builder()
            .resolverQueryLogConfigId(resolverQueryLogConfigId?.applyValue({ args0 -> args0 }))
            .resourceId(resourceId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ResolverQueryLoggingConfigAssociationArgs].
 */
@PulumiTagMarker
public class ResolverQueryLoggingConfigAssociationArgsBuilder internal constructor() {
    private var resolverQueryLogConfigId: Output? = null

    private var resourceId: Output? = null

    /**
     * @param value ResolverQueryLogConfigId
     */
    @JvmName("lpebhilvtckgxres")
    public suspend fun resolverQueryLogConfigId(`value`: Output) {
        this.resolverQueryLogConfigId = value
    }

    /**
     * @param value ResourceId
     */
    @JvmName("dcvybmuwekmbsjqx")
    public suspend fun resourceId(`value`: Output) {
        this.resourceId = value
    }

    /**
     * @param value ResolverQueryLogConfigId
     */
    @JvmName("hmgccjquatqphbpj")
    public suspend fun resolverQueryLogConfigId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resolverQueryLogConfigId = mapped
    }

    /**
     * @param value ResourceId
     */
    @JvmName("xliwlpkkwpdyufmn")
    public suspend fun resourceId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceId = mapped
    }

    internal fun build(): ResolverQueryLoggingConfigAssociationArgs =
        ResolverQueryLoggingConfigAssociationArgs(
            resolverQueryLogConfigId = resolverQueryLogConfigId,
            resourceId = resourceId,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy