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

com.pulumi.awsnative.sqs.kotlin.inputs.GetQueuePlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sqs.kotlin.inputs

import com.pulumi.awsnative.sqs.inputs.GetQueuePlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property queueUrl Returns the URLs of the queues from the policy.
 */
public data class GetQueuePlainArgs(
    public val queueUrl: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.sqs.inputs.GetQueuePlainArgs =
        com.pulumi.awsnative.sqs.inputs.GetQueuePlainArgs.builder()
            .queueUrl(queueUrl.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetQueuePlainArgs].
 */
@PulumiTagMarker
public class GetQueuePlainArgsBuilder internal constructor() {
    private var queueUrl: String? = null

    /**
     * @param value Returns the URLs of the queues from the policy.
     */
    @JvmName("flpclibypjbaopwv")
    public suspend fun queueUrl(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.queueUrl = mapped
    }

    internal fun build(): GetQueuePlainArgs = GetQueuePlainArgs(
        queueUrl = queueUrl ?: throw PulumiNullFieldException("queueUrl"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy