Interface CfnFunctionPropsMixin.KinesisEventProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionPropsMixin.KinesisEventProperty.Jsii$Proxy
Enclosing class:
CfnFunctionPropsMixin

@Stability(Stable) public static interface CfnFunctionPropsMixin.KinesisEventProperty 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.cfnpropertymixins.services.sam.*;
 KinesisEventProperty kinesisEventProperty = KinesisEventProperty.builder()
         .batchSize(123)
         .enabled(false)
         .functionResponseTypes(List.of("functionResponseTypes"))
         .startingPosition("startingPosition")
         .stream("stream")
         .build();
 

See Also: