Show / Hide Table of Contents

Class CfnFunctionPropsMixin.EventInvokeDestinationConfigProperty

Inheritance
object
CfnFunctionPropsMixin.EventInvokeDestinationConfigProperty
Implements
CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty
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.EventInvokeDestinationConfigProperty : CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty
Syntax (vb)
Public Class CfnFunctionPropsMixin.EventInvokeDestinationConfigProperty Implements CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokedestinationconfig.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-eventinvokedestinationconfig.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 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

object

Remarks

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

Type union: either IResolvable or CfnFunctionPropsMixin.IDestinationProperty

OnSuccess

public object? OnSuccess { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnFunctionPropsMixin.IDestinationProperty

Implements

CfnFunctionPropsMixin.IEventInvokeDestinationConfigProperty
Back to top Generated by DocFX