AWS Fundamentals Logo
AWS Fundamentals
AWS::Chatbot::CustomAction

Chatbot CustomAction

Definition of AWS::Chatbot::CustomAction Resource Type

Properties

5 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
ActionName
string
RequiredCreate-only
Definition
CustomActionDefinition
Required
AliasName
string
Attachments
Array<CustomActionAttachment>
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CustomActionArnstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Chatbot::CustomAction

Resources:
  MyResource:
    Type: AWS::Chatbot::CustomAction
    Properties:
      ActionName: "my-actionname"
      Definition: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

chatbot:CreateCustomActionchatbot:GetCustomActionchatbot:TagResourcechatbot:ListTagsForResource

read

chatbot:GetCustomActionchatbot:ListTagsForResource

update

chatbot:UpdateCustomActionchatbot:GetCustomActionchatbot:TagResourcechatbot:UntagResourcechatbot:ListTagsForResource

delete

chatbot:DeleteCustomAction

list

chatbot:ListCustomActions

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceChatbot
Properties6
Required2
TaggingSupported
Primary IDCustomActionArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ActionName

External Links