Interface CfnChannelFlow.ProcessorProperty

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

@Stability(Stable) public static interface CfnChannelFlow.ProcessorProperty extends software.amazon.jsii.JsiiSerializable
Information about a processor in a channel flow.

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.chime.*;
 ProcessorProperty processorProperty = ProcessorProperty.builder()
         .configuration(ProcessorConfigurationProperty.builder()
                 .lambda(LambdaConfigurationProperty.builder()
                         .invocationType("invocationType")
                         .resourceArn("resourceArn")
                         .build())
                 .build())
         .executionOrder(123)
         .fallbackAction("fallbackAction")
         .name("name")
         .build();
 

See Also: