@Stability(value=Stable)
public static interface CfnFunction.KinesisEventProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sam.*;
KinesisEventProperty kinesisEventProperty = KinesisEventProperty.builder()
.startingPosition("startingPosition")
.stream("stream")
// the properties below are optional
.batchSize(123)
.enabled(false)
.functionResponseTypes(List.of("functionResponseTypes"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFunction.KinesisEventProperty.Builder
A builder for
CfnFunction.KinesisEventProperty |
static class |
CfnFunction.KinesisEventProperty.Jsii$Proxy
An implementation for
CfnFunction.KinesisEventProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFunction.KinesisEventProperty.Builder |
builder() |
default Number |
getBatchSize()
`CfnFunction.KinesisEventProperty.BatchSize`.
|
default Object |
getEnabled()
`CfnFunction.KinesisEventProperty.Enabled`.
|
default List<String> |
getFunctionResponseTypes()
`CfnFunction.KinesisEventProperty.FunctionResponseTypes`.
|
String |
getStartingPosition()
`CfnFunction.KinesisEventProperty.StartingPosition`.
|
String |
getStream()
`CfnFunction.KinesisEventProperty.Stream`.
|
@Stability(value=Stable) @NotNull String getStartingPosition()
@Stability(value=Stable) @NotNull String getStream()
@Stability(value=Stable) @Nullable default Number getBatchSize()
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default List<String> getFunctionResponseTypes()
@Stability(value=Stable) static CfnFunction.KinesisEventProperty.Builder builder()
Copyright © 2023. All rights reserved.