ServerlessClusterArgs

data class ServerlessClusterArgs(val clientAuthentication: Output<ServerlessClusterClientAuthenticationArgs>? = null, val clusterName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val vpcConfigs: Output<List<ServerlessClusterVpcConfigArgs>>? = null) : ConvertibleToJava<ServerlessClusterArgs>

Manages an Amazon MSK Serverless cluster.

Note: To manage a provisioned Amazon MSK cluster, use the aws.msk.Cluster resource.

Import

MSK serverless clusters can be imported using the cluster arn, e.g.,

$ pulumi import aws:msk/serverlessCluster:ServerlessCluster example arn:aws:kafka:us-west-2:123456789012:cluster/example/279c0212-d057-4dba-9aa9-1c4e5a25bfc7-3

Constructors

Link copied to clipboard
constructor(clientAuthentication: Output<ServerlessClusterClientAuthenticationArgs>? = null, clusterName: Output<String>? = null, tags: Output<Map<String, String>>? = null, vpcConfigs: Output<List<ServerlessClusterVpcConfigArgs>>? = null)

Properties

Link copied to clipboard

Specifies client authentication information for the serverless cluster. See below.

Link copied to clipboard
val clusterName: Output<String>? = null

The name of the serverless cluster.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard

VPC configuration information. See below.

Functions

Link copied to clipboard
open override fun toJava(): ServerlessClusterArgs