com.pulumi.awsnative.elasticache.kotlin.SubnetGroup.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticache.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 [SubnetGroup].
*/
@PulumiTagMarker
public class SubnetGroupResourceBuilder internal constructor() {
public var name: String? = null
public var args: SubnetGroupArgs = SubnetGroupArgs()
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 SubnetGroupArgsBuilder.() -> Unit) {
val builder = SubnetGroupArgsBuilder()
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(): SubnetGroup {
val builtJavaResource = com.pulumi.awsnative.elasticache.SubnetGroup(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return SubnetGroup(builtJavaResource)
}
}
/**
* Resource Type definition for AWS::ElastiCache::SubnetGroup
*/
public class SubnetGroup internal constructor(
override val javaResource: com.pulumi.awsnative.elasticache.SubnetGroup,
) : KotlinCustomResource(javaResource, SubnetGroupMapper) {
/**
* The name for the cache subnet group. This value is stored as a lowercase string.
*/
public val cacheSubnetGroupName: Output?
get() = javaResource.cacheSubnetGroupName().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The description for the cache subnet group.
*/
public val description: Output
get() = javaResource.description().applyValue({ args0 -> args0 })
/**
* The EC2 subnet IDs for the cache subnet group.
*/
public val subnetIds: Output>
get() = javaResource.subnetIds().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* A tag that can be added to an ElastiCache subnet group. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your subnet groups. A tag with a null Value is permitted.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
})
}).orElse(null)
})
}
public object SubnetGroupMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.elasticache.SubnetGroup::class == javaResource::class
override fun map(javaResource: Resource): SubnetGroup = SubnetGroup(
javaResource as
com.pulumi.awsnative.elasticache.SubnetGroup,
)
}
/**
* @see [SubnetGroup].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [SubnetGroup].
*/
public suspend fun subnetGroup(name: String, block: suspend SubnetGroupResourceBuilder.() -> Unit): SubnetGroup {
val builder = SubnetGroupResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [SubnetGroup].
* @param name The _unique_ name of the resulting resource.
*/
public fun subnetGroup(name: String): SubnetGroup {
val builder = SubnetGroupResourceBuilder()
builder.name(name)
return builder.build()
}