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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelFlow.ProcessorPropertystatic final classAn implementation forCfnChannelFlow.ProcessorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
A processor's metadata.Returns union: either
IResolvableorCfnChannelFlow.ProcessorConfigurationProperty- See Also:
-
getExecutionOrder
The sequence in which processors run.- See Also:
-
getFallbackAction
Determines whether to continue or stop processing when communication with a processor fails.- See Also:
-
getName
The name of the processor.- See Also:
-
builder
-