Show / Hide Table of Contents

Class TopicArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TopicArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.AliCloud.Datahub
Assembly: Pulumi.AliCloud.dll
Syntax
public sealed class TopicArgs : ResourceArgs

Constructors

View Source

TopicArgs()

Declaration
public TopicArgs()

Properties

View Source

Comment

Comment of the datahub topic. It cannot be longer than 255 characters.

Declaration
public Input<string> Comment { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LifeCycle

How many days this topic lives. The permitted range of values is [1, 7]. The default value is 3.

Declaration
public Input<int> LifeCycle { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

The name of the datahub topic. Its length is limited to 1-128 and only characters such as letters, digits and '_' are allowed. It is case-insensitive.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ProjectName

The name of the datahub project that this topic belongs to. It is case-insensitive.

Declaration
public Input<string> ProjectName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RecordSchema

Schema of this topic, required only for TUPLE topic. Supported data types (case-insensitive) are:

  • BIGINT
  • STRING
  • BOOLEAN
  • DOUBLE
  • TIMESTAMP
Declaration
public InputMap<object> RecordSchema { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

RecordType

The type of this topic. Its value must be one of {BLOB, TUPLE}. For BLOB topic, data will be organized as binary and encoded by BASE64. For TUPLE topic, data has fixed schema. The default value is "TUPLE" with a schema {STRING}.

Declaration
public Input<string> RecordType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ShardCount

The number of shards this topic contains. The permitted range of values is [1, 10]. The default value is 1.

Declaration
public Input<int> ShardCount { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.