mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
feat(AWS IAM Node): Add new AWS IAM Node (#11963)
Co-authored-by: Adina Totorean <adinatotorean99@gmail.com>
This commit is contained in:
15
packages/nodes-base/nodes/Aws/IAM/helpers/constants.ts
Normal file
15
packages/nodes-base/nodes/Aws/IAM/helpers/constants.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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.',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user