@Stability(value=Stable)
public static interface CfnApplicationOutput.KinesisFirehoseOutputProperty
extends software.amazon.jsii.JsiiSerializable
You provide the stream Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics 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.*;
KinesisFirehoseOutputProperty kinesisFirehoseOutputProperty = KinesisFirehoseOutputProperty.builder()
.resourceArn("resourceArn")
.roleArn("roleArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationOutput.KinesisFirehoseOutputProperty.Builder
A builder for
CfnApplicationOutput.KinesisFirehoseOutputProperty |
static class |
CfnApplicationOutput.KinesisFirehoseOutputProperty.Jsii$Proxy
An implementation for
CfnApplicationOutput.KinesisFirehoseOutputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationOutput.KinesisFirehoseOutputProperty.Builder |
builder() |
String |
getResourceArn()
ARN of the destination Amazon Kinesis Firehose delivery 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.KinesisFirehoseOutputProperty.Builder builder()
Copyright © 2022. All rights reserved.