interface EventInvokeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnFunctionPropsMixin.EventInvokeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnFunctionPropsMixin_EventInvokeConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnFunctionPropsMixin.EventInvokeConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnFunctionPropsMixin.EventInvokeConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnFunctionPropsMixin » EventInvokeConfigProperty |
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 eventInvokeConfigProperty: sam.CfnFunctionPropsMixin.EventInvokeConfigProperty = {
destinationConfig: {
onFailure: {
destination: 'destination',
type: 'type',
},
onSuccess: {
destination: 'destination',
type: 'type',
},
},
maximumEventAgeInSeconds: 123,
maximumRetryAttempts: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Event | |
| maximum | number | |
| maximum | number |
destinationConfig?
Type:
IResolvable | Event
(optional)
maximumEventAgeInSeconds?
Type:
number
(optional)
maximumRetryAttempts?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript