UNPKG

@cloud-copilot/iam-collect

Version:

Collect IAM information from AWS Accounts

36 lines 623 B
/** * All Valid AWS Services */ export const allServices = [ 'apigateway', 'backup', 'dynamodb', 'ec2', 'ecr', 'elasticfilesystem', 'glacier', 'glue', 'iam', 'kms', 'lambda', 'organizations', 'ram', 's3', 's3express', 's3outposts', 's3tables', 'secretsmanager', 'sns', 'sqs', 'sso' ]; /** * Convert a service name to lowercase. * * @param service The service name to convert * @returns The lowercase service name */ export function lowerCaseService(service) { return service.toLowerCase(); } //# sourceMappingURL=services.js.map