Interface CfnFunction.CustomOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnFunction.CustomOutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for custom output functions.

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.mediatailor.*;
 CustomOutputConfigurationProperty customOutputConfigurationProperty = CustomOutputConfigurationProperty.builder()
         .runtime("runtime")
         // the properties below are optional
         .output(Map.of(
                 "outputKey", "output"))
         .build();
 

See Also: