Show / Hide Table of Contents

Class CfnChannelPropsMixin.TopicConfigurationProperty

Configuration of topic in a channel.

Inheritance
object
CfnChannelPropsMixin.TopicConfigurationProperty
Implements
CfnChannelPropsMixin.ITopicConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MSK
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnChannelPropsMixin.TopicConfigurationProperty : CfnChannelPropsMixin.ITopicConfigurationProperty
Syntax (vb)
Public Class CfnChannelPropsMixin.TopicConfigurationProperty Implements CfnChannelPropsMixin.ITopicConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-channel-topicconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.MSK;

             var topicConfigurationProperty = new TopicConfigurationProperty {
                 RecordConverter = new RecordConverterProperty {
                     ValueConverter = "valueConverter"
                 },
                 RecordSchema = new RecordSchemaProperty {
                     GsrArn = "gsrArn"
                 },
                 TopicArn = "topicArn"
             };

Synopsis

Constructors

TopicConfigurationProperty()

Configuration of topic in a channel.

Properties

RecordConverter

Record converter configuration for a topic.

RecordSchema

Record schema configuration for a topic.

TopicArn

The Amazon Resource Name (ARN) that uniquely identifies the topic.

Constructors

TopicConfigurationProperty()

Configuration of topic in a channel.

public TopicConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-channel-topicconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.MSK;

             var topicConfigurationProperty = new TopicConfigurationProperty {
                 RecordConverter = new RecordConverterProperty {
                     ValueConverter = "valueConverter"
                 },
                 RecordSchema = new RecordSchemaProperty {
                     GsrArn = "gsrArn"
                 },
                 TopicArn = "topicArn"
             };

Properties

RecordConverter

Record converter configuration for a topic.

public object? RecordConverter { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-channel-topicconfiguration.html#cfn-msk-channel-topicconfiguration-recordconverter

Type union: either IResolvable or CfnChannelPropsMixin.IRecordConverterProperty

RecordSchema

Record schema configuration for a topic.

public object? RecordSchema { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-channel-topicconfiguration.html#cfn-msk-channel-topicconfiguration-recordschema

Type union: either IResolvable or CfnChannelPropsMixin.IRecordSchemaProperty

TopicArn

The Amazon Resource Name (ARN) that uniquely identifies the topic.

public string? TopicArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-channel-topicconfiguration.html#cfn-msk-channel-topicconfiguration-topicarn

Implements

CfnChannelPropsMixin.ITopicConfigurationProperty
Back to top Generated by DocFX