Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Aws/IAM/helpers/constants.ts
Stanimira Rikova ab1047ebde feat(AWS IAM Node): Add new AWS IAM Node (#11963)
Co-authored-by: Adina Totorean <adinatotorean99@gmail.com>
2025-05-15 11:59:19 +01:00

16 lines
613 B
TypeScript

export const CURRENT_VERSION = '2010-05-08';
export const BASE_URL = 'https://iam.amazonaws.com';
export const ERROR_DESCRIPTIONS = {
EntityAlreadyExists: {
User: 'The given user name already exists - try entering a unique name for the user.',
Group: 'The given group name already exists - try entering a unique name for the group.',
},
NoSuchEntity: {
User: 'The given user was not found - try entering a different user.',
Group: 'The given group was not found - try entering a different group.',
},
DeleteConflict: {
Default: 'Cannot delete entity, please remove users from group first.',
},
};