Interface CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The
KinesisStreamSourceConfiguration property type specifies the stream and role Amazon Resource Names (ARNs) for a Kinesis stream used as the source for a delivery stream.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.*;
KinesisStreamSourceConfigurationProperty kinesisStreamSourceConfigurationProperty = KinesisStreamSourceConfigurationProperty.builder()
.kinesisStreamArn("kinesisStreamArn")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKinesisStreamArn
The ARN of the source Kinesis data stream.Returns union: either
StringorIStreamRef- See Also:
-
getRoleArn
The ARN of the role that provides access to the source Kinesis data stream.- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.KinesisStreamSourceConfigurationProperty.Builder builder()
-