@Stability(value=Stable)
public static interface CfnApplicationOutput.KinesisStreamsOutputProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationOutput.KinesisStreamsOutputProperty.Builder
A builder for
CfnApplicationOutput.KinesisStreamsOutputProperty |
static class |
CfnApplicationOutput.KinesisStreamsOutputProperty.Jsii$Proxy
An implementation for
CfnApplicationOutput.KinesisStreamsOutputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationOutput.KinesisStreamsOutputProperty.Builder |
builder() |
String |
getResourceArn()
ARN of the destination Amazon Kinesis stream to write to.
|
String |
getRoleArn()
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.
|
@Stability(value=Stable) @NotNull String getResourceArn()
@Stability(value=Stable) @NotNull String getRoleArn()
You need to grant the necessary permissions to this role.
@Stability(value=Stable) static CfnApplicationOutput.KinesisStreamsOutputProperty.Builder builder()
Copyright © 2022. All rights reserved.