/** * AWS SES Node - Version 1 * Discriminator: resource=template, operation=getAll */ interface Credentials { aws: CredentialReference; awsAssumeRole: CredentialReference; } /** Get many of the existing custom verification email templates for your account */ export type AwsSesV1TemplateGetAllParams = { resource: 'template'; operation: 'getAll'; authentication?: 'iam' | 'assumeRole' | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 20 */ limit?: number | Expression; }; export type AwsSesV1TemplateGetAllNode = { type: 'n8n-nodes-base.awsSes'; version: 1; credentials?: Credentials; config: NodeConfig; };