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

.NET
Go
Java
Python
TypeScript