interface ProcessorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Chime.CfnChannelFlow.ProcessorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awschime#CfnChannelFlow_ProcessorProperty |
Java | software.amazon.awscdk.services.chime.CfnChannelFlow.ProcessorProperty |
Python | aws_cdk.aws_chime.CfnChannelFlow.ProcessorProperty |
TypeScript | aws-cdk-lib » aws_chime » CfnChannelFlow » ProcessorProperty |
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 { aws_chime as chime } from 'aws-cdk-lib';
const processorProperty: chime.CfnChannelFlow.ProcessorProperty = {
configuration: {
lambda: {
invocationType: 'invocationType',
resourceArn: 'resourceArn',
},
},
executionOrder: 123,
fallbackAction: 'fallbackAction',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Processor | A processor's metadata. |
| execution | number | The sequence in which processors run. |
| fallback | string | Determines whether to continue or stop processing when communication with a processor fails. |
| name | string | The name of the processor. |
configuration
Type:
IResolvable | Processor
A processor's metadata.
executionOrder
Type:
number
The sequence in which processors run.
fallbackAction
Type:
string
Determines whether to continue or stop processing when communication with a processor fails.
name
Type:
string
The name of the processor.

.NET
Go
Java
Python
TypeScript