Show / Hide Table of Contents

Class CfnApplicationOutput.KinesisStreamsOutputProperty

When configuring application output, identifies an Amazon Kinesis stream as the destination.

Inheritance
System.Object
CfnApplicationOutput.KinesisStreamsOutputProperty
Implements
CfnApplicationOutput.IKinesisStreamsOutputProperty
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.AWS.KinesisAnalytics.dll
Syntax (csharp)
public class KinesisStreamsOutputProperty : Object, CfnApplicationOutput.IKinesisStreamsOutputProperty
Syntax (vb)
Public Class KinesisStreamsOutputProperty
    Inherits Object
    Implements CfnApplicationOutput.IKinesisStreamsOutputProperty
Remarks

You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the stream on your behalf.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.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.KinesisAnalytics;

var kinesisStreamsOutputProperty = new KinesisStreamsOutputProperty {
    ResourceArn = "resourceArn",
    RoleArn = "roleArn"
};

Synopsis

Constructors

KinesisStreamsOutputProperty()

Properties

ResourceArn

ARN of the destination Amazon Kinesis stream to write to.

RoleArn

ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.

Constructors

KinesisStreamsOutputProperty()

public KinesisStreamsOutputProperty()

Properties

ResourceArn

ARN of the destination Amazon Kinesis stream to write to.

public string ResourceArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn

RoleArn

ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.

public string RoleArn { get; set; }
Property Value

System.String

Remarks

You need to grant the necessary permissions to this role.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn

Implements

CfnApplicationOutput.IKinesisStreamsOutputProperty
Back to top Generated by DocFX