@Stability(value=Stable)
public static interface CfnApplication.KinesisFirehoseInputProperty
extends software.amazon.jsii.JsiiSerializable
You provide the delivery 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.*;
KinesisFirehoseInputProperty kinesisFirehoseInputProperty = KinesisFirehoseInputProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplication.KinesisFirehoseInputProperty.Builder
A builder for
CfnApplication.KinesisFirehoseInputProperty |
static class |
CfnApplication.KinesisFirehoseInputProperty.Jsii$Proxy
An implementation for
CfnApplication.KinesisFirehoseInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplication.KinesisFirehoseInputProperty.Builder |
builder() |
String |
getResourceArn()
ARN of the input delivery stream.
|
String |
getRoleArn()
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.
|
@Stability(value=Stable) @NotNull String getResourceArn()
@Stability(value=Stable) @NotNull String getRoleArn()
You need to make sure that the role has the necessary permissions to access the stream.
@Stability(value=Stable) static CfnApplication.KinesisFirehoseInputProperty.Builder builder()
Copyright © 2022. All rights reserved.