interface EventTriggerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CustomerProfiles.EventTriggerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscustomerprofiles#EventTriggerReference |
Java | software.amazon.awscdk.interfaces.customerprofiles.EventTriggerReference |
Python | aws_cdk.interfaces.aws_customerprofiles.EventTriggerReference |
TypeScript | aws-cdk-lib » interfaces » aws_customerprofiles » EventTriggerReference |
A reference to a EventTrigger resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as interfaces_aws_customerprofiles } from 'aws-cdk-lib/interfaces';
const eventTriggerReference: interfaces_aws_customerprofiles.EventTriggerReference = {
domainName: 'domainName',
eventTriggerName: 'eventTriggerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainName of the EventTrigger resource. |
| event | string | The EventTriggerName of the EventTrigger resource. |
domainName
Type:
string
The DomainName of the EventTrigger resource.
eventTriggerName
Type:
string
The EventTriggerName of the EventTrigger resource.

.NET
Go
Java
Python
TypeScript