com.pulumi.awsnative.redshift.kotlin.ClusterSubnetGroup.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.redshift.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 [ClusterSubnetGroup].
*/
@PulumiTagMarker
public class ClusterSubnetGroupResourceBuilder internal constructor() {
public var name: String? = null
public var args: ClusterSubnetGroupArgs = ClusterSubnetGroupArgs()
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 ClusterSubnetGroupArgsBuilder.() -> Unit) {
val builder = ClusterSubnetGroupArgsBuilder()
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(): ClusterSubnetGroup {
val builtJavaResource =
com.pulumi.awsnative.redshift.ClusterSubnetGroup(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ClusterSubnetGroup(builtJavaResource)
}
}
/**
* Specifies an Amazon Redshift subnet group.
*/
public class ClusterSubnetGroup internal constructor(
override val javaResource: com.pulumi.awsnative.redshift.ClusterSubnetGroup,
) : KotlinCustomResource(javaResource, ClusterSubnetGroupMapper) {
/**
* This name must be unique for all subnet groups that are created by your AWS account. If costumer do not provide it, cloudformation will generate it. Must not be "Default".
*/
public val clusterSubnetGroupName: Output
get() = javaResource.clusterSubnetGroupName().applyValue({ args0 -> args0 })
/**
* The description of the parameter group.
*/
public val description: Output
get() = javaResource.description().applyValue({ args0 -> args0 })
/**
* The list of VPC subnet IDs
*/
public val subnetIds: Output>
get() = javaResource.subnetIds().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The list of tags for the cluster parameter 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 ClusterSubnetGroupMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.redshift.ClusterSubnetGroup::class == javaResource::class
override fun map(javaResource: Resource): ClusterSubnetGroup = ClusterSubnetGroup(
javaResource as
com.pulumi.awsnative.redshift.ClusterSubnetGroup,
)
}
/**
* @see [ClusterSubnetGroup].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [ClusterSubnetGroup].
*/
public suspend fun clusterSubnetGroup(
name: String,
block: suspend ClusterSubnetGroupResourceBuilder.() -> Unit,
): ClusterSubnetGroup {
val builder = ClusterSubnetGroupResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [ClusterSubnetGroup].
* @param name The _unique_ name of the resulting resource.
*/
public fun clusterSubnetGroup(name: String): ClusterSubnetGroup {
val builder = ClusterSubnetGroupResourceBuilder()
builder.name(name)
return builder.build()
}