public static interface CfnApplication.KinesisStreamsInputProperty
You provide the stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis Analytics to access 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.*; KinesisStreamsInputProperty kinesisStreamsInputProperty = KinesisStreamsInputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.KinesisStreamsInputProperty.Builder
A builder for
CfnApplication.KinesisStreamsInputProperty |
static class |
CfnApplication.KinesisStreamsInputProperty.Jsii$Proxy
An implementation for
CfnApplication.KinesisStreamsInputProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.KinesisStreamsInputProperty.Builder |
builder() |
java.lang.String |
getResourceArn()
ARN of the input Amazon Kinesis stream to read.
|
java.lang.String |
getRoleArn()
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.
|
java.lang.String getResourceArn()
java.lang.String getRoleArn()
You need to grant the necessary permissions to this role.
static CfnApplication.KinesisStreamsInputProperty.Builder builder()