com.pulumi.awsnative.memorydb.kotlin.SubnetGroup.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.memorydb.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.memorydb.SubnetGroup(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return SubnetGroup(builtJavaResource)
}
}
/**
* The AWS::MemoryDB::SubnetGroup resource creates an Amazon MemoryDB Subnet Group.
*/
public class SubnetGroup internal constructor(
override val javaResource: com.pulumi.awsnative.memorydb.SubnetGroup,
) : KotlinCustomResource(javaResource, SubnetGroupMapper) {
/**
* The Amazon Resource Name (ARN) of the subnet group.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* An optional description of the subnet group.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The name of the subnet group. This value must be unique as it also serves as the subnet group identifier.
*/
public val subnetGroupName: Output
get() = javaResource.subnetGroupName().applyValue({ args0 -> args0 })
/**
* A list of VPC subnet IDs for the subnet group.
*/
public val subnetIds: Output>
get() = javaResource.subnetIds().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* An array of key-value pairs to apply to this subnet group.
*/
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.memorydb.SubnetGroup::class == javaResource::class
override fun map(javaResource: Resource): SubnetGroup = SubnetGroup(
javaResource as
com.pulumi.awsnative.memorydb.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()
}