CfnAppInstanceBotMixinProps

class aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceBotMixinProps(*, app_instance_arn=None, configuration=None, metadata=None, name=None, tags=None)

Bases: object

Properties for CfnAppInstanceBotPropsMixin.

Parameters:
  • app_instance_arn (Optional[str]) – The ARN of the AppInstance.

  • configuration (Union[IResolvable, ConfigurationProperty, Dict[str, Any], None]) – A structure that contains configuration data.

  • metadata (Optional[str]) – The metadata of the AppInstanceBot.

  • name (Optional[str]) – The name of the AppInstanceBot.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags assigned to the AppInstanceBot.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-appinstancebot.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_app_instance_bot_mixin_props = chime.CfnAppInstanceBotMixinProps(
    app_instance_arn="appInstanceArn",
    configuration=chime.CfnAppInstanceBotPropsMixin.ConfigurationProperty(
        lex=chime.CfnAppInstanceBotPropsMixin.LexConfigurationProperty(
            invoked_by=chime.CfnAppInstanceBotPropsMixin.InvokedByProperty(
                standard_messages="standardMessages",
                targeted_messages="targetedMessages"
            ),
            lex_bot_alias_arn="lexBotAliasArn",
            locale_id="localeId",
            responds_to="respondsTo",
            welcome_intent="welcomeIntent"
        )
    ),
    metadata="metadata",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

app_instance_arn

The ARN of the AppInstance.

See:

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

configuration

A structure that contains configuration data.

See:

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

metadata

The metadata of the AppInstanceBot.

See:

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

name

The name of the AppInstanceBot.

See:

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

tags

The tags assigned to the AppInstanceBot.

See:

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