Interface CfnFunction.DestinationConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunction.DestinationConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunction

@Stability(Stable) public static interface CfnFunction.DestinationConfigProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sam.*;
 DestinationConfigProperty destinationConfigProperty = DestinationConfigProperty.builder()
         .onFailure(DestinationProperty.builder()
                 .destination("destination")
                 // the properties below are optional
                 .type("type")
                 .build())
         .build();