CfnChannelFlowMixinProps
- class aws_cdk.cfn_property_mixins.aws_chime.CfnChannelFlowMixinProps(*, app_instance_arn=None, name=None, processors=None, tags=None)
Bases:
objectProperties for CfnChannelFlowPropsMixin.
- Parameters:
app_instance_arn (
Optional[str]) – The ARN of the app instance.name (
Optional[str]) – The name of the channel flow.processors (
Union[IResolvable,Sequence[Union[IResolvable,ProcessorProperty,Dict[str,Any]]],None]) – 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.cfn_property_mixins import aws_chime as chime cfn_channel_flow_mixin_props = chime.CfnChannelFlowMixinProps( app_instance_arn="appInstanceArn", name="name", processors=[chime.CfnChannelFlowPropsMixin.ProcessorProperty( configuration=chime.CfnChannelFlowPropsMixin.ProcessorConfigurationProperty( lambda_=chime.CfnChannelFlowPropsMixin.LambdaConfigurationProperty( invocation_type="invocationType", resource_arn="resourceArn" ) ), execution_order=123, fallback_action="fallbackAction", name="name" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- app_instance_arn
The ARN of the app instance.
- name
The name of the channel flow.
- processors
Information about the processor Lambda functions.
- tags
The tags for the channel flow.