Interface StreamReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
StreamReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-15T14:52:03.455Z")
@Stability(Stable)
public interface StreamReference
extends software.amazon.jsii.JsiiSerializable
A reference to a Stream resource.
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.qldb.*; StreamReference streamReference = StreamReference.builder() .ledgerName("ledgerName") .streamArn("streamArn") .streamId("streamId") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forStreamReference
static final class
An implementation forStreamReference
-
Method Summary
Modifier and TypeMethodDescriptionstatic StreamReference.Builder
builder()
The LedgerName of the Stream resource.The ARN of the Stream resource.The Id of the Stream resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLedgerName
The LedgerName of the Stream resource. -
getStreamArn
The ARN of the Stream resource. -
getStreamId
The Id of the Stream resource. -
builder
- Returns:
- a
StreamReference.Builder
ofStreamReference
-