Namespace Pulumi.Aws.Msk
Classes
Cluster
Manages AWS Managed Streaming for Kafka cluster
ClusterArgs
ClusterState
Configuration
Manages an Amazon Managed Streaming for Kafka configuration. More information can be found on the MSK Developer Guide.
NOTE: The API does not support deleting MSK configurations. Removing this resource will only remove the this provider state for it.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.Msk.Configuration("example", new Aws.Msk.ConfigurationArgs
{
KafkaVersions =
{
"2.1.0",
},
ServerProperties = @"auto.create.topics.enable = true
delete.topic.enable = true
",
});
}
}