CfnAppInstanceBotProps
- class aws_cdk.aws_chime.CfnAppInstanceBotProps(*, app_instance_arn, configuration, metadata=None, name=None, tags=None)
Bases:
objectProperties for defining a
CfnAppInstanceBot.- Parameters:
app_instance_arn (
str) – The ARN of the AppInstance.configuration (
Union[IResolvable,ConfigurationProperty,Dict[str,Any]]) – 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 import aws_chime as chime cfn_app_instance_bot_props = chime.CfnAppInstanceBotProps( app_instance_arn="appInstanceArn", configuration=chime.CfnAppInstanceBot.ConfigurationProperty( lex=chime.CfnAppInstanceBot.LexConfigurationProperty( lex_bot_alias_arn="lexBotAliasArn", locale_id="localeId", # the properties below are optional invoked_by=chime.CfnAppInstanceBot.InvokedByProperty( standard_messages="standardMessages", targeted_messages="targetedMessages" ), responds_to="respondsTo", welcome_intent="welcomeIntent" ) ), # the properties below are optional metadata="metadata", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- app_instance_arn
The ARN of the AppInstance.
- configuration
A structure that contains configuration data.
- metadata
The metadata of the AppInstanceBot.
- name
The name of the AppInstanceBot.
- tags
The tags assigned to the AppInstanceBot.