interface KinesisEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnFunctionPropsMixin.KinesisEventProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnFunctionPropsMixin_KinesisEventProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnFunctionPropsMixin.KinesisEventProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnFunctionPropsMixin.KinesisEventProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnFunctionPropsMixin » KinesisEventProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from '@aws-cdk/cfn-property-mixins';
const kinesisEventProperty: sam.CfnFunctionPropsMixin.KinesisEventProperty = {
batchSize: 123,
enabled: false,
functionResponseTypes: ['functionResponseTypes'],
startingPosition: 'startingPosition',
stream: 'stream',
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | number | |
| enabled? | boolean | IResolvable | |
| function | string[] | |
| starting | string | |
| stream? | string |
batchSize?
Type:
number
(optional)
enabled?
Type:
boolean | IResolvable
(optional)
functionResponseTypes?
Type:
string[]
(optional)
startingPosition?
Type:
string
(optional)
stream?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript