1. Packages
  2. Kafka Provider
  3. API Docs
  4. Topic
Kafka v3.10.3 published on Thursday, Jul 24, 2025 by Pulumi

kafka.Topic

Explore with Pulumi AI

kafka logo
Kafka v3.10.3 published on Thursday, Jul 24, 2025 by Pulumi

    Create Topic Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Topic(name: string, args: TopicArgs, opts?: CustomResourceOptions);
    @overload
    def Topic(resource_name: str,
              args: TopicArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Topic(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              partitions: Optional[int] = None,
              replication_factor: Optional[int] = None,
              config: Optional[Mapping[str, str]] = None,
              name: Optional[str] = None)
    func NewTopic(ctx *Context, name string, args TopicArgs, opts ...ResourceOption) (*Topic, error)
    public Topic(string name, TopicArgs args, CustomResourceOptions? opts = null)
    public Topic(String name, TopicArgs args)
    public Topic(String name, TopicArgs args, CustomResourceOptions options)
    
    type: kafka:Topic
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TopicArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TopicArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TopicArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TopicArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TopicArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var topicResource = new Kafka.Topic("topicResource", new()
    {
        Partitions = 0,
        ReplicationFactor = 0,
        Config = 
        {
            { "string", "string" },
        },
        Name = "string",
    });
    
    example, err := kafka.NewTopic(ctx, "topicResource", &kafka.TopicArgs{
    	Partitions:        pulumi.Int(0),
    	ReplicationFactor: pulumi.Int(0),
    	Config: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var topicResource = new Topic("topicResource", TopicArgs.builder()
        .partitions(0)
        .replicationFactor(0)
        .config(Map.of("string", "string"))
        .name("string")
        .build());
    
    topic_resource = kafka.Topic("topicResource",
        partitions=0,
        replication_factor=0,
        config={
            "string": "string",
        },
        name="string")
    
    const topicResource = new kafka.Topic("topicResource", {
        partitions: 0,
        replicationFactor: 0,
        config: {
            string: "string",
        },
        name: "string",
    });
    
    type: kafka:Topic
    properties:
        config:
            string: string
        name: string
        partitions: 0
        replicationFactor: 0
    

    Topic Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Topic resource accepts the following input properties:

    Partitions int
    Number of partitions.
    ReplicationFactor int
    Number of replicas.
    Config Dictionary<string, string>
    A map of string k/v attributes.
    Name string
    The name of the topic.
    Partitions int
    Number of partitions.
    ReplicationFactor int
    Number of replicas.
    Config map[string]string
    A map of string k/v attributes.
    Name string
    The name of the topic.
    partitions Integer
    Number of partitions.
    replicationFactor Integer
    Number of replicas.
    config Map<String,String>
    A map of string k/v attributes.
    name String
    The name of the topic.
    partitions number
    Number of partitions.
    replicationFactor number
    Number of replicas.
    config {[key: string]: string}
    A map of string k/v attributes.
    name string
    The name of the topic.
    partitions int
    Number of partitions.
    replication_factor int
    Number of replicas.
    config Mapping[str, str]
    A map of string k/v attributes.
    name str
    The name of the topic.
    partitions Number
    Number of partitions.
    replicationFactor Number
    Number of replicas.
    config Map<String>
    A map of string k/v attributes.
    name String
    The name of the topic.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Topic resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Topic Resource

    Get an existing Topic resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TopicState, opts?: CustomResourceOptions): Topic
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            partitions: Optional[int] = None,
            replication_factor: Optional[int] = None) -> Topic
    func GetTopic(ctx *Context, name string, id IDInput, state *TopicState, opts ...ResourceOption) (*Topic, error)
    public static Topic Get(string name, Input<string> id, TopicState? state, CustomResourceOptions? opts = null)
    public static Topic get(String name, Output<String> id, TopicState state, CustomResourceOptions options)
    resources:  _:    type: kafka:Topic    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Config Dictionary<string, string>
    A map of string k/v attributes.
    Name string
    The name of the topic.
    Partitions int
    Number of partitions.
    ReplicationFactor int
    Number of replicas.
    Config map[string]string
    A map of string k/v attributes.
    Name string
    The name of the topic.
    Partitions int
    Number of partitions.
    ReplicationFactor int
    Number of replicas.
    config Map<String,String>
    A map of string k/v attributes.
    name String
    The name of the topic.
    partitions Integer
    Number of partitions.
    replicationFactor Integer
    Number of replicas.
    config {[key: string]: string}
    A map of string k/v attributes.
    name string
    The name of the topic.
    partitions number
    Number of partitions.
    replicationFactor number
    Number of replicas.
    config Mapping[str, str]
    A map of string k/v attributes.
    name str
    The name of the topic.
    partitions int
    Number of partitions.
    replication_factor int
    Number of replicas.
    config Map<String>
    A map of string k/v attributes.
    name String
    The name of the topic.
    partitions Number
    Number of partitions.
    replicationFactor Number
    Number of replicas.

    Package Details

    Repository
    Kafka pulumi/pulumi-kafka
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the kafka Terraform Provider.
    kafka logo
    Kafka v3.10.3 published on Thursday, Jul 24, 2025 by Pulumi