com.pulumi.awsnative.rolesanywhere.kotlin.Crl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.rolesanywhere.kotlin
import com.pulumi.awsnative.kotlin.outputs.Tag
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
/**
* Builder for [Crl].
*/
@PulumiTagMarker
public class CrlResourceBuilder internal constructor() {
public var name: String? = null
public var args: CrlArgs = CrlArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend CrlArgsBuilder.() -> Unit) {
val builder = CrlArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): Crl {
val builtJavaResource = com.pulumi.awsnative.rolesanywhere.Crl(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Crl(builtJavaResource)
}
}
/**
* Definition of AWS::RolesAnywhere::CRL Resource Type
*/
public class Crl internal constructor(
override val javaResource: com.pulumi.awsnative.rolesanywhere.Crl,
) : KotlinCustomResource(javaResource, CrlMapper) {
/**
* The x509 v3 specified certificate revocation list (CRL).
*/
public val crlData: Output
get() = javaResource.crlData().applyValue({ args0 -> args0 })
/**
* The unique primary identifier of the Crl
*/
public val crlId: Output
get() = javaResource.crlId().applyValue({ args0 -> args0 })
/**
* Specifies whether the certificate revocation list (CRL) is enabled.
*/
public val enabled: Output?
get() = javaResource.enabled().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The name of the certificate revocation list (CRL).
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* A list of tags to attach to the certificate revocation list (CRL).
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
})
}).orElse(null)
})
/**
* The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.
*/
public val trustAnchorArn: Output?
get() = javaResource.trustAnchorArn().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
}
public object CrlMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.rolesanywhere.Crl::class == javaResource::class
override fun map(javaResource: Resource): Crl = Crl(
javaResource as
com.pulumi.awsnative.rolesanywhere.Crl,
)
}
/**
* @see [Crl].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Crl].
*/
public suspend fun crl(name: String, block: suspend CrlResourceBuilder.() -> Unit): Crl {
val builder = CrlResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Crl].
* @param name The _unique_ name of the resulting resource.
*/
public fun crl(name: String): Crl {
val builder = CrlResourceBuilder()
builder.name(name)
return builder.build()
}