/** * AWS SES Node - Version 1 * Discriminator: resource=customVerificationEmail, operation=get */ interface Credentials { aws: CredentialReference; awsAssumeRole: CredentialReference; } /** Get the custom email verification template */ export type AwsSesV1CustomVerificationEmailGetParams = { resource: 'customVerificationEmail'; operation: 'get'; authentication?: 'iam' | 'assumeRole' | Expression; /** * The name of the custom verification email template */ templateName?: string | Expression | PlaceholderValue; }; export type AwsSesV1CustomVerificationEmailGetNode = { type: 'n8n-nodes-base.awsSes'; version: 1; credentials?: Credentials; config: NodeConfig; };