Class CfnFunctionPropsMixin.EventInvokeDestinationConfigProperty
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFunctionPropsMixin.EventInvokeDestinationConfigProperty : CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty
Syntax (vb)
Public Class CfnFunctionPropsMixin.EventInvokeDestinationConfigProperty Implements CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins;
var eventInvokeDestinationConfigProperty = new EventInvokeDestinationConfigProperty {
OnFailure = new DestinationProperty {
Destination = "destination",
Type = "type"
},
OnSuccess = new DestinationProperty {
Destination = "destination",
Type = "type"
}
};
Synopsis
Constructors
| EventInvokeDestinationConfigProperty() |
Properties
| OnFailure | |
| OnSuccess |
Constructors
EventInvokeDestinationConfigProperty()
public EventInvokeDestinationConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins;
var eventInvokeDestinationConfigProperty = new EventInvokeDestinationConfigProperty {
OnFailure = new DestinationProperty {
Destination = "destination",
Type = "type"
},
OnSuccess = new DestinationProperty {
Destination = "destination",
Type = "type"
}
};
Properties
OnFailure
public object? OnFailure { get; set; }
Property Value
Remarks
OnSuccess
public object? OnSuccess { get; set; }