Show / Hide Table of Contents

Class CfnFunctionPropsMixin.EventInvokeConfigProperty

Inheritance
object
CfnFunctionPropsMixin.EventInvokeConfigProperty
Implements
CfnFunctionPropsMixin.IEventInvokeConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokeconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokeconfig.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokeconfig.html#cfn-serverless-function-eventinvokeconfig-destinationconfig

Type union: either IResolvable or CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty

MaximumEventAgeInSeconds

public double? MaximumEventAgeInSeconds { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokeconfig.html#cfn-serverless-function-eventinvokeconfig-maximumeventageinseconds

MaximumRetryAttempts

public double? MaximumRetryAttempts { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokeconfig.html#cfn-serverless-function-eventinvokeconfig-maximumretryattempts

Implements

CfnFunctionPropsMixin.IEventInvokeConfigProperty
Back to top Generated by DocFX