Package Information
Downloads: 824 weekly / 824 monthly
Latest Version: 1.2.0
Author: Everton Mimura
Available Nodes
Documentation
n8n-nodes-aws-iam-identity-center
AWS IAM Identity Center node for n8n workflow automation platform.
Features
- List Users: Get all users from Identity Store
- Get User: Find user by User ID or Username
Installation
From npm
npm install n8n-nodes-aws-iam-identity-center
For Testing Locally
- Clone this repository
- Install dependencies:
npm install - Link locally:
npm link - In your n8n installation:
npm link n8n-nodes-aws-iam-identity-center
Configuration
You'll need:
- AWS Access Key ID
- AWS Secret Access Key
- AWS Region (e.g., us-east-1)
- Identity Store ID (from IAM Identity Center console)
Usage
- Add credentials in n8n
- Use the node in your workflows
- Select the operation you want to perform
- Configure the parameters
Operations
List Users
- Lists all users in the Identity Store
- Optional filtering and pagination
- Returns array of user objects
Get User
- Search by User ID or Username
- Returns detailed user information
- User ID: Direct lookup by unique identifier
- Username: Search by username in Identity Store
Important Limitations
⚠️ Note: AWS IAM Identity Center API only supports read operations. User modification operations (update, disable, enable) are not supported via API and must be done through the AWS console.
Example Usage
// List all users
const users = await node.execute('listUsers');
// Get user by username
const user = await node.execute('getUser', {
searchBy: 'username',
username: 'john.doe'
});
// Get user by ID
const user = await node.execute('getUser', {
searchBy: 'userId',
userId: 'a1b2c3d4-5678-90ab-cdef-EXAMPLE11111'
});
License
MIT
Author
Everton Mimura emimura@gmail.com