Interface CfnApplicationOutput.KinesisFirehoseOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationOutput.KinesisFirehoseOutputProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationOutput
@Stability(Stable)
public static interface CfnApplicationOutput.KinesisFirehoseOutputProperty
extends software.amazon.jsii.JsiiSerializable
When configuring application output, identifies an Amazon Kinesis Firehose delivery stream as the destination.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationOutput.KinesisFirehoseOutputProperty
static final class
An implementation forCfnApplicationOutput.KinesisFirehoseOutputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
ARN of the destination Amazon Kinesis Firehose delivery 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 Firehose delivery 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
-