Class CfnFunction.DestinationConfigProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunction.DestinationConfigProperty : CfnFunction.IDestinationConfigPropertySyntax (vb)
Public Class CfnFunction.DestinationConfigProperty Implements CfnFunction.IDestinationConfigPropertyRemarks
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
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; }