interface ProcessorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Chime.CfnChannelFlowPropsMixin.ProcessorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awschime#CfnChannelFlowPropsMixin_ProcessorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.chime.CfnChannelFlowPropsMixin.ProcessorProperty |
Python | aws_cdk.cfn_property_mixins.aws_chime.CfnChannelFlowPropsMixin.ProcessorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_chime » CfnChannelFlowPropsMixin » 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/cfn-property-mixins';
const processorProperty: chime.CfnChannelFlowPropsMixin.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
(optional)
A processor's metadata.
executionOrder?
Type:
number
(optional)
The sequence in which processors run.
fallbackAction?
Type:
string
(optional)
Determines whether to continue or stop processing when communication with a processor fails.
name?
Type:
string
(optional)
The name of the processor.

.NET
Go
Java
Python
TypeScript