feat(AWS IAM Node): Add new AWS IAM Node (#11963)

Co-authored-by: Adina Totorean <adinatotorean99@gmail.com>
This commit is contained in:
Stanimira Rikova
2025-05-15 13:59:19 +03:00
committed by GitHub
parent 226f1c73ce
commit ab1047ebde
54 changed files with 3972 additions and 0 deletions

View 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.',
},
};