Show / Hide Table of Contents

Class CfnFunction.DestinationConfigProperty

Inheritance
object
CfnFunction.DestinationConfigProperty
Implements
CfnFunction.IDestinationConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunction.DestinationConfigProperty : CfnFunction.IDestinationConfigProperty
Syntax (vb)
Public Class CfnFunction.DestinationConfigProperty Implements CfnFunction.IDestinationConfigProperty
Remarks

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

             var destinationConfigProperty = new DestinationConfigProperty {
                 OnFailure = new DestinationProperty {
                     Destination = "destination",

                     // the properties below are optional
                     Type = "type"
                 }
             };

Synopsis

Constructors

DestinationConfigProperty()

Properties

OnFailure

Constructors

DestinationConfigProperty()

public DestinationConfigProperty()
Remarks

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

             var destinationConfigProperty = new DestinationConfigProperty {
                 OnFailure = new DestinationProperty {
                     Destination = "destination",

                     // the properties below are optional
                     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-destinationconfig.html#cfn-serverless-function-destinationconfig-onfailure

Implements

CfnFunction.IDestinationConfigProperty
Back to top Generated by DocFX