CfnChannelFlowProps

class aws_cdk.aws_chime.CfnChannelFlowProps(*, app_instance_arn, name, processors, tags=None)

Bases: object

Properties for defining a CfnChannelFlow.

Parameters:
  • app_instance_arn (str) – The ARN of the app instance.

  • name (str) – The name of the channel flow.

  • processors (Union[IResolvable, Sequence[Union[IResolvable, ProcessorProperty, Dict[str, Any]]]]) – Information about the processor Lambda functions.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the channel flow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-channelflow.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_chime as chime

cfn_channel_flow_props = chime.CfnChannelFlowProps(
    app_instance_arn="appInstanceArn",
    name="name",
    processors=[chime.CfnChannelFlow.ProcessorProperty(
        configuration=chime.CfnChannelFlow.ProcessorConfigurationProperty(
            lambda_=chime.CfnChannelFlow.LambdaConfigurationProperty(
                invocation_type="invocationType",
                resource_arn="resourceArn"
            )
        ),
        execution_order=123,
        fallback_action="fallbackAction",
        name="name"
    )],

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

app_instance_arn

The ARN of the app instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-channelflow.html#cfn-chime-channelflow-appinstancearn

name

The name of the channel flow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-channelflow.html#cfn-chime-channelflow-name

processors

Information about the processor Lambda functions.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-channelflow.html#cfn-chime-channelflow-processors

tags

The tags for the channel flow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-channelflow.html#cfn-chime-channelflow-tags