AWS Fundamentals Logo
AWS Fundamentals
AWS::CustomerProfiles::EventTrigger

CustomerProfiles EventTrigger

An event trigger resource of Amazon Connect Customer Profiles

Properties

8 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
DomainName
string
RequiredCreate-only
EventTriggerConditions
array
Required
EventTriggerName
string
RequiredCreate-only
ObjectTypeName
string
Required
Description
string
EventTriggerLimits
EventTriggerLimits
SegmentFilter
string
Tags
array

Return Values

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

AttributeTypeDescription
CreatedAtstringThe timestamp of when the event trigger was created.
LastUpdatedAtstringThe timestamp of when the event trigger was most recently updated.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::CustomerProfiles::EventTrigger

Resources:
  MyResource:
    Type: AWS::CustomerProfiles::EventTrigger
    Properties:
      DomainName: "my-domainname"
      EventTriggerName: "my-eventtriggername"
      ObjectTypeName: "my-objecttypename"
      EventTriggerConditions: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

profile:CreateEventTriggerprofile:TagResource

read

profile:GetEventTrigger

update

profile:GetEventTriggerprofile:UpdateEventTriggerprofile:UntagResourceprofile:TagResource

delete

profile:DeleteEventTrigger

list

profile:ListEventTriggers

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

ServiceCustomerProfiles
Properties10
Required4
TaggingSupported
Primary IDDomainName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

DomainNameEventTriggerName

External Links