{"id":13541764,"url":"https://github.com/salesforce/aws-allowlister","last_synced_at":"2025-04-05T05:03:46.767Z","repository":{"id":43472623,"uuid":"331116098","full_name":"salesforce/aws-allowlister","owner":"salesforce","description":"Automatically compile an AWS Service Control Policy that ONLY allows AWS services that are compliant with your preferred compliance frameworks.","archived":false,"fork":false,"pushed_at":"2023-08-11T20:00:08.000Z","size":6955,"stargazers_count":225,"open_issues_count":9,"forks_count":34,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-03-29T04:05:25.802Z","etag":null,"topics":["aws","cloud","cloud-security","compliance","iam","salesforce","security"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/salesforce.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null}},"created_at":"2021-01-19T21:36:47.000Z","updated_at":"2024-12-30T14:25:03.000Z","dependencies_parsed_at":"2023-09-24T16:57:57.422Z","dependency_job_id":null,"html_url":"https://github.com/salesforce/aws-allowlister","commit_stats":{"total_commits":235,"total_committers":18,"mean_commits":"13.055555555555555","dds":0.6425531914893616,"last_synced_commit":"8648967a45d5f565aace25ce8884372759e74d3c"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salesforce%2Faws-allowlister","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salesforce%2Faws-allowlister/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salesforce%2Faws-allowlister/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salesforce%2Faws-allowlister/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salesforce","download_url":"https://codeload.github.com/salesforce/aws-allowlister/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247289409,"owners_count":20914464,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","cloud","cloud-security","compliance","iam","salesforce","security"],"created_at":"2024-08-01T10:00:56.687Z","updated_at":"2025-04-05T05:03:46.743Z","avatar_url":"https://github.com/salesforce.png","language":"Python","funding_links":[],"categories":["Projects","Python","SaaS"],"sub_categories":["Identity and Access Management"],"readme":"# aws-allowlister\n\n![Continuous Integration Tests](https://github.com/salesforce/aws-allowlister/workflows/continuous-integration/badge.svg)\n[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/kmcquade3.svg?style=social\u0026label=Follow%20the%20author)](https://twitter.com/kmcquade3)\n[![Downloads](https://pepy.tech/badge/aws-allowlister)](https://pepy.tech/project/aws-allowlister)\n\nAutomatically compile an AWS Service Control Policy that ONLY allows AWS services that are compliant with your preferred compliance frameworks.\n\n![](./examples/media/aws-allowlister.gif)\n\n## Overview\n\nAWS Service Control Policies (SCPs) allow you to control which AWS Service APIs are allowed *at the AWS Account level* - so local administrators (not even the account's root user) can perform prohibited actions in a child account.\n\n However, before `aws-allowlister`, it was very difficult and error-prone to create AWS AllowList SCPs - only giving accounts access to the compliant services that they need, and nothing else. Before `aws-allowlister`, the approach for creating an AllowList was:\n1. Create a spreadsheet 🙄  based on the [AWS Services in Scope](https://aws.amazon.com/compliance/services-in-scope/) documentation, which have inconsistent naming and do not list the \"IAM names\"\n2. Create an AllowList.json by hand, based on that spreadsheet\n3. Roll it out to Dev/Stage/Production\n4. Whoever manages that spreadsheet now magically owns the AllowList policy due to ✨tribal knowledge✨ and any updates occur by pinging this person over Slack.\n\n`aws-allowlister` takes care of this process for you. Instead of following the painful process above, just run the following command to generate an AWS SCP policy that meets PCI compliance:\n\n```bash\naws-allowlister generate --pci\n```\n\nThe policies generated by `aws-allowlister` are based off of official AWS [documentation](https://aws.amazon.com/compliance/services-in-scope/) and are automatically kept up to date when new services achieve compliance or accreditation.\n\n\n### Support statuses\n\n`aws-allowlister` currently supports:\n\n| Compliance Framework | Support Status |\n|----------------------|----------------|\n| PCI                  | ✅             |\n| SOC 1, 2, and 3      | ✅             |\n| ISO/IEC              | ✅             |\n| HIPAA BAA            | ✅             |\n| FedRAMP Moderate     | ✅             |\n| FedRAMP High         | ✅             |\n| DOD CC SRG (USA 🇺🇸)  | ✅             |\n| HITRUST              | ✅             |\n| IRAP (Australia 🇦🇺)  | ✅             |\n| C5 (Germany 🇩🇪)      | ⏱ Coming soon |\n| K-ISMS (Japan 🇯🇵)    | ⏱ Coming soon |\n| ENS High (Spain 🇪🇸)  | ⏱ Coming soon |\n\n### Forcibly include/exclude services\n\nIn addition to creating compliance-focused SCPs, `aws-allowlister` supports the ability to include or exclude services (IAM permissions) of your choice using the `--include` or `--exclude` flags. For more details related to policy customization, view the [Arguments](#arguments) section.\n\n## Installation\n\n* Python Pip:\n\n```bash\npip3 install aws-allowlister\n```\n\n* Homebrew:\n\n```bash\nbrew tap salesforce/aws-allowlister https://github.com/salesforce/aws-allowlister\nbrew install aws-allowlister\n```\n\n## Usage\n\n* Generate an AllowList Policy using this command:\n\n```bash\naws-allowlister generate\n```\n\nBy default, it allows policies at the intersection of PCI, HIPAA, SOC, ISO, FedRAMP High, and FedRAMP Moderate.\n\nThe resulting policy will look like this:\n\n\u003cdetails\u003e\n\u003csummary\u003eExample AllowList Policy\u003c/summary\u003e\n\n```json\n{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": {\n        \"Sid\": \"AllowList\",\n        \"Effect\": \"Deny\",\n        \"NotAction\": [\n            \"account:*\",\n            \"acm:*\",\n            \"amplify:*\",\n            \"amplifybackend:*\",\n            \"apigateway:*\",\n            \"application-autoscaling:*\",\n            \"appstream:*\",\n            \"appsync:*\",\n            \"athena:*\",\n            \"autoscaling:*\",\n            \"aws-portal:*\",\n            \"backup:*\",\n            \"batch:*\",\n            \"clouddirectory:*\",\n            \"cloudformation:*\",\n            \"cloudfront:*\",\n            \"cloudhsm:*\",\n            \"cloudtrail:*\",\n            \"cloudwatch:*\",\n            \"codebuild:*\",\n            \"codecommit:*\",\n            \"codedeploy:*\",\n            \"codepipeline:*\",\n            \"cognito-identity:*\",\n            \"cognito-idp:*\",\n            \"comprehend:*\",\n            \"comprehendmedical:*\",\n            \"config:*\",\n            \"connect:*\",\n            \"dataexchange:*\",\n            \"datasync:*\",\n            \"directconnect:*\",\n            \"dms:*\",\n            \"ds:*\",\n            \"dynamodb:*\",\n            \"ebs:*\",\n            \"ec2:*\",\n            \"ecr:*\",\n            \"ecs:*\",\n            \"eks:*\",\n            \"elasticache:*\",\n            \"elasticbeanstalk:*\",\n            \"elasticfilesystem:*\",\n            \"elasticmapreduce:*\",\n            \"es:*\",\n            \"events:*\",\n            \"execute-api:*\",\n            \"firehose:*\",\n            \"fms:*\",\n            \"forecast:*\",\n            \"freertos:*\",\n            \"fsx:*\",\n            \"glacier:*\",\n            \"globalaccelerator:*\",\n            \"glue:*\",\n            \"greengrass:*\",\n            \"guardduty:*\",\n            \"health:*\",\n            \"iam:*\",\n            \"inspector:*\",\n            \"iot:*\",\n            \"iot-device-tester:*\",\n            \"iotdeviceadvisor:*\",\n            \"iotevents:*\",\n            \"iotwireless:*\",\n            \"kafka:*\",\n            \"kinesis:*\",\n            \"kinesisanalytics:*\",\n            \"kinesisvideo:*\",\n            \"kms:*\",\n            \"lambda:*\",\n            \"lex:*\",\n            \"logs:*\",\n            \"macie2:*\",\n            \"mediaconnect:*\",\n            \"mediaconvert:*\",\n            \"medialive:*\",\n            \"mq:*\",\n            \"neptune-db:*\",\n            \"opsworks-cm:*\",\n            \"organizations:*\",\n            \"outposts:*\",\n            \"personalize:*\",\n            \"polly:*\",\n            \"qldb:*\",\n            \"quicksight:*\",\n            \"rds:*\",\n            \"rds-data:*\",\n            \"rds-db:*\",\n            \"redshift:*\",\n            \"rekognition:*\",\n            \"robomaker:*\",\n            \"route53:*\",\n            \"route53domains:*\",\n            \"s3:*\",\n            \"sagemaker:*\",\n            \"secretsmanager:*\",\n            \"securityhub:*\",\n            \"serverlessrepo:*\",\n            \"servicecatalog:*\",\n            \"shield:*\",\n            \"sms:*\",\n            \"sms-voice:*\",\n            \"snowball:*\",\n            \"sns:*\",\n            \"sqs:*\",\n            \"ssm:*\",\n            \"sso:*\",\n            \"sso-directory:*\",\n            \"states:*\",\n            \"storagegateway:*\",\n            \"sts:*\",\n            \"support:*\",\n            \"swf:*\",\n            \"textract:*\",\n            \"transcribe:*\",\n            \"transfer:*\",\n            \"translate:*\",\n            \"waf:*\",\n            \"waf-regional:*\",\n            \"wafv2:*\",\n            \"workdocs:*\",\n            \"worklink:*\",\n            \"workspaces:*\",\n            \"xray:*\"\n        ],\n        \"Resource\": \"*\"\n    }\n}\n```\n\n\u003c/details\u003e\n\n### Markdown Table Output\n\n* You can also specify the `--table` option to output the results in a Markdown Table format, as shown below:\n\n```\naws-allowlister generate --pci --table\n```\n\nThe results will look like this:\n\n\u003cdetails\u003e\n\u003csummary\u003eExample AllowList Policy\u003c/summary\u003e\n\n```\n| Service Prefix          | Service Name                                    |\n|-------------------------|-------------------------------------------------|\n| account                 | AWS Accounts                                    |\n| acm                     | AWS Certificate Manager                         |\n| amplify                 | AWS Amplify                                     |\n| amplifybackend          | AWS Amplify Admin                               |\n| apigateway              | Manage Amazon API Gateway                       |\n| application-autoscaling | Application Auto Scaling                        |\n| appmesh                 | AWS App Mesh                                    |\n| appstream               | Amazon AppStream 2.0                            |\n| appsync                 | AWS AppSync                                     |\n| athena                  | Amazon Athena                                   |\n| autoscaling             | Amazon EC2 Auto Scaling                         |\n| autoscaling-plans       | AWS Auto Scaling                                |\n| aws-portal              | AWS Billing                                     |\n| backup                  | AWS Backup                                      |\n| batch                   | AWS Batch                                       |\n| cassandra               | AWS Managed Apache Cassandra Service            |\n| chatbot                 | AWS Chatbot                                     |\n| clouddirectory          | Amazon Cloud Directory                          |\n| cloudformation          | AWS CloudFormation                              |\n| cloudfront              | Amazon CloudFront                               |\n| cloudhsm                | AWS CloudHSM                                    |\n| cloudtrail              | AWS CloudTrail                                  |\n| cloudwatch              | Amazon CloudWatch                               |\n| codebuild               | AWS CodeBuild                                   |\n| codecommit              | AWS CodeCommit                                  |\n| codedeploy              | AWS CodeDeploy                                  |\n| codepipeline            | AWS CodePipeline                                |\n| cognito-identity        | Amazon Cognito Identity                         |\n| cognito-idp             | Amazon Cognito User Pools                       |\n| cognito-sync            | Amazon Cognito Sync                             |\n| comprehend              | Amazon Comprehend                               |\n| comprehendmedical       | Comprehend Medical                              |\n| config                  | AWS Config                                      |\n| connect                 | Amazon Connect                                  |\n| databrew                | AWS Glue DataBrew                               |\n| dataexchange            | AWS Data Exchange                               |\n| datasync                | DataSync                                        |\n| directconnect           | AWS Direct Connect                              |\n| dms                     | AWS Database Migration Service                  |\n| ds                      | AWS Directory Service                           |\n| dynamodb                | Amazon DynamoDB                                 |\n| ebs                     | Amazon Elastic Block Store                      |\n| ec2                     | Amazon EC2                                      |\n| ec2messages             | Amazon Message Delivery Service                 |\n| ecr                     | Amazon Elastic Container Registry               |\n| ecs                     | Amazon Elastic Container Service                |\n| eks                     | Amazon Elastic Container Service for Kubernetes |\n| elasticache             | Amazon ElastiCache                              |\n| elasticbeanstalk        | AWS Elastic Beanstalk                           |\n| elasticfilesystem       | Amazon Elastic File System                      |\n| elasticloadbalancing    | Elastic Load Balancing V2                       |\n| elasticmapreduce        | Amazon Elastic MapReduce                        |\n| es                      | Amazon Elasticsearch Service                    |\n| events                  | Amazon EventBridge                              |\n| execute-api             | Amazon API Gateway                              |\n| firehose                | Amazon Kinesis Firehose                         |\n| fms                     | AWS Firewall Manager                            |\n| forecast                | Amazon Forecast                                 |\n| freertos                | Amazon FreeRTOS                                 |\n| fsx                     | Amazon FSx                                      |\n| glacier                 | Amazon Glacier                                  |\n| globalaccelerator       | AWS Global Accelerator                          |\n| glue                    | AWS Glue                                        |\n| greengrass              | AWS IoT Greengrass                              |\n| groundstation           | AWS Ground Station                              |\n| guardduty               | Amazon GuardDuty                                |\n| health                  | AWS Health APIs and Notifications               |\n| iam                     | Identity And Access Management                  |\n| importexport            | AWS Import Export Disk Service                  |\n| inspector               | Amazon Inspector                                |\n| iot                     | AWS IoT                                         |\n| iot-device-tester       | AWS IoT Device Tester                           |\n| iotdeviceadvisor        | AWS IoT Core Device Advisor                     |\n| iotevents               | AWS IoT Events                                  |\n| iotwireless             | AWS IoT Core for LoRaWAN                        |\n| kendra                  | Amazon Kendra                                   |\n| kinesis                 | Amazon Kinesis                                  |\n| kinesisanalytics        | Amazon Kinesis Analytics V2                     |\n| kinesisvideo            | Amazon Kinesis Video Streams                    |\n| kms                     | AWS Key Management Service                      |\n| lakeformation           | AWS Lake Formation                              |\n| lambda                  | AWS Lambda                                      |\n| lex                     | Amazon Lex                                      |\n| license-manager         | AWS License Manager                             |\n| logs                    | Amazon CloudWatch Logs                          |\n| macie                   | Amazon Macie Classic                            |\n| macie2                  | Amazon Macie                                    |\n| mediaconnect            | AWS Elemental MediaConnect                      |\n| mediaconvert            | AWS Elemental MediaConvert                      |\n| medialive               | AWS Elemental MediaLive                         |\n| mobiletargeting         | Amazon Pinpoint                                 |\n| mq                      | Amazon MQ                                       |\n| neptune-db              | Amazon Neptune                                  |\n| opsworks                | AWS OpsWorks                                    |\n| opsworks-cm             | AWS OpsWorks Configuration Management           |\n| organizations           | AWS Organizations                               |\n| outposts                | AWS Outposts                                    |\n| personalize             | Amazon Personalize                              |\n| polly                   | Amazon Polly                                    |\n| qldb                    | Amazon QLDB                                     |\n| quicksight              | Amazon QuickSight                               |\n| rds                     | Amazon RDS                                      |\n| rds-data                | Amazon RDS Data API                             |\n| rds-db                  | Amazon RDS IAM Authentication                   |\n| redshift                | Amazon Redshift                                 |\n| rekognition             | Amazon Rekognition                              |\n| resource-groups         | AWS Resource Groups                             |\n| robomaker               | AWS RoboMaker                                   |\n| route53                 | Amazon Route 53                                 |\n| route53domains          | Amazon Route53 Domains                          |\n| s3                      | Amazon S3                                       |\n| sagemaker               | Amazon SageMaker                                |\n| sdb                     | Amazon SimpleDB                                 |\n| secretsmanager          | AWS Secrets Manager                             |\n| securityhub             | AWS Security Hub                                |\n| serverlessrepo          | AWS Serverless Application Repository           |\n| servicecatalog          | AWS Service Catalog                             |\n| servicediscovery        | AWS Cloud Map                                   |\n| shield                  | AWS Shield                                      |\n| sms                     | AWS Server Migration Service                    |\n| sms-voice               | Amazon Pinpoint SMS and Voice Service           |\n| snowball                | AWS Snowball                                    |\n| sns                     | Amazon SNS                                      |\n| sqs                     | Amazon SQS                                      |\n| ssm                     | AWS Systems Manager                             |\n| ssmmessages             | Amazon Session Manager Message Gateway Service  |\n| states                  | AWS Step Functions                              |\n| storagegateway          | Amazon Storage Gateway                          |\n| sts                     | AWS Security Token Service                      |\n| support                 | AWS Support                                     |\n| swf                     | Amazon Simple Workflow Service                  |\n| textract                | Amazon Textract                                 |\n| timestream              | AWS Timestream                                  |\n| transcribe              | Amazon Transcribe                               |\n| transfer                | AWS Transfer for SFTP                           |\n| translate               | Amazon Translate                                |\n| trustedadvisor          | AWS Trusted Advisor                             |\n| waf                     | AWS WAF                                         |\n| waf-regional            | AWS WAF Regional                                |\n| wafv2                   | AWS WAF V2                                      |\n| workdocs                | Amazon WorkDocs                                 |\n| worklink                | Amazon WorkLink                                 |\n| workspaces              | Amazon WorkSpaces                               |\n| xray                    | AWS X-Ray                                       |\n```\n\n\u003c/details\u003e\n\n### Markdown Table of Excluded Services\n\n* Let's say you want to know which services are **excluded**, not just the ones that are **included**. In this case, you can specify the `--excluded-table` option to output the list of services that are not allowed.\n\n```\naws-allowlister generate --pci --excluded-table\n```\n\nThe results will look like this:\n\n\n\u003cdetails\u003e\n\u003csummary\u003eExample AllowList Policy\u003c/summary\u003e\n\n```\n| Service Prefix                | Service Name                                                                                                                                                                           |\n|-------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| a4b                           | [Alexa for Business](https://docs.aws.amazon.com/service-authorization/latest/reference/list_alexaforbusiness.html)                                                                    |\n| acm-pca                       | [AWS Certificate Manager Private Certificate Authority](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscertificatemanagerprivatecertificateauthority.html) |\n| activate                      | [AWS Activate](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsactivate.html)                                                                               |\n| airflow                       | [Amazon Managed Workflows for Apache Airflow](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedworkflowsforapacheairflow.html)                     |\n| app-integrations              | [Amazon AppIntegrations](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonappintegrations.html)                                                           |\n| appconfig                     | [AWS AppConfig](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappconfig.html)                                                                             |\n| appflow                       | [Amazon AppFlow](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonappflow.html)                                                                           |\n| applicationinsights           | [CloudWatch Application Insights](https://docs.aws.amazon.com/service-authorization/latest/reference/list_cloudwatchapplicationinsights.html)                                          |\n| appmesh                       | [AWS App Mesh](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappmesh.html)                                                                                |\n| appmesh-preview               | [AWS App Mesh Preview](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappmeshpreview.html)                                                                 |\n| aps                           | [Amazon Managed Service for Prometheus](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedserviceforprometheus.html)                                |\n| arsenal                       | [Application Discovery Arsenal](https://docs.aws.amazon.com/service-authorization/latest/reference/list_applicationdiscoveryarsenal.html)                                              |\n| artifact                      | [AWS Artifact](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsartifact.html)                                                                               |\n| auditmanager                  | [AWS Audit Manager](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsauditmanager.html)                                                                      |\n| aws-marketplace               | [AWS Private Marketplace](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsprivatemarketplace.html)                                                          |\n| aws-marketplace-management    | [AWS Marketplace Management Portal](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmarketplacemanagementportal.html)                                       |\n| awsconnector                  | [AWS Connector Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsconnectorservice.html)                                                              |\n| braket                        | [Amazon Braket](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonbraket.html)                                                                             |\n| budgets                       | [AWS Budget Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsbudgetservice.html)                                                                    |\n| cassandra                     | [AWS Managed Apache Cassandra Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmanagedapachecassandraservice.html)                                  |\n| ce                            | [AWS Cost Explorer Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscostexplorerservice.html)                                                       |\n| chatbot                       | [AWS Chatbot](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awschatbot.html)                                                                                 |\n| chime                         | [Amazon Chime](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonchime.html)                                                                               |\n| cloud9                        | [AWS Cloud9](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloud9.html)                                                                                   |\n| cloudsearch                   | [Amazon CloudSearch](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncloudsearch.html)                                                                   |\n| cloudshell                    | [AWS CloudShell](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudshell.html)                                                                           |\n| codeartifact                  | [AWS CodeArtifact](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodeartifact.html)                                                                       |\n| codeguru                      | [Amazon CodeGuru](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodeguru.html)                                                                         |\n| codeguru-profiler             | [Amazon CodeGuru Profiler](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodeguruprofiler.html)                                                        |\n| codeguru-reviewer             | [Amazon CodeGuru Reviewer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodegurureviewer.html)                                                        |\n| codestar                      | [AWS CodeStar](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodestar.html)                                                                               |\n| codestar-connections          | [AWS CodeStar Connections](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodestarconnections.html)                                                        |\n| codestar-notifications        | [AWS CodeStar Notifications](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodestarnotifications.html)                                                    |\n| compute-optimizer             | [Compute Optimizer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_computeoptimizer.html)                                                                     |\n| cur                           | [AWS Cost and Usage Report](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscostandusagereport.html)                                                        |\n| databrew                      | [AWS Glue DataBrew](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsgluedatabrew.html)                                                                      |\n| datapipeline                  | [Data Pipeline](https://docs.aws.amazon.com/service-authorization/latest/reference/list_datapipeline.html)                                                                             |\n| dax                           | [Amazon DynamoDB Accelerator (DAX)](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondynamodbacceleratordax.html)                                         |\n| dbqms                         | [Database Query Metadata Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_databasequerymetadataservice.html)                                           |\n| deepcomposer                  | [AWS DeepComposer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdeepcomposer.html)                                                                       |\n| deeplens                      | [AWS DeepLens](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdeeplens.html)                                                                               |\n| deepracer                     | [AWS DeepRacer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdeepracer.html)                                                                             |\n| detective                     | [Amazon Detective](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondetective.html)                                                                       |\n| devicefarm                    | [AWS Device Farm](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdevicefarm.html)                                                                          |\n| devops-guru                   | [Amazon DevOps Guru](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondevopsguru.html)                                                                    |\n| discovery                     | [Application Discovery](https://docs.aws.amazon.com/service-authorization/latest/reference/list_applicationdiscovery.html)                                                             |\n| dlm                           | [Amazon Data Lifecycle Manager](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondatalifecyclemanager.html)                                               |\n| ec2-instance-connect          | [Amazon EC2 Instance Connect](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2instanceconnect.html)                                                   |\n| ecr-public                    | [Amazon Elastic Container Registry Public](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticcontainerregistrypublic.html)                          |\n| elastic-inference             | [Amazon Elastic Inference](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticinference.html)                                                        |\n| elastictranscoder             | [Amazon Elastic Transcoder](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelastictranscoder.html)                                                      |\n| elemental-activations         | [Elemental Activations](https://docs.aws.amazon.com/service-authorization/latest/reference/list_elementalactivations.html)                                                             |\n| elemental-appliances-software | [AWS Elemental Appliances and Software](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalappliancesandsoftware.html)                                |\n| elemental-support-cases       | [Elemental Support Cases](https://docs.aws.amazon.com/service-authorization/latest/reference/list_elementalsupportcases.html)                                                          |\n| elemental-support-content     | [Elemental Support Content](https://docs.aws.amazon.com/service-authorization/latest/reference/list_elementalsupportcontent.html)                                                      |\n| emr-containers                | [Amazon EMR on EKS (EMR Containers)](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonemroneksemrcontainers.html)                                         |\n| fis                           | [AWS Fault Injection Simulator](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsfaultinjectionsimulator.html)                                               |\n| frauddetector                 | [Amazon Fraud Detector](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonfrauddetector.html)                                                              |\n| gamelift                      | [Amazon GameLift](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazongamelift.html)                                                                         |\n| geo                           | [Amazon Location](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlocation.html)                                                                         |\n| grafana                       | [Amazon Managed Service for Grafana](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedserviceforgrafana.html)                                      |\n| groundstation                 | [AWS Ground Station](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsgroundstation.html)                                                                    |\n| groundtruthlabeling           | [Amazon GroundTruth Labeling](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazongroundtruthlabeling.html)                                                  |\n| healthlake                    | [Amazon HealthLake](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonhealthlake.html)                                                                     |\n| honeycode                     | [Amazon Honeycode](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonhoneycode.html)                                                                       |\n| identitystore                 | [AWS Identity Store](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsidentitystore.html)                                                                    |\n| imagebuilder                  | [Amazon EC2 Image Builder](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2imagebuilder.html)                                                         |\n| iot1click                     | [AWS IoT 1-Click](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot1-click.html)                                                                          |\n| iotanalytics                  | [AWS IoT Analytics](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotanalytics.html)                                                                      |\n| iotfleethub                   | [Fleet Hub for AWS IoT Device Management](https://docs.aws.amazon.com/service-authorization/latest/reference/list_fleethubforawsiotdevicemanagement.html)                              |\n| iotsitewise                   | [AWS IoT SiteWise](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotsitewise.html)                                                                        |\n| iotthingsgraph                | [AWS IoT Things Graph](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotthingsgraph.html)                                                                 |\n| iq                            | [AWS IQ](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiq.html)                                                                                           |\n| iq-permission                 | [AWS IQ Permissions](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiqpermissions.html)                                                                    |\n| ivs                           | [Amazon Interactive Video Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoninteractivevideoservice.html)                                         |\n| kendra                        | [Amazon Kendra](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonkendra.html)                                                                             |\n| launchwizard                  | [Launch Wizard](https://docs.aws.amazon.com/service-authorization/latest/reference/list_launchwizard.html)                                                                             |\n| lex                           | [Amazon Lex V2](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlexv2.html)                                                                              |\n| license-manager               | [AWS License Manager](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awslicensemanager.html)                                                                  |\n| lightsail                     | [Amazon Lightsail](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlightsail.html)                                                                       |\n| lookoutequipment              | [Amazon Lookout for Equipment](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlookoutforequipment.html)                                                 |\n| lookoutmetrics                | [Amazon Lookout for Metrics](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlookoutformetrics.html)                                                     |\n| lookoutvision                 | [Amazon Lookout for Vision](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlookoutforvision.html)                                                       |\n| machinelearning               | [Amazon Machine Learning](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmachinelearning.html)                                                          |\n| managedblockchain             | [Amazon Managed Blockchain](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedblockchain.html)                                                      |\n| marketplacecommerceanalytics  | [AWS Marketplace Commerce Analytics Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmarketplacecommerceanalyticsservice.html)                      |\n| mechanicalturk                | [Amazon Mechanical Turk](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmechanicalturk.html)                                                            |\n| mediapackage                  | [AWS Elemental MediaPackage](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediapackage.html)                                                    |\n| mediapackage-vod              | [AWS Elemental MediaPackage VOD](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediapackagevod.html)                                             |\n| mediastore                    | [AWS Elemental MediaStore](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediastore.html)                                                        |\n| mediatailor                   | [AWS Elemental MediaTailor](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediatailor.html)                                                      |\n| mgh                           | [AWS Migration Hub](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmigrationhub.html)                                                                      |\n| mobileanalytics               | [Amazon Mobile Analytics](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmobileanalytics.html)                                                          |\n| mobilehub                     | [AWS Mobile Hub](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmobilehub.html)                                                                            |\n| monitron                      | [Amazon Monitron](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmonitron.html)                                                                         |\n| network-firewall              | [AWS Network Firewall](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsnetworkfirewall.html)                                                                |\n| networkmanager                | [Network Manager](https://docs.aws.amazon.com/service-authorization/latest/reference/list_networkmanager.html)                                                                         |\n| panorama                      | [AWS Panorama](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspanorama.html)                                                                               |\n| pi                            | [AWS Performance Insights](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsperformanceinsights.html)                                                        |\n| pricing                       | [AWS Price List](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspricelist.html)                                                                            |\n| profile                       | [Amazon Connect Customer Profiles](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnectcustomerprofiles.html)                                         |\n| proton                        | [AWS Proton](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsproton.html)                                                                                   |\n| purchase-orders               | [AWS Purchase Orders Console](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspurchaseordersconsole.html)                                                   |\n| ram                           | [AWS Resource Access Manager](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsresourceaccessmanager.html)                                                   |\n| redshift-data                 | [Amazon Redshift Data API](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonredshiftdataapi.html)                                                         |\n| resource-explorer             | [AWS Tag Editor](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstageditor.html)                                                                            |\n| resource-groups               | [AWS Resource Groups](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsresourcegroups.html)                                                                  |\n| s3-object-lambda              | [Amazon S3 Object Lambda](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3objectlambda.html)                                                           |\n| s3-outposts                   | [Amazon S3 on Outposts](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3onoutposts.html)                                                               |\n| savingsplans                  | [AWS Savings Plans](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssavingsplans.html)                                                                      |\n| schemas                       | [Amazon EventBridge Schemas](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridgeschemas.html)                                                    |\n| sdb                           | [Amazon SimpleDB](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsimpledb.html)                                                                         |\n| servicediscovery              | [AWS Cloud Map](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudmap.html)                                                                              |\n| servicequotas                 | [Service Quotas](https://docs.aws.amazon.com/service-authorization/latest/reference/list_servicequotas.html)                                                                           |\n| ses                           | [Amazon Simple Email Service v2](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsimpleemailservicev2.html)                                              |\n| signer                        | [AWS Signer](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssigner.html)                                                                                   |\n| sms-voice                     | [Amazon Pinpoint SMS and Voice Service](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonpinpointsmsandvoiceservice.html)                                 |\n| sso                           | [AWS SSO](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssso.html)                                                                                         |\n| sso-directory                 | [AWS SSO Directory](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsssodirectory.html)                                                                      |\n| sumerian                      | [Amazon Sumerian](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsumerian.html)                                                                         |\n| synthetics                    | [Amazon CloudWatch Synthetics](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncloudwatchsynthetics.html)                                                |\n| tag                           | [Amazon Resource Group Tagging API](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonresourcegrouptaggingapi.html)                                        |\n| timestream                    | [AWS Timestream](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstimestream.html)                                                                           |\n| tiros                         | [AWS Tiros](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstiros.html)                                                                                     |\n| trustedadvisor                | [AWS Trusted Advisor](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstrustedadvisor.html)                                                                  |\n| wam                           | [Amazon WorkSpaces Application Manager](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkspacesapplicationmanager.html)                               |\n| wellarchitected               | [AWS Well-Architected Tool](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awswell-architectedtool.html)                                                      |\n| workmail                      | [Amazon WorkMail](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkmail.html)                                                                         |\n| workmailmessageflow           | [Amazon WorkMail Message Flow](https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkmailmessageflow.html)                                                 |\n```\n\n\u003c/details\u003e\n\n### JSON Output\n\n* You can also specify the `--json-list` option to output the results in JSON, as shown below:\n\n```\naws-allowlister generate --pci --json-list\n```\n\nThe results will look like this:\n\n\u003cdetails\u003e\n\u003csummary\u003eExample AllowList JSON list\u003c/summary\u003e\n\n```\n{\n  \"access-analyzer\": {\n    \"service_name\": \"IAM Access Analyzer\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_iamaccessanalyzer.html\"\n  },\n  \"account\": {\n    \"service_name\": \"AWS Accounts\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsaccounts.html\"\n  },\n  \"acm\": {\n    \"service_name\": \"AWS Certificate Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscertificatemanager.html\"\n  },\n  \"amplify\": {\n    \"service_name\": \"AWS Amplify\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsamplify.html\"\n  },\n  \"amplifybackend\": {\n    \"service_name\": \"AWS Amplify Admin\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsamplifyadmin.html\"\n  },\n  \"apigateway\": {\n    \"service_name\": \"Manage Amazon API Gateway\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_manageamazonapigateway.html\"\n  },\n  \"application-autoscaling\": {\n    \"service_name\": \"Application Auto Scaling\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_applicationautoscaling.html\"\n  },\n  \"appmesh\": {\n    \"service_name\": \"AWS App Mesh\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappmesh.html\"\n  },\n  \"appstream\": {\n    \"service_name\": \"Amazon AppStream 2.0\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonappstream2.0.html\"\n  },\n  \"appsync\": {\n    \"service_name\": \"AWS AppSync\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappsync.html\"\n  },\n  \"athena\": {\n    \"service_name\": \"Amazon Athena\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonathena.html\"\n  },\n  \"autoscaling\": {\n    \"service_name\": \"Amazon EC2 Auto Scaling\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2autoscaling.html\"\n  },\n  \"autoscaling-plans\": {\n    \"service_name\": \"AWS Auto Scaling\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsautoscaling.html\"\n  },\n  \"aws-portal\": {\n    \"service_name\": \"AWS Billing\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsbilling.html\"\n  },\n  \"backup\": {\n    \"service_name\": \"AWS Backup\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsbackup.html\"\n  },\n  \"backup-storage\": {\n    \"service_name\": \"AWS Backup storage\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsbackupstorage.html\"\n  },\n  \"batch\": {\n    \"service_name\": \"AWS Batch\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsbatch.html\"\n  },\n  \"cassandra\": {\n    \"service_name\": \"AWS Managed Apache Cassandra Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmanagedapachecassandraservice.html\"\n  },\n  \"chatbot\": {\n    \"service_name\": \"AWS Chatbot\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awschatbot.html\"\n  },\n  \"clouddirectory\": {\n    \"service_name\": \"Amazon Cloud Directory\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonclouddirectory.html\"\n  },\n  \"cloudformation\": {\n    \"service_name\": \"AWS CloudFormation\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudformation.html\"\n  },\n  \"cloudfront\": {\n    \"service_name\": \"Amazon CloudFront\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncloudfront.html\"\n  },\n  \"cloudhsm\": {\n    \"service_name\": \"AWS CloudHSM\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudhsm.html\"\n  },\n  \"cloudtrail\": {\n    \"service_name\": \"AWS CloudTrail\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudtrail.html\"\n  },\n  \"cloudwatch\": {\n    \"service_name\": \"Amazon CloudWatch\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncloudwatch.html\"\n  },\n  \"codebuild\": {\n    \"service_name\": \"AWS CodeBuild\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodebuild.html\"\n  },\n  \"codecommit\": {\n    \"service_name\": \"AWS CodeCommit\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodecommit.html\"\n  },\n  \"codedeploy\": {\n    \"service_name\": \"AWS CodeDeploy\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodedeploy.html\"\n  },\n  \"codepipeline\": {\n    \"service_name\": \"AWS CodePipeline\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodepipeline.html\"\n  },\n  \"cognito-identity\": {\n    \"service_name\": \"Amazon Cognito Identity\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncognitoidentity.html\"\n  },\n  \"cognito-idp\": {\n    \"service_name\": \"Amazon Cognito User Pools\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncognitouserpools.html\"\n  },\n  \"cognito-sync\": {\n    \"service_name\": \"Amazon Cognito Sync\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncognitosync.html\"\n  },\n  \"comprehend\": {\n    \"service_name\": \"Amazon Comprehend\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncomprehend.html\"\n  },\n  \"comprehendmedical\": {\n    \"service_name\": \"Comprehend Medical\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_comprehendmedical.html\"\n  },\n  \"config\": {\n    \"service_name\": \"AWS Config\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsconfig.html\"\n  },\n  \"connect\": {\n    \"service_name\": \"Amazon Connect\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html\"\n  },\n  \"databrew\": {\n    \"service_name\": \"AWS Glue DataBrew\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsgluedatabrew.html\"\n  },\n  \"dataexchange\": {\n    \"service_name\": \"AWS Data Exchange\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdataexchange.html\"\n  },\n  \"datasync\": {\n    \"service_name\": \"DataSync\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_datasync.html\"\n  },\n  \"directconnect\": {\n    \"service_name\": \"AWS Direct Connect\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdirectconnect.html\"\n  },\n  \"dms\": {\n    \"service_name\": \"AWS Database Migration Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdatabasemigrationservice.html\"\n  },\n  \"ds\": {\n    \"service_name\": \"AWS Directory Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdirectoryservice.html\"\n  },\n  \"dynamodb\": {\n    \"service_name\": \"Amazon DynamoDB\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondynamodb.html\"\n  },\n  \"ebs\": {\n    \"service_name\": \"Amazon Elastic Block Store\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticblockstore.html\"\n  },\n  \"ec2\": {\n    \"service_name\": \"Amazon EC2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2.html\"\n  },\n  \"ec2messages\": {\n    \"service_name\": \"Amazon Message Delivery Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmessagedeliveryservice.html\"\n  },\n  \"ecr\": {\n    \"service_name\": \"Amazon Elastic Container Registry\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticcontainerregistry.html\"\n  },\n  \"ecs\": {\n    \"service_name\": \"Amazon Elastic Container Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticcontainerservice.html\"\n  },\n  \"eks\": {\n    \"service_name\": \"Amazon Elastic Kubernetes Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelastickubernetesservice.html\"\n  },\n  \"elasticache\": {\n    \"service_name\": \"Amazon ElastiCache\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticache.html\"\n  },\n  \"elasticbeanstalk\": {\n    \"service_name\": \"AWS Elastic Beanstalk\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselasticbeanstalk.html\"\n  },\n  \"elasticfilesystem\": {\n    \"service_name\": \"Amazon Elastic File System\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticfilesystem.html\"\n  },\n  \"elasticloadbalancing\": {\n    \"service_name\": \"Elastic Load Balancing V2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_elasticloadbalancingv2.html\"\n  },\n  \"elasticmapreduce\": {\n    \"service_name\": \"Amazon Elastic MapReduce\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticmapreduce.html\"\n  },\n  \"es\": {\n    \"service_name\": \"Amazon Elasticsearch Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticsearchservice.html\"\n  },\n  \"events\": {\n    \"service_name\": \"Amazon EventBridge\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridge.html\"\n  },\n  \"execute-api\": {\n    \"service_name\": \"Amazon API Gateway\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonapigateway.html\"\n  },\n  \"firehose\": {\n    \"service_name\": \"Amazon Kinesis Firehose\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonkinesisfirehose.html\"\n  },\n  \"fms\": {\n    \"service_name\": \"AWS Firewall Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsfirewallmanager.html\"\n  },\n  \"forecast\": {\n    \"service_name\": \"Amazon Forecast\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonforecast.html\"\n  },\n  \"freertos\": {\n    \"service_name\": \"Amazon FreeRTOS\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonfreertos.html\"\n  },\n  \"fsx\": {\n    \"service_name\": \"Amazon FSx\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonfsx.html\"\n  },\n  \"glacier\": {\n    \"service_name\": \"Amazon Glacier\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonglacier.html\"\n  },\n  \"globalaccelerator\": {\n    \"service_name\": \"AWS Global Accelerator\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsglobalaccelerator.html\"\n  },\n  \"glue\": {\n    \"service_name\": \"AWS Glue\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsglue.html\"\n  },\n  \"greengrass\": {\n    \"service_name\": \"AWS IoT Greengrass V2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotgreengrassv2.html\"\n  },\n  \"groundstation\": {\n    \"service_name\": \"AWS Ground Station\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsgroundstation.html\"\n  },\n  \"guardduty\": {\n    \"service_name\": \"Amazon GuardDuty\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonguardduty.html\"\n  },\n  \"health\": {\n    \"service_name\": \"AWS Health APIs and Notifications\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awshealthapisandnotifications.html\"\n  },\n  \"iam\": {\n    \"service_name\": \"Identity And Access Management\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_identityandaccessmanagement.html\"\n  },\n  \"importexport\": {\n    \"service_name\": \"AWS Import Export Disk Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsimportexportdiskservice.html\"\n  },\n  \"inspector\": {\n    \"service_name\": \"Amazon Inspector\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoninspector.html\"\n  },\n  \"iot\": {\n    \"service_name\": \"AWS IoT\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html\"\n  },\n  \"iot-device-tester\": {\n    \"service_name\": \"AWS IoT Device Tester\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotdevicetester.html\"\n  },\n  \"iotdeviceadvisor\": {\n    \"service_name\": \"AWS IoT Core Device Advisor\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotcoredeviceadvisor.html\"\n  },\n  \"iotevents\": {\n    \"service_name\": \"AWS IoT Events\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotevents.html\"\n  },\n  \"iotwireless\": {\n    \"service_name\": \"AWS IoT Core for LoRaWAN\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotcoreforlorawan.html\"\n  },\n  \"kafka\": {\n    \"service_name\": \"Amazon Managed Streaming for Kafka\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedstreamingforkafka.html\"\n  },\n  \"kendra\": {\n    \"service_name\": \"Amazon Kendra\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonkendra.html\"\n  },\n  \"kinesis\": {\n    \"service_name\": \"Amazon Kinesis\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonkinesis.html\"\n  },\n  \"kinesisanalytics\": {\n    \"service_name\": \"Amazon Kinesis Analytics V2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonkinesisanalyticsv2.html\"\n  },\n  \"kinesisvideo\": {\n    \"service_name\": \"Amazon Kinesis Video Streams\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonkinesisvideostreams.html\"\n  },\n  \"kms\": {\n    \"service_name\": \"AWS Key Management Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awskeymanagementservice.html\"\n  },\n  \"lakeformation\": {\n    \"service_name\": \"AWS Lake Formation\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awslakeformation.html\"\n  },\n  \"lambda\": {\n    \"service_name\": \"AWS Lambda\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awslambda.html\"\n  },\n  \"lex\": {\n    \"service_name\": \"Amazon Lex V2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlexv2.html\"\n  },\n  \"license-manager\": {\n    \"service_name\": \"AWS License Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awslicensemanager.html\"\n  },\n  \"logs\": {\n    \"service_name\": \"Amazon CloudWatch Logs\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncloudwatchlogs.html\"\n  },\n  \"macie\": {\n    \"service_name\": \"Amazon Macie Classic\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmacieclassic.html\"\n  },\n  \"macie2\": {\n    \"service_name\": \"Amazon Macie\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmacie.html\"\n  },\n  \"mediaconnect\": {\n    \"service_name\": \"AWS Elemental MediaConnect\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediaconnect.html\"\n  },\n  \"mediaconvert\": {\n    \"service_name\": \"AWS Elemental MediaConvert\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediaconvert.html\"\n  },\n  \"medialive\": {\n    \"service_name\": \"AWS Elemental MediaLive\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmedialive.html\"\n  },\n  \"mobiletargeting\": {\n    \"service_name\": \"Amazon Pinpoint\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonpinpoint.html\"\n  },\n  \"mq\": {\n    \"service_name\": \"Amazon MQ\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmq.html\"\n  },\n  \"neptune-db\": {\n    \"service_name\": \"Amazon Neptune\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonneptune.html\"\n  },\n  \"opsworks\": {\n    \"service_name\": \"AWS OpsWorks\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsopsworks.html\"\n  },\n  \"opsworks-cm\": {\n    \"service_name\": \"AWS OpsWorks Configuration Management\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsopsworksconfigurationmanagement.html\"\n  },\n  \"organizations\": {\n    \"service_name\": \"AWS Organizations\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsorganizations.html\"\n  },\n  \"outposts\": {\n    \"service_name\": \"AWS Outposts\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsoutposts.html\"\n  },\n  \"personalize\": {\n    \"service_name\": \"Amazon Personalize\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonpersonalize.html\"\n  },\n  \"polly\": {\n    \"service_name\": \"Amazon Polly\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonpolly.html\"\n  },\n  \"qldb\": {\n    \"service_name\": \"Amazon QLDB\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonqldb.html\"\n  },\n  \"quicksight\": {\n    \"service_name\": \"Amazon QuickSight\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonquicksight.html\"\n  },\n  \"rds\": {\n    \"service_name\": \"Amazon RDS\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonrds.html\"\n  },\n  \"rds-data\": {\n    \"service_name\": \"Amazon RDS Data API\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonrdsdataapi.html\"\n  },\n  \"rds-db\": {\n    \"service_name\": \"Amazon RDS IAM Authentication\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonrdsiamauthentication.html\"\n  },\n  \"redshift\": {\n    \"service_name\": \"Amazon Redshift\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonredshift.html\"\n  },\n  \"rekognition\": {\n    \"service_name\": \"Amazon Rekognition\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonrekognition.html\"\n  },\n  \"resource-groups\": {\n    \"service_name\": \"AWS Resource Groups\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsresourcegroups.html\"\n  },\n  \"robomaker\": {\n    \"service_name\": \"AWS RoboMaker\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsrobomaker.html\"\n  },\n  \"route53\": {\n    \"service_name\": \"Amazon Route 53\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonroute53.html\"\n  },\n  \"route53domains\": {\n    \"service_name\": \"Amazon Route 53 Domains\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonroute53domains.html\"\n  },\n  \"route53resolver\": {\n    \"service_name\": \"Amazon Route 53 Resolver\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonroute53resolver.html\"\n  },\n  \"s3\": {\n    \"service_name\": \"Amazon S3\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3.html\"\n  },\n  \"sagemaker\": {\n    \"service_name\": \"Amazon SageMaker\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsagemaker.html\"\n  },\n  \"sdb\": {\n    \"service_name\": \"Amazon SimpleDB\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsimpledb.html\"\n  },\n  \"secretsmanager\": {\n    \"service_name\": \"AWS Secrets Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssecretsmanager.html\"\n  },\n  \"securityhub\": {\n    \"service_name\": \"AWS Security Hub\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssecurityhub.html\"\n  },\n  \"serverlessrepo\": {\n    \"service_name\": \"AWS Serverless Application Repository\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsserverlessapplicationrepository.html\"\n  },\n  \"servicecatalog\": {\n    \"service_name\": \"AWS Service Catalog\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsservicecatalog.html\"\n  },\n  \"servicediscovery\": {\n    \"service_name\": \"AWS Cloud Map\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudmap.html\"\n  },\n  \"shield\": {\n    \"service_name\": \"AWS Shield\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsshield.html\"\n  },\n  \"sms\": {\n    \"service_name\": \"AWS Server Migration Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsservermigrationservice.html\"\n  },\n  \"sms-voice\": {\n    \"service_name\": \"Amazon Pinpoint SMS and Voice Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonpinpointsmsandvoiceservice.html\"\n  },\n  \"snowball\": {\n    \"service_name\": \"AWS Snowball\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssnowball.html\"\n  },\n  \"sns\": {\n    \"service_name\": \"Amazon SNS\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsns.html\"\n  },\n  \"sqs\": {\n    \"service_name\": \"Amazon SQS\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsqs.html\"\n  },\n  \"ssm\": {\n    \"service_name\": \"AWS Systems Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssystemsmanager.html\"\n  },\n  \"ssmmessages\": {\n    \"service_name\": \"Amazon Session Manager Message Gateway Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsessionmanagermessagegatewayservice.html\"\n  },\n  \"states\": {\n    \"service_name\": \"AWS Step Functions\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsstepfunctions.html\"\n  },\n  \"storagegateway\": {\n    \"service_name\": \"Amazon Storage Gateway\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonstoragegateway.html\"\n  },\n  \"sts\": {\n    \"service_name\": \"AWS Security Token Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssecuritytokenservice.html\"\n  },\n  \"support\": {\n    \"service_name\": \"AWS Support\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssupport.html\"\n  },\n  \"swf\": {\n    \"service_name\": \"Amazon Simple Workflow Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsimpleworkflowservice.html\"\n  },\n  \"textract\": {\n    \"service_name\": \"Amazon Textract\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazontextract.html\"\n  },\n  \"timestream\": {\n    \"service_name\": \"AWS Timestream\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstimestream.html\"\n  },\n  \"transcribe\": {\n    \"service_name\": \"Amazon Transcribe\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazontranscribe.html\"\n  },\n  \"transfer\": {\n    \"service_name\": \"AWS Transfer for SFTP\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstransferforsftp.html\"\n  },\n  \"translate\": {\n    \"service_name\": \"Amazon Translate\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazontranslate.html\"\n  },\n  \"trustedadvisor\": {\n    \"service_name\": \"AWS Trusted Advisor\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstrustedadvisor.html\"\n  },\n  \"waf\": {\n    \"service_name\": \"AWS WAF\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awswaf.html\"\n  },\n  \"waf-regional\": {\n    \"service_name\": \"AWS WAF Regional\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awswafregional.html\"\n  },\n  \"wafv2\": {\n    \"service_name\": \"AWS WAF V2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awswafv2.html\"\n  },\n  \"workdocs\": {\n    \"service_name\": \"Amazon WorkDocs\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkdocs.html\"\n  },\n  \"worklink\": {\n    \"service_name\": \"Amazon WorkLink\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworklink.html\"\n  },\n  \"workspaces\": {\n    \"service_name\": \"Amazon WorkSpaces\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonworkspaces.html\"\n  },\n  \"xray\": {\n    \"service_name\": \"AWS X-Ray\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsx-ray.html\"\n  }\n}\n```\n\n\u003c/details\u003e\n\n### JSON Output of Excluded Services\n\n* As with the Markdown Table output, you can specify the `--excluded-json-list` option to output the list of excluded services in JSON, as shown below:\n\n```\naws-allowlister generate --pci --excluded-json-list\n```\n\nThe results will look like this:\n\n\u003cdetails\u003e\n\u003csummary\u003eExample AllowList JSON list\u003c/summary\u003e\n\n```\n{\n  \"a4b\": {\n    \"service_name\": \"Alexa for Business\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_alexaforbusiness.html\"\n  },\n  \"acm-pca\": {\n    \"service_name\": \"AWS Certificate Manager Private Certificate Authority\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscertificatemanagerprivatecertificateauthority.html\"\n  },\n  \"activate\": {\n    \"service_name\": \"AWS Activate\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsactivate.html\"\n  },\n  \"airflow\": {\n    \"service_name\": \"Amazon Managed Workflows for Apache Airflow\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedworkflowsforapacheairflow.html\"\n  },\n  \"app-integrations\": {\n    \"service_name\": \"Amazon AppIntegrations\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonappintegrations.html\"\n  },\n  \"appconfig\": {\n    \"service_name\": \"AWS AppConfig\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappconfig.html\"\n  },\n  \"appflow\": {\n    \"service_name\": \"Amazon AppFlow\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonappflow.html\"\n  },\n  \"application-cost-profiler\": {\n    \"service_name\": \"AWS Application Cost Profiler Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsapplicationcostprofilerservice.html\"\n  },\n  \"applicationinsights\": {\n    \"service_name\": \"CloudWatch Application Insights\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_cloudwatchapplicationinsights.html\"\n  },\n  \"appmesh-preview\": {\n    \"service_name\": \"AWS App Mesh Preview\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsappmeshpreview.html\"\n  },\n  \"apprunner\": {\n    \"service_name\": \"AWS App Runner\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsapprunner.html\"\n  },\n  \"aps\": {\n    \"service_name\": \"Amazon Managed Service for Prometheus\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedserviceforprometheus.html\"\n  },\n  \"arsenal\": {\n    \"service_name\": \"Application Discovery Arsenal\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_applicationdiscoveryarsenal.html\"\n  },\n  \"artifact\": {\n    \"service_name\": \"AWS Artifact\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsartifact.html\"\n  },\n  \"auditmanager\": {\n    \"service_name\": \"AWS Audit Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsauditmanager.html\"\n  },\n  \"aws-marketplace\": {\n    \"service_name\": \"AWS Private Marketplace\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsprivatemarketplace.html\"\n  },\n  \"aws-marketplace-management\": {\n    \"service_name\": \"AWS Marketplace Management Portal\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmarketplacemanagementportal.html\"\n  },\n  \"awsconnector\": {\n    \"service_name\": \"AWS Connector Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsconnectorservice.html\"\n  },\n  \"braket\": {\n    \"service_name\": \"Amazon Braket\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonbraket.html\"\n  },\n  \"budgets\": {\n    \"service_name\": \"AWS Budget Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsbudgetservice.html\"\n  },\n  \"ce\": {\n    \"service_name\": \"AWS Cost Explorer Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscostexplorerservice.html\"\n  },\n  \"chime\": {\n    \"service_name\": \"Amazon Chime\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonchime.html\"\n  },\n  \"cloud9\": {\n    \"service_name\": \"AWS Cloud9\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloud9.html\"\n  },\n  \"cloudsearch\": {\n    \"service_name\": \"Amazon CloudSearch\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncloudsearch.html\"\n  },\n  \"cloudshell\": {\n    \"service_name\": \"AWS CloudShell\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscloudshell.html\"\n  },\n  \"codeartifact\": {\n    \"service_name\": \"AWS CodeArtifact\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodeartifact.html\"\n  },\n  \"codeguru\": {\n    \"service_name\": \"Amazon CodeGuru\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodeguru.html\"\n  },\n  \"codeguru-profiler\": {\n    \"service_name\": \"Amazon CodeGuru Profiler\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodeguruprofiler.html\"\n  },\n  \"codeguru-reviewer\": {\n    \"service_name\": \"Amazon CodeGuru Reviewer\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoncodegurureviewer.html\"\n  },\n  \"codestar\": {\n    \"service_name\": \"AWS CodeStar\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodestar.html\"\n  },\n  \"codestar-connections\": {\n    \"service_name\": \"AWS CodeStar Connections\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodestarconnections.html\"\n  },\n  \"codestar-notifications\": {\n    \"service_name\": \"AWS CodeStar Notifications\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscodestarnotifications.html\"\n  },\n  \"compute-optimizer\": {\n    \"service_name\": \"Compute Optimizer\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_computeoptimizer.html\"\n  },\n  \"controltower\": {\n    \"service_name\": \"AWS Control Tower\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscontroltower.html\"\n  },\n  \"cur\": {\n    \"service_name\": \"AWS Cost and Usage Report\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awscostandusagereport.html\"\n  },\n  \"datapipeline\": {\n    \"service_name\": \"Data Pipeline\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_datapipeline.html\"\n  },\n  \"dax\": {\n    \"service_name\": \"Amazon DynamoDB Accelerator (DAX)\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondynamodbacceleratordax.html\"\n  },\n  \"dbqms\": {\n    \"service_name\": \"Database Query Metadata Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_databasequerymetadataservice.html\"\n  },\n  \"deepcomposer\": {\n    \"service_name\": \"AWS DeepComposer\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdeepcomposer.html\"\n  },\n  \"deeplens\": {\n    \"service_name\": \"AWS DeepLens\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdeeplens.html\"\n  },\n  \"deepracer\": {\n    \"service_name\": \"AWS DeepRacer\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdeepracer.html\"\n  },\n  \"detective\": {\n    \"service_name\": \"Amazon Detective\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondetective.html\"\n  },\n  \"devicefarm\": {\n    \"service_name\": \"AWS Device Farm\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsdevicefarm.html\"\n  },\n  \"devops-guru\": {\n    \"service_name\": \"Amazon DevOps Guru\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondevopsguru.html\"\n  },\n  \"discovery\": {\n    \"service_name\": \"Application Discovery\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_applicationdiscovery.html\"\n  },\n  \"dlm\": {\n    \"service_name\": \"Amazon Data Lifecycle Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondatalifecyclemanager.html\"\n  },\n  \"ec2-instance-connect\": {\n    \"service_name\": \"Amazon EC2 Instance Connect\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2instanceconnect.html\"\n  },\n  \"ecr-public\": {\n    \"service_name\": \"Amazon Elastic Container Registry Public\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticcontainerregistrypublic.html\"\n  },\n  \"elastic-inference\": {\n    \"service_name\": \"Amazon Elastic Inference\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelasticinference.html\"\n  },\n  \"elastictranscoder\": {\n    \"service_name\": \"Amazon Elastic Transcoder\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonelastictranscoder.html\"\n  },\n  \"elemental-activations\": {\n    \"service_name\": \"Elemental Activations\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_elementalactivations.html\"\n  },\n  \"elemental-appliances-software\": {\n    \"service_name\": \"AWS Elemental Appliances and Software\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalappliancesandsoftware.html\"\n  },\n  \"elemental-support-cases\": {\n    \"service_name\": \"Elemental Support Cases\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_elementalsupportcases.html\"\n  },\n  \"elemental-support-content\": {\n    \"service_name\": \"Elemental Support Content\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_elementalsupportcontent.html\"\n  },\n  \"emr-containers\": {\n    \"service_name\": \"Amazon EMR on EKS (EMR Containers)\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonemroneksemrcontainers.html\"\n  },\n  \"fis\": {\n    \"service_name\": \"AWS Fault Injection Simulator\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsfaultinjectionsimulator.html\"\n  },\n  \"frauddetector\": {\n    \"service_name\": \"Amazon Fraud Detector\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonfrauddetector.html\"\n  },\n  \"gamelift\": {\n    \"service_name\": \"Amazon GameLift\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazongamelift.html\"\n  },\n  \"geo\": {\n    \"service_name\": \"Amazon Location\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlocation.html\"\n  },\n  \"grafana\": {\n    \"service_name\": \"Amazon Managed Service for Grafana\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedserviceforgrafana.html\"\n  },\n  \"groundtruthlabeling\": {\n    \"service_name\": \"Amazon GroundTruth Labeling\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazongroundtruthlabeling.html\"\n  },\n  \"healthlake\": {\n    \"service_name\": \"Amazon HealthLake\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonhealthlake.html\"\n  },\n  \"honeycode\": {\n    \"service_name\": \"Amazon Honeycode\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonhoneycode.html\"\n  },\n  \"identitystore\": {\n    \"service_name\": \"AWS Identity Store\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsidentitystore.html\"\n  },\n  \"imagebuilder\": {\n    \"service_name\": \"Amazon EC2 Image Builder\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2imagebuilder.html\"\n  },\n  \"iot1click\": {\n    \"service_name\": \"AWS IoT 1-Click\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot1-click.html\"\n  },\n  \"iotanalytics\": {\n    \"service_name\": \"AWS IoT Analytics\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotanalytics.html\"\n  },\n  \"iotfleethub\": {\n    \"service_name\": \"Fleet Hub for AWS IoT Device Management\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_fleethubforawsiotdevicemanagement.html\"\n  },\n  \"iotsitewise\": {\n    \"service_name\": \"AWS IoT SiteWise\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotsitewise.html\"\n  },\n  \"iotthingsgraph\": {\n    \"service_name\": \"AWS IoT Things Graph\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiotthingsgraph.html\"\n  },\n  \"iq\": {\n    \"service_name\": \"AWS IQ\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiq.html\"\n  },\n  \"iq-permission\": {\n    \"service_name\": \"AWS IQ Permissions\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiqpermissions.html\"\n  },\n  \"ivs\": {\n    \"service_name\": \"Amazon Interactive Video Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoninteractivevideoservice.html\"\n  },\n  \"kafka-cluster\": {\n    \"service_name\": \"Apache Kafka APIs for Amazon MSK clusters\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_apachekafkaapisforamazonmskclusters.html\"\n  },\n  \"launchwizard\": {\n    \"service_name\": \"Launch Wizard\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_launchwizard.html\"\n  },\n  \"lightsail\": {\n    \"service_name\": \"Amazon Lightsail\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlightsail.html\"\n  },\n  \"lookoutequipment\": {\n    \"service_name\": \"Amazon Lookout for Equipment\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlookoutforequipment.html\"\n  },\n  \"lookoutmetrics\": {\n    \"service_name\": \"Amazon Lookout for Metrics\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlookoutformetrics.html\"\n  },\n  \"lookoutvision\": {\n    \"service_name\": \"Amazon Lookout for Vision\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonlookoutforvision.html\"\n  },\n  \"machinelearning\": {\n    \"service_name\": \"Amazon Machine Learning\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmachinelearning.html\"\n  },\n  \"managedblockchain\": {\n    \"service_name\": \"Amazon Managed Blockchain\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmanagedblockchain.html\"\n  },\n  \"marketplacecommerceanalytics\": {\n    \"service_name\": \"AWS Marketplace Commerce Analytics Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmarketplacecommerceanalyticsservice.html\"\n  },\n  \"mechanicalturk\": {\n    \"service_name\": \"Amazon Mechanical Turk\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmechanicalturk.html\"\n  },\n  \"mediapackage\": {\n    \"service_name\": \"AWS Elemental MediaPackage\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediapackage.html\"\n  },\n  \"mediapackage-vod\": {\n    \"service_name\": \"AWS Elemental MediaPackage VOD\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediapackagevod.html\"\n  },\n  \"mediastore\": {\n    \"service_name\": \"AWS Elemental MediaStore\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediastore.html\"\n  },\n  \"mediatailor\": {\n    \"service_name\": \"AWS Elemental MediaTailor\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awselementalmediatailor.html\"\n  },\n  \"mgh\": {\n    \"service_name\": \"AWS Migration Hub\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmigrationhub.html\"\n  },\n  \"mgn\": {\n    \"service_name\": \"AWS Application Migration Service\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsapplicationmigrationservice.html\"\n  },\n  \"mobileanalytics\": {\n    \"service_name\": \"Amazon Mobile Analytics\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmobileanalytics.html\"\n  },\n  \"mobilehub\": {\n    \"service_name\": \"AWS Mobile Hub\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsmobilehub.html\"\n  },\n  \"monitron\": {\n    \"service_name\": \"Amazon Monitron\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonmonitron.html\"\n  },\n  \"network-firewall\": {\n    \"service_name\": \"AWS Network Firewall\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsnetworkfirewall.html\"\n  },\n  \"networkmanager\": {\n    \"service_name\": \"Network Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_networkmanager.html\"\n  },\n  \"nimble\": {\n    \"service_name\": \"Amazon Nimble Studio\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonnimblestudio.html\"\n  },\n  \"panorama\": {\n    \"service_name\": \"AWS Panorama\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspanorama.html\"\n  },\n  \"pi\": {\n    \"service_name\": \"AWS Performance Insights\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsperformanceinsights.html\"\n  },\n  \"pricing\": {\n    \"service_name\": \"AWS Price List\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspricelist.html\"\n  },\n  \"profile\": {\n    \"service_name\": \"Amazon Connect Customer Profiles\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnectcustomerprofiles.html\"\n  },\n  \"proton\": {\n    \"service_name\": \"AWS Proton\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsproton.html\"\n  },\n  \"purchase-orders\": {\n    \"service_name\": \"AWS Purchase Orders Console\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspurchaseordersconsole.html\"\n  },\n  \"ram\": {\n    \"service_name\": \"AWS Resource Access Manager\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsresourceaccessmanager.html\"\n  },\n  \"redshift-data\": {\n    \"service_name\": \"Amazon Redshift Data API\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonredshiftdataapi.html\"\n  },\n  \"resource-explorer\": {\n    \"service_name\": \"AWS Tag Editor\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awstageditor.html\"\n  },\n  \"s3-object-lambda\": {\n    \"service_name\": \"Amazon S3 Object Lambda\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3objectlambda.html\"\n  },\n  \"s3-outposts\": {\n    \"service_name\": \"Amazon S3 on Outposts\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3onoutposts.html\"\n  },\n  \"savingsplans\": {\n    \"service_name\": \"AWS Savings Plans\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssavingsplans.html\"\n  },\n  \"schemas\": {\n    \"service_name\": \"Amazon EventBridge Schemas\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridgeschemas.html\"\n  },\n  \"servicequotas\": {\n    \"service_name\": \"Service Quotas\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_servicequotas.html\"\n  },\n  \"ses\": {\n    \"service_name\": \"Amazon Simple Email Service v2\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonsimpleemailservicev2.html\"\n  },\n  \"signer\": {\n    \"service_name\": \"AWS Signer\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/service-authorization/latest/reference/list_awssigner.html\"\n  },\n  \"ssm-contacts\": {\n    \"service_name\": \"AWS Systems Manager Incident Manager Contacts\",\n    \"service_authorization_url\": \"https://docs.aws.amazon.com/servi","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalesforce%2Faws-allowlister","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalesforce%2Faws-allowlister","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalesforce%2Faws-allowlister/lists"}