Interface CfnApplicationOutput.KinesisStreamsOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationOutput.KinesisStreamsOutputProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationOutput
@Stability(Stable)
public static interface CfnApplicationOutput.KinesisStreamsOutputProperty
extends software.amazon.jsii.JsiiSerializable
When configuring application output, identifies an Amazon Kinesis stream as the destination.
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.kinesisanalytics.*; KinesisStreamsOutputProperty kinesisStreamsOutputProperty = KinesisStreamsOutputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationOutput.KinesisStreamsOutputProperty
static final class
An implementation forCfnApplicationOutput.KinesisStreamsOutputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
ARN of the destination Amazon Kinesis stream to write to.ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceArn
ARN of the destination Amazon Kinesis stream to write to.- See Also:
-
getRoleArn
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.You need to grant the necessary permissions to this role.
- See Also:
-
builder
-