UNPKG

@cloud-copilot/iam-collect

Version:

Collect IAM information from AWS Accounts

45 lines 839 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.allServices = void 0; exports.lowerCaseService = lowerCaseService; /** * All Valid AWS Services */ exports.allServices = [ 'apigateway', 'backup', 'dynamodb', 'ec2', 'ecr', 'elasticfilesystem', 'es', 'events', 'glacier', 'glue', 'iam', 'kafka', 'kinesis', 'kms', 'lambda', 'organizations', 'ram', 's3', 's3-object-lambda', '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 */ function lowerCaseService(service) { return service.toLowerCase(); } //# sourceMappingURL=services.js.map