Show / Hide Table of Contents

Class CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty

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

Inheritance
object
CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty
Implements
CfnApplicationOutputPropsMixin.IKinesisStreamsOutputProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty : CfnApplicationOutputPropsMixin.IKinesisStreamsOutputProperty
Syntax (vb)
Public Class CfnApplicationOutputPropsMixin.KinesisStreamsOutputProperty Implements 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

Constructors

KinesisStreamsOutputProperty()

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

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()

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

public KinesisStreamsOutputProperty()
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"
             };

Properties

ResourceArn

ARN of the destination Amazon Kinesis stream to write to.

public string? ResourceArn { get; set; }
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.

public string? RoleArn { get; set; }
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

Implements

CfnApplicationOutputPropsMixin.IKinesisStreamsOutputProperty
Back to top Generated by DocFX