Show / Hide Table of Contents

Class CfnStreamConsumerProps

Properties for defining a CfnStreamConsumer.

Inheritance
System.Object
CfnStreamConsumerProps
Implements
ICfnStreamConsumerProps
Namespace: Amazon.CDK.AWS.Kinesis
Assembly: Amazon.CDK.AWS.Kinesis.dll
Syntax (csharp)
public class CfnStreamConsumerProps : Object, ICfnStreamConsumerProps
Syntax (vb)
Public Class CfnStreamConsumerProps
    Inherits Object
    Implements ICfnStreamConsumerProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.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.AWS.Kinesis;

var cfnStreamConsumerProps = new CfnStreamConsumerProps {
    ConsumerName = "consumerName",
    StreamArn = "streamArn"
};

Synopsis

Constructors

CfnStreamConsumerProps()

Properties

ConsumerName

The name of the consumer is something you choose when you register the consumer.

StreamArn

The ARN of the stream with which you registered the consumer.

Constructors

CfnStreamConsumerProps()

public CfnStreamConsumerProps()

Properties

ConsumerName

The name of the consumer is something you choose when you register the consumer.

public string ConsumerName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-consumername

StreamArn

The ARN of the stream with which you registered the consumer.

public string StreamArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-streamconsumer.html#cfn-kinesis-streamconsumer-streamarn

Implements

ICfnStreamConsumerProps
Back to top Generated by DocFX