![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
aws-iam-data
Advanced tools
Provides AWS IAM data gathered from the official AWS IAM docs as a convenient npm package that can be used in other OSS projects.
This repository provides AWS IAM data gathered from the official AWS IAM docs as a convenient npm package (aws-iam-data), that can be used in other OSS projects.
The package also includes the TypeScript interface definitions.
You can install aws-iam-data as a dependecy to your Node/TypeScript project via
npm i --save aws-iam-data
To use it in your own projects, see examples/index.js or the code below:
const { iamData, metadata } = require('aws-iam-data');
// Get overall service count
console.log(`Contains ${metadata.serviceCount} services!`);
// Get EC2 data
const ec2IamData = iamData.filter(service => service.name === 'Amazon EC2')[0];
// Get actions and their access level
const ec2Actions = ec2IamData.actions.map(action => ({ name: action.name, accessLevel: action.accessLevel }));
console.log(JSON.stringify(ec2Actions, null, 2));
// Get EC2 resource types
const ec2ResourceTypes = ec2IamData.resourceTypes.map(action => ({ name: action.name, arnPattern: action.arnPattern }));
console.log(JSON.stringify(ec2ResourceTypes, null, 2));
The CI pipeline will check for AWS IAM docs updates everyday at 4AM, and automatically publish a new patch version if updates are detected.
FAQs
Provides AWS IAM data gathered from the official AWS IAM docs as a convenient npm package that can be used in other OSS projects.
We found that aws-iam-data demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.