Class CfnFunctionPropsMixin.EventInvokeConfigProperty
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFunctionPropsMixin.EventInvokeConfigProperty : CfnFunctionPropsMixin.IEventInvokeConfigProperty
Syntax (vb)
Public Class CfnFunctionPropsMixin.EventInvokeConfigProperty Implements CfnFunctionPropsMixin.IEventInvokeConfigProperty
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 eventInvokeConfigProperty = new EventInvokeConfigProperty {
DestinationConfig = new EventInvokeDestinationConfigProperty {
OnFailure = new DestinationProperty {
Destination = "destination",
Type = "type"
},
OnSuccess = new DestinationProperty {
Destination = "destination",
Type = "type"
}
},
MaximumEventAgeInSeconds = 123,
MaximumRetryAttempts = 123
};
Synopsis
Constructors
| EventInvokeConfigProperty() |
Properties
| DestinationConfig | |
| MaximumEventAgeInSeconds | |
| MaximumRetryAttempts |
Constructors
EventInvokeConfigProperty()
public EventInvokeConfigProperty()
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 eventInvokeConfigProperty = new EventInvokeConfigProperty {
DestinationConfig = new EventInvokeDestinationConfigProperty {
OnFailure = new DestinationProperty {
Destination = "destination",
Type = "type"
},
OnSuccess = new DestinationProperty {
Destination = "destination",
Type = "type"
}
},
MaximumEventAgeInSeconds = 123,
MaximumRetryAttempts = 123
};
Properties
DestinationConfig
public object? DestinationConfig { get; set; }
Property Value
Remarks
MaximumEventAgeInSeconds
public double? MaximumEventAgeInSeconds { get; set; }
Property Value
Remarks
MaximumRetryAttempts
public double? MaximumRetryAttempts { get; set; }