com.pulumi.awsnative.iot.kotlin.PolicyArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iot.kotlin
import com.pulumi.awsnative.iot.PolicyArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::IoT::Policy
* @property policyDocument The JSON document that describes the policy.
* Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::IoT::Policy` for more information about the expected schema for this property.
* @property policyName The policy name.
* @property tags
*/
public data class PolicyArgs(
public val policyDocument: Output? = null,
public val policyName: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iot.PolicyArgs =
com.pulumi.awsnative.iot.PolicyArgs.builder()
.policyDocument(policyDocument?.applyValue({ args0 -> args0 }))
.policyName(policyName?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [PolicyArgs].
*/
@PulumiTagMarker
public class PolicyArgsBuilder internal constructor() {
private var policyDocument: Output? = null
private var policyName: Output? = null
private var tags: Output>? = null
/**
* @param value The JSON document that describes the policy.
* Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::IoT::Policy` for more information about the expected schema for this property.
*/
@JvmName("oulvfgpwwlrtrkxk")
public suspend fun policyDocument(`value`: Output) {
this.policyDocument = value
}
/**
* @param value The policy name.
*/
@JvmName("dtgjmpniqimbwuks")
public suspend fun policyName(`value`: Output) {
this.policyName = value
}
/**
* @param value
*/
@JvmName("nlxibgtslwwsdyjc")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("ckhdwudvdemmgsxp")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("upckfwusbbbpgouq")
public suspend fun tags(values: List