@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.757Z") @Stability(value=Stable) public interface CfnStreamProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnStreamProps cfnStreamProps = CfnStreamProps.builder()
.inclusiveStartTime("inclusiveStartTime")
.kinesisConfiguration(KinesisConfigurationProperty.builder()
.aggregationEnabled(false)
.streamArn("streamArn")
.build())
.ledgerName("ledgerName")
.roleArn("roleArn")
.streamName("streamName")
// the properties below are optional
.exclusiveEndTime("exclusiveEndTime")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStreamProps.Builder
A builder for
CfnStreamProps |
static class |
CfnStreamProps.Jsii$Proxy
An implementation for
CfnStreamProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStreamProps.Builder |
builder() |
default String |
getExclusiveEndTime()
`AWS::QLDB::Stream.ExclusiveEndTime`.
|
String |
getInclusiveStartTime()
`AWS::QLDB::Stream.InclusiveStartTime`.
|
Object |
getKinesisConfiguration()
`AWS::QLDB::Stream.KinesisConfiguration`.
|
String |
getLedgerName()
`AWS::QLDB::Stream.LedgerName`.
|
String |
getRoleArn()
`AWS::QLDB::Stream.RoleArn`.
|
String |
getStreamName()
`AWS::QLDB::Stream.StreamName`.
|
default List<CfnTag> |
getTags()
`AWS::QLDB::Stream.Tags`.
|
@Stability(value=Stable) @Nullable default String getExclusiveEndTime()
@Stability(value=Stable) @NotNull String getInclusiveStartTime()
@Stability(value=Stable) @NotNull Object getKinesisConfiguration()
@Stability(value=Stable) @NotNull String getLedgerName()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull String getStreamName()
@Stability(value=Stable) static CfnStreamProps.Builder builder()
CfnStreamProps.Builder of CfnStreamPropsCopyright © 2021. All rights reserved.