Show / Hide Table of Contents

Interface CfnApplicationOutputPropsMixin.IKinesisStreamsOutputProperty

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

Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnApplicationOutputPropsMixin.IKinesisStreamsOutputProperty
Syntax (vb)
Public Interface CfnApplicationOutputPropsMixin.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.

See: 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.Mixins.Preview.AWS.KinesisAnalytics.Mixins;

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

Synopsis

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.

Properties

ResourceArn

ARN of the destination Amazon Kinesis stream to write to.

string? ResourceArn { get; }
Property Value

string

Remarks

See: 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.

string? RoleArn { get; }
Property Value

string

Remarks

You need to grant the necessary permissions to this role.

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

Back to top Generated by DocFX