Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Boto3 service quota's api list_services doesn't return all the service codes #4298

Closed
1 task
TejasRGitHub opened this issue Oct 11, 2024 · 5 comments
Closed
1 task
Assignees
Labels
bug This issue is a confirmed bug. closed-for-staleness iam p3 This is a minor priority issue response-requested Waiting on additional information or feedback.

Comments

@TejasRGitHub
Copy link

Describe the bug

I am trying to do this, but I am unable to list service quote code for 'AWS Identity and Access Management (IAM)'

Here's my code
I am using boto3 = 1.34.119

    service_quota_client = boto3.client('service-quotas')
    paginator = service_quota_client.get_paginator('list_services')
    response = service_quota_client.list_services(MaxResults=100)
    services = []
    services.append(response['Services'])
    while response.get('NextToken'):
        response = service_quota_client.list_services(NextToken=response.get('NextToken'), MaxResults=100)
        services.append(response['Services'])

Regression Issue

  • Select this option if this issue appears to be a regression.

Expected Behavior

I should be able to get the JSON of service quota code for 'AWS Identity and Access Management (IAM)' .

Current Behavior

API doesn't list the service quota code for 'AWS Identity and Access Management (IAM)' .

Reproduction Steps

As decribed in the description

Possible Solution

No response

Additional Information/Context

No response

SDK version used

1.34.119

Environment details (OS name and version, etc.)

mac

@TejasRGitHub TejasRGitHub added bug This issue is a confirmed bug. needs-triage This issue or PR still needs to be triaged. labels Oct 11, 2024
@adev-code adev-code self-assigned this Oct 11, 2024
@adev-code adev-code added investigating This issue is being investigated and/or work is in progress to resolve the issue. p3 This is a minor priority issue iam and removed needs-triage This issue or PR still needs to be triaged. labels Oct 11, 2024
@adev-code
Copy link

Hello @TejasRGitHub, thanks for reaching out. I used the code that you have provided and I was able to get the IAM service quota code. The output from my side was: "Service Code: iam, Service Name: AWS Identity and Access Management (IAM)". For a further look, could you please provide the full output from your code, full code and also by providing debug logs by adding " boto3.set_stream_logger('') " to your line of code ? Thanks.

@adev-code adev-code added response-requested Waiting on additional information or feedback. and removed investigating This issue is being investigated and/or work is in progress to resolve the issue. labels Oct 11, 2024
@TejasRGitHub
Copy link
Author

Code

import boto3

def check_service_quota():
    service_quota_client = boto3.client('service-quotas')
    paginator = service_quota_client.get_paginator('list_services')
    response = service_quota_client.list_services(MaxResults=100)
    services = []
    services.append(response['Services'])
    while response.get('NextToken'):
        response = service_quota_client.list_services(NextToken=response.get('NextToken'), MaxResults=100)
        services.append(response['Services'])
    # for page in paginator.paginate():
    #     services.extend(page.get('Services'))
    print(services)
    print("At the end now")
    pass

check_service_quota()

Logs :

2024-10-14 09:39:50,625 botocore.hooks [DEBUG] Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
2024-10-14 09:39:50,626 botocore.hooks [DEBUG] Changing event name from before-call.apigateway to before-call.api-gateway
2024-10-14 09:39:50,626 botocore.hooks [DEBUG] Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
2024-10-14 09:39:50,627 botocore.hooks [DEBUG] Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
2024-10-14 09:39:50,627 botocore.hooks [DEBUG] Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
2024-10-14 09:39:50,627 botocore.hooks [DEBUG] Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
2024-10-14 09:39:50,627 botocore.hooks [DEBUG] Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
2024-10-14 09:39:50,628 botocore.hooks [DEBUG] Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
2024-10-14 09:39:50,628 botocore.hooks [DEBUG] Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
2024-10-14 09:39:50,628 botocore.hooks [DEBUG] Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
2024-10-14 09:39:50,628 botocore.hooks [DEBUG] Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
2024-10-14 09:39:50,631 botocore.utils [DEBUG] IMDS ENDPOINT: http://<IP_ADRRESS>/
2024-10-14 09:39:50,636 botocore.credentials [DEBUG] Looking for credentials via: env
2024-10-14 09:39:50,636 botocore.credentials [DEBUG] Looking for credentials via: assume-role
2024-10-14 09:39:50,636 botocore.credentials [DEBUG] Looking for credentials via: assume-role-with-web-identity
2024-10-14 09:39:50,636 botocore.credentials [DEBUG] Looking for credentials via: sso
2024-10-14 09:39:50,636 botocore.credentials [DEBUG] Looking for credentials via: shared-credentials-file
2024-10-14 09:39:50,636 botocore.credentials [INFO] Found credentials in shared credentials file: ~/.aws/credentials
2024-10-14 09:39:50,637 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/endpoints.json
2024-10-14 09:39:50,644 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/sdk-default-configuration.json
2024-10-14 09:39:50,644 botocore.hooks [DEBUG] Event choose-service-name: calling handler <function handle_service_name_alias at 0x102dec280>
2024-10-14 09:39:50,660 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/service-quotas/2019-06-24/service-2.json.gz
2024-10-14 09:39:50,674 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/service-quotas/2019-06-24/endpoint-rule-set-1.json.gz
2024-10-14 09:39:50,674 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/partitions.json
2024-10-14 09:39:50,675 botocore.hooks [DEBUG] Event creating-client-class.service-quotas: calling handler <function add_generate_presigned_url at 0x102d324c0>
2024-10-14 09:39:50,675 botocore.configprovider [DEBUG] Looking for endpoint for service-quotas via: environment_service
2024-10-14 09:39:50,675 botocore.configprovider [DEBUG] Looking for endpoint for service-quotas via: environment_global
2024-10-14 09:39:50,675 botocore.configprovider [DEBUG] Looking for endpoint for service-quotas via: config_service
2024-10-14 09:39:50,675 botocore.configprovider [DEBUG] Looking for endpoint for service-quotas via: config_global
2024-10-14 09:39:50,675 botocore.configprovider [DEBUG] No configured endpoint found.
2024-10-14 09:39:50,676 botocore.endpoint [DEBUG] Setting servicequotas timeout as (60, 60)
2024-10-14 09:39:50,676 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/_retry.json
2024-10-14 09:39:50,676 botocore.client [DEBUG] Registering retry handlers for service: service-quotas
2024-10-14 09:39:50,688 botocore.loaders [DEBUG] Loading JSON file: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/botocore/data/service-quotas/2019-06-24/paginators-1.json
2024-10-14 09:39:50,688 botocore.hooks [DEBUG] Event before-parameter-build.service-quotas.ListServices: calling handler <function generate_idempotent_uuid at 0x102dff790>
2024-10-14 09:39:50,688 botocore.regions [DEBUG] Calling endpoint provider with parameters: {'Region': 'eu-west-1', 'UseDualStack': False, 'UseFIPS': False}
2024-10-14 09:39:50,688 botocore.regions [DEBUG] Endpoint provider result: https://servicequotas.eu-west-1.amazonaws.com
2024-10-14 09:39:50,688 botocore.hooks [DEBUG] Event before-call.service-quotas.ListServices: calling handler <function add_recursion_detection_header at 0x102dff430>
2024-10-14 09:39:50,688 botocore.hooks [DEBUG] Event before-call.service-quotas.ListServices: calling handler <function inject_api_version_header_if_needed at 0x102e05040>
2024-10-14 09:39:50,688 botocore.endpoint [DEBUG] Making request for OperationModel(name=ListServices) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ServiceQuotasV20190624.ListServices', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.34.119 md/Botocore#1.34.119 ua/2.0 os/macos#23.6.0 md/arch#arm64 lang/python#3.9.19 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.119'}, 'body': b'{"MaxResults": 100}', 'url': 'https://servicequotas.eu-west-1.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x103571100>, 'has_streaming_input': False, 'auth_type': None}}
2024-10-14 09:39:50,689 botocore.hooks [DEBUG] Event request-created.service-quotas.ListServices: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x103571070>>
2024-10-14 09:39:50,689 botocore.hooks [DEBUG] Event choose-signer.service-quotas.ListServices: calling handler <function set_operation_specific_signer at 0x102dff670>
2024-10-14 09:39:50,689 botocore.auth [DEBUG] Calculating signature using v4 auth.
2024-10-14 09:39:50,689 botocore.auth [DEBUG] CanonicalRequest:
POST
/

content-type:application/x-amz-json-1.1
host:servicequotas.eu-west-1.amazonaws.com
x-amz-date:20241014T143950Z
x-amz-security-token:<SECURITY_TOKEN>
x-amz-target:ServiceQuotasV20190624.ListServices

content-type;host;x-amz-date;x-amz-security-token;x-amz-target
6982fc32bacb3803e8bc8e1e75df6f480348fd01d4e9c7f5d590a46bdb2efb05
2024-10-14 09:39:50,689 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20241014T143950Z
20241014/eu-west-1/servicequotas/aws4_request
d0e93bd8474f6f71e9ea29307a2b4563a7b813c8c6bc17687abae586f1b402db
2024-10-14 09:39:50,689 botocore.auth [DEBUG] Signature:
abaa07f138c3ac5026f6540c111dd112187dee3741a47b3cc16ccb8de503b336
2024-10-14 09:39:50,689 botocore.hooks [DEBUG] Event request-created.service-quotas.ListServices: calling handler <function add_retry_headers at 0x102e05790>
2024-10-14 09:39:50,689 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://servicequotas.eu-west-1.amazonaws.com/, headers={'X-Amz-Target': b'ServiceQuotasV20190624.ListServices', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.34.119 md/Botocore#1.34.119 ua/2.0 os/macos#23.6.0 md/arch#arm64 lang/python#3.9.19 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.119', 'X-Amz-Date': b'20241014T143950Z', 'X-Amz-Security-Token': b'<SECURITY_TOKEN>', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAYOUCE3OXX5X3HP3E/20241014/eu-west-1/servicequotas/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=abaa07f138c3ac5026f6540c111dd112187dee3741a47b3cc16ccb8de503b336', 'amz-sdk-invocation-id': b'832a9821-2fc7-4bd1-82b7-3c18a00289e8', 'amz-sdk-request': b'attempt=1', 'Content-Length': '19'}>
2024-10-14 09:39:50,689 botocore.httpsession [DEBUG] Certificate path: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/certifi/cacert.pem
2024-10-14 09:39:50,689 urllib3.connectionpool [DEBUG] Starting new HTTPS connection (1): servicequotas.eu-west-1.amazonaws.com:443
2024-10-14 09:39:51,712 urllib3.connectionpool [DEBUG] https://servicequotas.eu-west-1.amazonaws.com:443 "POST / HTTP/1.1" 200 7335
2024-10-14 09:39:51,713 botocore.parsers [DEBUG] Response headers: {'Date': 'Mon, 14 Oct 2024 14:39:51 GMT', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '7335', 'Connection': 'keep-alive', 'x-amzn-RequestId': 'db033e80-c169-4155-abf1-dd19bde0770e'}
2024-10-14 09:39:51,713 botocore.parsers [DEBUG] Response body:
b'{"NextToken":"UFQCQUFBQUFBRUNBZ0I0c2ZrdEM1bjlpWVA1RXFvMzNRNkgrNFBzTlQ5Z3QraEhJeGJCN2paL0RFY0JUUm1KekRhYW5tTmZsSFBEMEtIZTZ3QUFBU1V3Z2dFaEJna3Foa2lHOXcwQkJ3YWdnZ0VTTUlJQkRnSUJBRENDQVFjR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTN2bkQ1WlZPU2ZYcGs3TmdBZ0VRZ0lIWmFYR3NNSS9XMGhDY0V1OWg0QjRJd1o2WGMxSHg5QmRuRm9DdE5ZMDFJZTlCTFBsTzU4ckd6UThYSmYrNHgrbTlPWnFBY2dyaklrS3Q2L0lSeEFIc09nK2lJS1Y3VUwybWNhU1VmNW5TbDNiQ2kyeW5tcGdOSmM5dWVUWGdnTlBycUIzOElLV0pWNGZzT01DWGJqT1UrRzlBTWE4OWJPdG5NTHRxcEFoZzRuQXdNTHNFTUI1NGg4SjUzc2FSNXV5aDRrTGVLNzlnYUdQU08wKzkwQi82WGlqcVQ1VnBzSmdOdTRsNUJXMVdVUVRKOGFianhidXFLTWJHdHNreVJEZGhpcmF6MEpMczl6V29xWElxTDk3bUFDMEpTYUtlWlJmK2d3PT0=","Services":[{"ServiceCode":"AWSCloudMap","ServiceName":"AWS Cloud Map"},{"ServiceCode":"access-analyzer","ServiceName":"Access Analyzer"},{"ServiceCode":"acm","ServiceName":"AWS Certificate Manager (ACM)"},{"ServiceCode":"acm-pca","ServiceName":"AWS Private Certificate Authority"},{"ServiceCode":"airflow","ServiceName":"Amazon Managed Workflows for Apache Airflow"},{"ServiceCode":"amplify","ServiceName":"AWS Amplify"},{"ServiceCode":"aoss","ServiceName":"Amazon OpenSearch Serverless"},{"ServiceCode":"apigateway","ServiceName":"Amazon API Gateway"},{"ServiceCode":"appconfig","ServiceName":"AWS AppConfig"},{"ServiceCode":"appfabric","ServiceName":"AWS AppFabric"},{"ServiceCode":"appflow","ServiceName":"Amazon AppFlow"},{"ServiceCode":"application-autoscaling","ServiceName":"Application Auto Scaling"},{"ServiceCode":"application-signals","ServiceName":"Amazon CloudWatch Application Signals"},{"ServiceCode":"appmesh","ServiceName":"AWS App Mesh"},{"ServiceCode":"apprunner","ServiceName":"AWS App Runner"},{"ServiceCode":"appstream2","ServiceName":"Amazon AppStream 2.0"},{"ServiceCode":"appsync","ServiceName":"AWS AppSync"},{"ServiceCode":"aps","ServiceName":"Amazon Managed Prometheus"},{"ServiceCode":"athena","ServiceName":"Amazon Athena"},{"ServiceCode":"auditmanager","ServiceName":"AWS Audit Manager"},{"ServiceCode":"autoscaling","ServiceName":"Amazon EC2 Auto Scaling"},{"ServiceCode":"autoscaling-plans","ServiceName":"AWS Auto Scaling Plans"},{"ServiceCode":"backup","ServiceName":"AWS Backup"},{"ServiceCode":"batch","ServiceName":"AWS Batch"},{"ServiceCode":"bedrock","ServiceName":"Amazon Bedrock"},{"ServiceCode":"cassandra","ServiceName":"Amazon Keyspaces (for Apache Cassandra)"},{"ServiceCode":"chime","ServiceName":"Amazon Chime"},{"ServiceCode":"cleanrooms","ServiceName":"AWS Clean Rooms"},{"ServiceCode":"cleanrooms-ml","ServiceName":"AWS Clean Rooms ML"},{"ServiceCode":"cloud9","ServiceName":"AWS Cloud9"},{"ServiceCode":"cloudformation","ServiceName":"AWS CloudFormation"},{"ServiceCode":"cloudhsm","ServiceName":"AWS CloudHSM"},{"ServiceCode":"cloudshell","ServiceName":"AWS CloudShell"},{"ServiceCode":"cloudtrail","ServiceName":"AWS CloudTrail"},{"ServiceCode":"codeartifact","ServiceName":"AWS CodeArtifact"},{"ServiceCode":"codebuild","ServiceName":"AWS CodeBuild"},{"ServiceCode":"codecatalyst","ServiceName":"Amazon CodeCatalyst"},{"ServiceCode":"codecommit","ServiceName":"AWS CodeCommit"},{"ServiceCode":"codedeploy","ServiceName":"AWS CodeDeploy"},{"ServiceCode":"codeguru-profiler","ServiceName":"Amazon CodeGuru Profiler"},{"ServiceCode":"codeguru-reviewer","ServiceName":"Amazon CodeGuru Reviewer"},{"ServiceCode":"codepipeline","ServiceName":"AWS CodePipeline"},{"ServiceCode":"cognito-identity","ServiceName":"Amazon Cognito Federated Identities"},{"ServiceCode":"cognito-idp","ServiceName":"Amazon Cognito User Pools"},{"ServiceCode":"cognito-sync","ServiceName":"Amazon Cognito Sync"},{"ServiceCode":"comprehend","ServiceName":"Amazon Comprehend"},{"ServiceCode":"comprehendmedical","ServiceName":"Amazon Comprehend Medical"},{"ServiceCode":"config","ServiceName":"AWS Config"},{"ServiceCode":"controltower","ServiceName":"AWS Control Tower"},{"ServiceCode":"databrew","ServiceName":"AWS Glue DataBrew"},{"ServiceCode":"dataexchange","ServiceName":"AWS Data Exchange"},{"ServiceCode":"datapipeline","ServiceName":"AWS Data Pipeline"},{"ServiceCode":"datasync","ServiceName":"AWS DataSync"},{"ServiceCode":"datazone","ServiceName":"Amazon DataZone"},{"ServiceCode":"dax","ServiceName":"Amazon DynamoDB Accelerator (DAX)"},{"ServiceCode":"deadline","ServiceName":"AWS Deadline Cloud"},{"ServiceCode":"discovery","ServiceName":"AWS Application Discovery Service"},{"ServiceCode":"dlm","ServiceName":"Amazon Data Lifecycle Manager"},{"ServiceCode":"dms","ServiceName":"AWS Database Migration Service (AWS DMS)"},{"ServiceCode":"docdb","ServiceName":"Amazon DocumentDB (with MongoDB compatibility)"},{"ServiceCode":"docdb-elastic","ServiceName":"Amazon DocumentDB Elastic Clusters"},{"ServiceCode":"drs","ServiceName":"ElasticDisasterRecovery"},{"ServiceCode":"ds","ServiceName":"AWS Directory Service"},{"ServiceCode":"dynamodb","ServiceName":"Amazon DynamoDB"},{"ServiceCode":"ebs","ServiceName":"Amazon Elastic Block Store (Amazon EBS)"},{"ServiceCode":"ec2","ServiceName":"Amazon Elastic Compute Cloud (Amazon EC2)"},{"ServiceCode":"ec2-ipam","ServiceName":"IPAM"},{"ServiceCode":"ec2fastlaunch","ServiceName":"EC2 Fast Launch"},{"ServiceCode":"ecr","ServiceName":"Amazon Elastic Container Registry (Amazon ECR)"},{"ServiceCode":"ecs","ServiceName":"Amazon Elastic Container Service (Amazon ECS)"},{"ServiceCode":"eks","ServiceName":"Amazon Elastic Kubernetes Service (Amazon EKS)"},{"ServiceCode":"elastic-inference","ServiceName":"Amazon Elastic Inference"},{"ServiceCode":"elasticache","ServiceName":"Amazon ElastiCache"},{"ServiceCode":"elasticbeanstalk","ServiceName":"AWS Elastic Beanstalk"},{"ServiceCode":"elasticfilesystem","ServiceName":"Amazon Elastic File System (EFS)"},{"ServiceCode":"elasticloadbalancing","ServiceName":"Elastic Load Balancing (ELB)"},{"ServiceCode":"elasticmapreduce","ServiceName":"Amazon EMR"},{"ServiceCode":"elastictranscoder","ServiceName":"Amazon Elastic Transcoder"},{"ServiceCode":"emr-serverless","ServiceName":"Amazon EMR Serverless"},{"ServiceCode":"entityresolution","ServiceName":"AWS Entity Resolution"},{"ServiceCode":"es","ServiceName":"Amazon OpenSearch Service"},{"ServiceCode":"events","ServiceName":"Amazon EventBridge (CloudWatch Events)"},{"ServiceCode":"evidently","ServiceName":"Amazon CloudWatch Evidently"},{"ServiceCode":"fargate","ServiceName":"AWS Fargate"},{"ServiceCode":"finspace","ServiceName":"Amazon FinSpace"},{"ServiceCode":"firehose","ServiceName":"Amazon Kinesis Data Firehose"},{"ServiceCode":"fis","ServiceName":"AWS Fault Injection Service (FIS)"},{"ServiceCode":"fms","ServiceName":"AWS Firewall Manager"},{"ServiceCode":"forecast","ServiceName":"Amazon Forecast"},{"ServiceCode":"frauddetector","ServiceName":"Amazon Fraud Detector"},{"ServiceCode":"fsx","ServiceName":"Amazon FSx"},{"ServiceCode":"gamelift","ServiceName":"Amazon GameLift"},{"ServiceCode":"geo","ServiceName":"Amazon Location Service (Amazon Location)"},{"ServiceCode":"glacier","ServiceName":"Amazon Glacier"},{"ServiceCode":"glue","ServiceName":"AWS Glue"},{"ServiceCode":"grafana","ServiceName":"Amazon Managed Grafana"},{"ServiceCode":"greengrass","ServiceName":"AWS IoT Greengrass"},{"ServiceCode":"groundstation","ServiceName":"AWS Ground Station"},{"ServiceCode":"guardduty","ServiceName":"Amazon GuardDuty"},{"ServiceCode":"imagebuilder","ServiceName":"EC2 Image Builder"}]}'
2024-10-14 09:39:51,713 botocore.hooks [DEBUG] Event needs-retry.service-quotas.ListServices: calling handler <botocore.retryhandler.RetryHandler object at 0x1035944f0>
2024-10-14 09:39:51,713 botocore.retryhandler [DEBUG] No retry needed.
2024-10-14 09:39:51,713 botocore.hooks [DEBUG] Event before-parameter-build.service-quotas.ListServices: calling handler <function generate_idempotent_uuid at 0x102dff790>
2024-10-14 09:39:51,713 botocore.regions [DEBUG] Calling endpoint provider with parameters: {'Region': 'eu-west-1', 'UseDualStack': False, 'UseFIPS': False}
2024-10-14 09:39:51,713 botocore.regions [DEBUG] Endpoint provider result: https://servicequotas.eu-west-1.amazonaws.com
2024-10-14 09:39:51,713 botocore.hooks [DEBUG] Event before-call.service-quotas.ListServices: calling handler <function add_recursion_detection_header at 0x102dff430>
2024-10-14 09:39:51,713 botocore.hooks [DEBUG] Event before-call.service-quotas.ListServices: calling handler <function inject_api_version_header_if_needed at 0x102e05040>
2024-10-14 09:39:51,713 botocore.endpoint [DEBUG] Making request for OperationModel(name=ListServices) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ServiceQuotasV20190624.ListServices', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.34.119 md/Botocore#1.34.119 ua/2.0 os/macos#23.6.0 md/arch#arm64 lang/python#3.9.19 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.119'}, 'body': b'{"NextToken": "UFQCQUFBQUFBRUNBZ0I0c2ZrdEM1bjlpWVA1RXFvMzNRNkgrNFBzTlQ5Z3QraEhJeGJCN2paL0RFY0JUUm1KekRhYW5tTmZsSFBEMEtIZTZ3QUFBU1V3Z2dFaEJna3Foa2lHOXcwQkJ3YWdnZ0VTTUlJQkRnSUJBRENDQVFjR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTTN2bkQ1WlZPU2ZYcGs3TmdBZ0VRZ0lIWmFYR3NNSS9XMGhDY0V1OWg0QjRJd1o2WGMxSHg5QmRuRm9DdE5ZMDFJZTlCTFBsTzU4ckd6UThYSmYrNHgrbTlPWnFBY2dyaklrS3Q2L0lSeEFIc09nK2lJS1Y3VUwybWNhU1VmNW5TbDNiQ2kyeW5tcGdOSmM5dWVUWGdnTlBycUIzOElLV0pWNGZzT01DWGJqT1UrRzlBTWE4OWJPdG5NTHRxcEFoZzRuQXdNTHNFTUI1NGg4SjUzc2FSNXV5aDRrTGVLNzlnYUdQU08wKzkwQi82WGlqcVQ1VnBzSmdOdTRsNUJXMVdVUVRKOGFianhidXFLTWJHdHNreVJEZGhpcmF6MEpMczl6V29xWElxTDk3bUFDMEpTYUtlWlJmK2d3PT0=", "MaxResults": 100}', 'url': 'https://servicequotas.eu-west-1.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x103571100>, 'has_streaming_input': False, 'auth_type': None}}
2024-10-14 09:39:51,713 botocore.hooks [DEBUG] Event request-created.service-quotas.ListServices: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x103571070>>
2024-10-14 09:39:51,713 botocore.hooks [DEBUG] Event choose-signer.service-quotas.ListServices: calling handler <function set_operation_specific_signer at 0x102dff670>
2024-10-14 09:39:51,714 botocore.auth [DEBUG] Calculating signature using v4 auth.
2024-10-14 09:39:51,714 botocore.auth [DEBUG] CanonicalRequest:
POST
/

content-type:application/x-amz-json-1.1
host:servicequotas.eu-west-1.amazonaws.com
x-amz-date:20241014T143951Z
x-amz-security-token:<SECURITY_TOKEN>
x-amz-target:ServiceQuotasV20190624.ListServices

content-type;host;x-amz-date;x-amz-security-token;x-amz-target
ba98834fa023d3a2400eb7bc8913db41ae0f1eeb07b04495391fbf0bfe2332b0
2024-10-14 09:39:51,714 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20241014T143951Z
20241014/eu-west-1/servicequotas/aws4_request
6a7ca0258ce47768b3446daa3a7748adb601731399da023620a32c6c444a5b9b
2024-10-14 09:39:51,714 botocore.auth [DEBUG] Signature:
f7c2ca74954c9c92a587ed6d05b21339610a5c59c0c730c8e5e1dea0d3bbc3b4
2024-10-14 09:39:51,714 botocore.hooks [DEBUG] Event request-created.service-quotas.ListServices: calling handler <function add_retry_headers at 0x102e05790>
2024-10-14 09:39:51,714 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://servicequotas.eu-west-1.amazonaws.com/, headers={'X-Amz-Target': b'ServiceQuotasV20190624.ListServices', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.34.119 md/Botocore#1.34.119 ua/2.0 os/macos#23.6.0 md/arch#arm64 lang/python#3.9.19 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.119', 'X-Amz-Date': b'20241014T143951Z', 'X-Amz-Security-Token': b'<SECURITY_TOKEN>', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAYOUCE3OXX5X3HP3E/20241014/eu-west-1/servicequotas/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=f7c2ca74954c9c92a587ed6d05b21339610a5c59c0c730c8e5e1dea0d3bbc3b4', 'amz-sdk-invocation-id': b'a734bdf2-c382-4fa6-8435-28ef1691d563', 'amz-sdk-request': b'attempt=1', 'Content-Length': '676'}>
2024-10-14 09:39:51,714 botocore.httpsession [DEBUG] Certificate path: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/certifi/cacert.pem
2024-10-14 09:39:51,963 urllib3.connectionpool [DEBUG] https://servicequotas.eu-west-1.amazonaws.com:443 "POST / HTTP/1.1" 200 7641
2024-10-14 09:39:51,963 botocore.parsers [DEBUG] Response headers: {'Date': 'Mon, 14 Oct 2024 14:39:51 GMT', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '7641', 'Connection': 'keep-alive', 'x-amzn-RequestId': '993d68ca-aff9-4443-a0f3-bfe5581d1d6c'}
2024-10-14 09:39:51,964 botocore.parsers [DEBUG] Response body:
b'{"NextToken":"UFQCQUFBQUFBRUNBZ0I0c2ZrdEM1bjlpWVA1RXFvMzNRNkgrNFBzTlQ5Z3QraEhJeGJCN2paL0RFY0JWV0FEWnhCaU5BQXduMEJoUVd5Vk9nQUFBU1F3Z2dFZ0Jna3Foa2lHOXcwQkJ3YWdnZ0VSTUlJQkRRSUJBRENDQVFZR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTWhBT0YyZHZsdVkrQTZBMmVBZ0VRZ0lIWXZwZW5KSFRLR3FIQ2R0SjAwSzFieWxXOXQ1amNYbzA3b21yU0laa2xZODhZQTQ1QzFWMytPTWdTSzczTmpwZUdHT0ROWis2MzVXRnJmRDZFVG0yb0dESEx0YlZCbjRuWmNzZ25jWnpTQ1NjQ0ZvTDZZSENBQ3Y3bzl0SkhEbUJCTDlZRFpITEsvMXhBcTkycFdOV2NQd0JScGs0MW5Cb3N1WGhIMHNiV1crVTRYWnptaCsrQU4wMUE1MVV5c1BHM0hsT0JodjlUVGlJb2RDNHU1TTV6NGxyV0hydWJ2ekhzakl6a3FkeUg1bzBSK0hxaWF6ckRHN2dDRndTeGtKTjBiVXljVXQxSkVRb2lMOGlqL1g3a2pQM2tGTUk2VGtHdg==","Services":[{"ServiceCode":"inspector","ServiceName":"Amazon Inspector Classic"},{"ServiceCode":"inspector2","ServiceName":"Amazon Inspector"},{"ServiceCode":"internetmonitor","ServiceName":"CloudWatch Internet Monitor"},{"ServiceCode":"iot","ServiceName":"AWS IoT"},{"ServiceCode":"iot1click","ServiceName":"AWS IoT 1-Click"},{"ServiceCode":"iotanalytics","ServiceName":"AWS IoT Analytics"},{"ServiceCode":"iotcore","ServiceName":"AWS IoT Core"},{"ServiceCode":"iotdeviceadvisor","ServiceName":"AWS IoT Core Device Advisor"},{"ServiceCode":"iotevents","ServiceName":"AWS IoT Events"},{"ServiceCode":"iotsitewise","ServiceName":"AWS IoT SiteWise"},{"ServiceCode":"iotthingsgraph","ServiceName":"AWS IoT Things Graph"},{"ServiceCode":"iottwinmaker","ServiceName":"AWS IoT TwinMaker"},{"ServiceCode":"iotwireless","ServiceName":"AWS IoT Wireless"},{"ServiceCode":"ivs","ServiceName":"Amazon Interactive Video Service"},{"ServiceCode":"ivschat","ServiceName":"Amazon Interactive Video Service Chat"},{"ServiceCode":"kafka","ServiceName":"Amazon Managed Streaming for Kafka (MSK)"},{"ServiceCode":"kafkaconnect","ServiceName":"Managed Streaming for Kafka Connect"},{"ServiceCode":"kendra","ServiceName":"Amazon Kendra"},{"ServiceCode":"kendra-ranking","ServiceName":"Amazon Kendra Intelligent Ranking"},{"ServiceCode":"kinesis","ServiceName":"Amazon Kinesis Data Streams"},{"ServiceCode":"kinesisanalytics","ServiceName":"Amazon Managed Service for Apache Flink"},{"ServiceCode":"kinesisvideo","ServiceName":"Amazon Kinesis Video Streams"},{"ServiceCode":"kms","ServiceName":"AWS Key Management Service (AWS KMS)"},{"ServiceCode":"lakeformation","ServiceName":"AWS Lake Formation"},{"ServiceCode":"lambda","ServiceName":"AWS Lambda"},{"ServiceCode":"launchwizard","ServiceName":"AWS Launch Wizard"},{"ServiceCode":"lex","ServiceName":"Amazon Lex"},{"ServiceCode":"license-manager","ServiceName":"AWS License Manager"},{"ServiceCode":"license-manager-linux-subscriptions","ServiceName":"AWS License Manager Linux Subscriptions"},{"ServiceCode":"license-manager-user-subscriptions","ServiceName":"AWS License Manager User Subscriptions"},{"ServiceCode":"lightsail","ServiceName":"Amazon Lightsail"},{"ServiceCode":"logs","ServiceName":"Amazon CloudWatch Logs"},{"ServiceCode":"lookoutequipment","ServiceName":"Amazon Lookout for Equipment"},{"ServiceCode":"lookoutmetrics","ServiceName":"Amazon Lookout for Metrics"},{"ServiceCode":"lookoutvision","ServiceName":"Amazon Lookout for Vision"},{"ServiceCode":"m2","ServiceName":"AWS Mainframe Modernization"},{"ServiceCode":"machinelearning","ServiceName":"Amazon Machine Learning"},{"ServiceCode":"macie2","ServiceName":"Amazon Macie"},{"ServiceCode":"managedblockchain","ServiceName":"Amazon Managed Blockchain"},{"ServiceCode":"mediaconnect","ServiceName":"AWS Elemental MediaConnect"},{"ServiceCode":"mediaconvert","ServiceName":"AWS Elemental MediaConvert"},{"ServiceCode":"medialive","ServiceName":"AWS Elemental MediaLive"},{"ServiceCode":"mediapackage","ServiceName":"AWS Elemental MediaPackage"},{"ServiceCode":"mediapackagev2","ServiceName":"AWS Elemental MediaPackage v2"},{"ServiceCode":"mediastore","ServiceName":"AWS Elemental MediaStore"},{"ServiceCode":"mediatailor","ServiceName":"AWS Elemental MediaTailor"},{"ServiceCode":"medical-imaging","ServiceName":"AWS Health Imaging"},{"ServiceCode":"mgn","ServiceName":"Application Migration"},{"ServiceCode":"migrationhuborchestrator","ServiceName":"Migration Hub Orchestrator"},{"ServiceCode":"migrationhubstrategy","ServiceName":"Migration Hub Strategy Recommendations"},{"ServiceCode":"monitoring","ServiceName":"Amazon CloudWatch"},{"ServiceCode":"monitron","ServiceName":"Amazon Monitron"},{"ServiceCode":"mq","ServiceName":"Amazon MQ"},{"ServiceCode":"neptune","ServiceName":"Amazon Neptune"},{"ServiceCode":"neptune-graph","ServiceName":"Amazon Neptune Analytics"},{"ServiceCode":"network-firewall","ServiceName":"AWS Network Firewall"},{"ServiceCode":"networkinsights","ServiceName":"Network Insights"},{"ServiceCode":"networkmonitor","ServiceName":"Amazon CloudWatch Network Monitor"},{"ServiceCode":"nimble","ServiceName":"Amazon Nimble Studio"},{"ServiceCode":"oam","ServiceName":"Amazon CloudWatch Observability Access Manager"},{"ServiceCode":"omics","ServiceName":"AWS HealthOmics"},{"ServiceCode":"opsworks","ServiceName":"AWS OpsWorks Stacks"},{"ServiceCode":"opsworks-cm","ServiceName":"AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise"},{"ServiceCode":"outposts","ServiceName":"AWS Outposts"},{"ServiceCode":"panorama","ServiceName":"AWS Panorama"},{"ServiceCode":"payment-cryptography","ServiceName":"AWS Payment Cryptography"},{"ServiceCode":"pca-connector-ad","ServiceName":"Private CA Connector for Active Directory"},{"ServiceCode":"pca-connector-scep","ServiceName":"Private CA Connector for Simple Certificate Enrollment Protocol"},{"ServiceCode":"personalize","ServiceName":"Amazon Personalize"},{"ServiceCode":"pinpoint","ServiceName":"Amazon Pinpoint"},{"ServiceCode":"polly","ServiceName":"Amazon Polly"},{"ServiceCode":"proton","ServiceName":"AWS Proton"},{"ServiceCode":"qldb","ServiceName":"Amazon QLDB"},{"ServiceCode":"quicksight","ServiceName":"Amazon QuickSight"},{"ServiceCode":"ram","ServiceName":"AWS Resource Access Manager"},{"ServiceCode":"rbin","ServiceName":"Amazon Recycle Bin"},{"ServiceCode":"rds","ServiceName":"Amazon Relational Database Service (Amazon RDS)"},{"ServiceCode":"redshift","ServiceName":"Amazon Redshift"},{"ServiceCode":"refactor-spaces","ServiceName":"AWS Migration Hub Refactor Spaces"},{"ServiceCode":"rekognition","ServiceName":"Amazon Rekognition"},{"ServiceCode":"resiliencehub","ServiceName":"AWS Resilience Hub"},{"ServiceCode":"resource-explorer-2","ServiceName":"AWS Resource Explorer"},{"ServiceCode":"resource-groups","ServiceName":"AWS Resource Groups"},{"ServiceCode":"robomaker","ServiceName":"AWS RoboMaker"},{"ServiceCode":"rolesanywhere","ServiceName":"IAM Roles Anywhere"},{"ServiceCode":"route53profiles","ServiceName":"Route 53 Profiles"},{"ServiceCode":"route53resolver","ServiceName":"Route 53 Resolver"},{"ServiceCode":"rum","ServiceName":"Amazon CloudWatch RUM"},{"ServiceCode":"s3","ServiceName":"Amazon Simple Storage Service (Amazon S3)"},{"ServiceCode":"s3-outposts","ServiceName":"AWS S3 Outposts"},{"ServiceCode":"sagemaker","ServiceName":"Amazon SageMaker"},{"ServiceCode":"scheduler","ServiceName":"Amazon EventBridge Scheduler"},{"ServiceCode":"schemas","ServiceName":"Amazon EventBridge Schema Registry"},{"ServiceCode":"scn","ServiceName":"AWS Supply Chain"},{"ServiceCode":"sdb","ServiceName":"Amazon SimpleDB"},{"ServiceCode":"secretsmanager","ServiceName":"AWS Secrets Manager"},{"ServiceCode":"securityhub","ServiceName":"AWS Security Hub"},{"ServiceCode":"serverlessrepo","ServiceName":"AWS Serverless Application Repository"},{"ServiceCode":"servicecatalog","ServiceName":"AWS Service Catalog"},{"ServiceCode":"servicequotas","ServiceName":"Service Quotas"}]}'
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event needs-retry.service-quotas.ListServices: calling handler <botocore.retryhandler.RetryHandler object at 0x1035944f0>
2024-10-14 09:39:51,964 botocore.retryhandler [DEBUG] No retry needed.
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event before-parameter-build.service-quotas.ListServices: calling handler <function generate_idempotent_uuid at 0x102dff790>
2024-10-14 09:39:51,964 botocore.regions [DEBUG] Calling endpoint provider with parameters: {'Region': 'eu-west-1', 'UseDualStack': False, 'UseFIPS': False}
2024-10-14 09:39:51,964 botocore.regions [DEBUG] Endpoint provider result: https://servicequotas.eu-west-1.amazonaws.com
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event before-call.service-quotas.ListServices: calling handler <function add_recursion_detection_header at 0x102dff430>
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event before-call.service-quotas.ListServices: calling handler <function inject_api_version_header_if_needed at 0x102e05040>
2024-10-14 09:39:51,964 botocore.endpoint [DEBUG] Making request for OperationModel(name=ListServices) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'X-Amz-Target': 'ServiceQuotasV20190624.ListServices', 'Content-Type': 'application/x-amz-json-1.1', 'User-Agent': 'Boto3/1.34.119 md/Botocore#1.34.119 ua/2.0 os/macos#23.6.0 md/arch#arm64 lang/python#3.9.19 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.119'}, 'body': b'{"NextToken": "UFQCQUFBQUFBRUNBZ0I0c2ZrdEM1bjlpWVA1RXFvMzNRNkgrNFBzTlQ5Z3QraEhJeGJCN2paL0RFY0JWV0FEWnhCaU5BQXduMEJoUVd5Vk9nQUFBU1F3Z2dFZ0Jna3Foa2lHOXcwQkJ3YWdnZ0VSTUlJQkRRSUJBRENDQVFZR0NTcUdTSWIzRFFFSEFUQWVCZ2xnaGtnQlpRTUVBUzR3RVFRTWhBT0YyZHZsdVkrQTZBMmVBZ0VRZ0lIWXZwZW5KSFRLR3FIQ2R0SjAwSzFieWxXOXQ1amNYbzA3b21yU0laa2xZODhZQTQ1QzFWMytPTWdTSzczTmpwZUdHT0ROWis2MzVXRnJmRDZFVG0yb0dESEx0YlZCbjRuWmNzZ25jWnpTQ1NjQ0ZvTDZZSENBQ3Y3bzl0SkhEbUJCTDlZRFpITEsvMXhBcTkycFdOV2NQd0JScGs0MW5Cb3N1WGhIMHNiV1crVTRYWnptaCsrQU4wMUE1MVV5c1BHM0hsT0JodjlUVGlJb2RDNHU1TTV6NGxyV0hydWJ2ekhzakl6a3FkeUg1bzBSK0hxaWF6ckRHN2dDRndTeGtKTjBiVXljVXQxSkVRb2lMOGlqL1g3a2pQM2tGTUk2VGtHdg==", "MaxResults": 100}', 'url': 'https://servicequotas.eu-west-1.amazonaws.com/', 'context': {'client_region': 'eu-west-1', 'client_config': <botocore.config.Config object at 0x103571100>, 'has_streaming_input': False, 'auth_type': None}}
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event request-created.service-quotas.ListServices: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x103571070>>
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event choose-signer.service-quotas.ListServices: calling handler <function set_operation_specific_signer at 0x102dff670>
2024-10-14 09:39:51,964 botocore.auth [DEBUG] Calculating signature using v4 auth.
2024-10-14 09:39:51,964 botocore.auth [DEBUG] CanonicalRequest:
POST
/

content-type:application/x-amz-json-1.1
host:servicequotas.eu-west-1.amazonaws.com
x-amz-date:20241014T143951Z
x-amz-security-token:<SECURITY_TOKEN>
x-amz-target:ServiceQuotasV20190624.ListServices

content-type;host;x-amz-date;x-amz-security-token;x-amz-target
966ef694bc419f2adf2f8aa3d5add74afdf38a540be87dc3795a194e4e55452e
2024-10-14 09:39:51,964 botocore.auth [DEBUG] StringToSign:
AWS4-HMAC-SHA256
20241014T143951Z
20241014/eu-west-1/servicequotas/aws4_request
a1c78d669316ded562b84f72a52179ea6efde9869460a6da4e9a54e319d69e1c
2024-10-14 09:39:51,964 botocore.auth [DEBUG] Signature:
c1c77aef3d40ebb4b12b65585b081e5732c4295c808b3c6fa1f55027dbf48e27
2024-10-14 09:39:51,964 botocore.hooks [DEBUG] Event request-created.service-quotas.ListServices: calling handler <function add_retry_headers at 0x102e05790>
2024-10-14 09:39:51,964 botocore.endpoint [DEBUG] Sending http request: <AWSPreparedRequest stream_output=False, method=POST, url=https://servicequotas.eu-west-1.amazonaws.com/, headers={'X-Amz-Target': b'ServiceQuotasV20190624.ListServices', 'Content-Type': b'application/x-amz-json-1.1', 'User-Agent': b'Boto3/1.34.119 md/Botocore#1.34.119 ua/2.0 os/macos#23.6.0 md/arch#arm64 lang/python#3.9.19 md/pyimpl#CPython cfg/retry-mode#legacy Botocore/1.34.119', 'X-Amz-Date': b'20241014T143951Z', 'X-Amz-Security-Token': b'<SECURITY_TOKEN>', 'Authorization': b'AWS4-HMAC-SHA256 Credential=ASIAYOUCE3OXX5X3HP3E/20241014/eu-west-1/servicequotas/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=c1c77aef3d40ebb4b12b65585b081e5732c4295c808b3c6fa1f55027dbf48e27', 'amz-sdk-invocation-id': b'65fe0ba9-a5ee-4ab2-9113-e733514f40f8', 'amz-sdk-request': b'attempt=1', 'Content-Length': '672'}>
2024-10-14 09:39:51,965 botocore.httpsession [DEBUG] Certificate path: <PATH_TO_SRC_DIR>/venv/lib/python3.9/site-packages/certifi/cacert.pem
[[{'ServiceCode': 'AWSCloudMap', 'ServiceName': 'AWS Cloud Map'}, {'ServiceCode': 'access-analyzer', 'ServiceName': 'Access Analyzer'}, {'ServiceCode': 'acm', 'ServiceName': 'AWS Certificate Manager (ACM)'}, {'ServiceCode': 'acm-pca', 'ServiceName': 'AWS Private Certificate Authority'}, {'ServiceCode': 'airflow', 'ServiceName': 'Amazon Managed Workflows for Apache Airflow'}, {'ServiceCode': 'amplify', 'ServiceName': 'AWS Amplify'}, {'ServiceCode': 'aoss', 'ServiceName': 'Amazon OpenSearch Serverless'}, {'ServiceCode': 'apigateway', 'ServiceName': 'Amazon API Gateway'}, {'ServiceCode': 'appconfig', 'ServiceName': 'AWS AppConfig'}, {'ServiceCode': 'appfabric', 'ServiceName': 'AWS AppFabric'}, {'ServiceCode': 'appflow', 'ServiceName': 'Amazon AppFlow'}, {'ServiceCode': 'application-autoscaling', 'ServiceName': 'Application Auto Scaling'}, {'ServiceCode': 'application-signals', 'ServiceName': 'Amazon CloudWatch Application Signals'}, {'ServiceCode': 'appmesh', 'ServiceName': 'AWS App Mesh'}, {'ServiceCode': 'apprunner', 'ServiceName': 'AWS App Runner'}, {'ServiceCode': 'appstream2', 'ServiceName': 'Amazon AppStream 2.0'}, {'ServiceCode': 'appsync', 'ServiceName': 'AWS AppSync'}, {'ServiceCode': 'aps', 'ServiceName': 'Amazon Managed Prometheus'}, {'ServiceCode': 'athena', 'ServiceName': 'Amazon Athena'}, {'ServiceCode': 'auditmanager', 'ServiceName': 'AWS Audit Manager'}, {'ServiceCode': 'autoscaling', 'ServiceName': 'Amazon EC2 Auto Scaling'}, {'ServiceCode': 'autoscaling-plans', 'ServiceName': 'AWS Auto Scaling Plans'}, {'ServiceCode': 'backup', 'ServiceName': 'AWS Backup'}, {'ServiceCode': 'batch', 'ServiceName': 'AWS Batch'}, {'ServiceCode': 'bedrock', 'ServiceName': 'Amazon Bedrock'}, {'ServiceCode': 'cassandra', 'ServiceName': 'Amazon Keyspaces (for Apache Cassandra)'}, {'ServiceCode': 'chime', 'ServiceName': 'Amazon Chime'}, {'ServiceCode': 'cleanrooms', 'ServiceName': 'AWS Clean Rooms'}, {'ServiceCode': 'cleanrooms-ml', 'ServiceName': 'AWS Clean Rooms ML'}, {'ServiceCode': 'cloud9', 'ServiceName': 'AWS Cloud9'}, {'ServiceCode': 'cloudformation', 'ServiceName': 'AWS CloudFormation'}, {'ServiceCode': 'cloudhsm', 'ServiceName': 'AWS CloudHSM'}, {'ServiceCode': 'cloudshell', 'ServiceName': 'AWS CloudShell'}, {'ServiceCode': 'cloudtrail', 'ServiceName': 'AWS CloudTrail'}, {'ServiceCode': 'codeartifact', 'ServiceName': 'AWS CodeArtifact'}, {'ServiceCode': 'codebuild', 'ServiceName': 'AWS CodeBuild'}, {'ServiceCode': 'codecatalyst', 'ServiceName': 'Amazon CodeCatalyst'}, {'ServiceCode': 'codecommit', 'ServiceName': 'AWS CodeCommit'}, {'ServiceCode': 'codedeploy', 'ServiceName': 'AWS CodeDeploy'}, {'ServiceCode': 'codeguru-profiler', 'ServiceName': 'Amazon CodeGuru Profiler'}, {'ServiceCode': 'codeguru-reviewer', 'ServiceName': 'Amazon CodeGuru Reviewer'}, {'ServiceCode': 'codepipeline', 'ServiceName': 'AWS CodePipeline'}, {'ServiceCode': 'cognito-identity', 'ServiceName': 'Amazon Cognito Federated Identities'}, {'ServiceCode': 'cognito-idp', 'ServiceName': 'Amazon Cognito User Pools'}, {'ServiceCode': 'cognito-sync', 'ServiceName': 'Amazon Cognito Sync'}, {'ServiceCode': 'comprehend', 'ServiceName': 'Amazon Comprehend'}, {'ServiceCode': 'comprehendmedical', 'ServiceName': 'Amazon Comprehend Medical'}, {'ServiceCode': 'config', 'ServiceName': 'AWS Config'}, {'ServiceCode': 'controltower', 'ServiceName': 'AWS Control Tower'}, {'ServiceCode': 'databrew', 'ServiceName': 'AWS Glue DataBrew'}, {'ServiceCode': 'dataexchange', 'ServiceName': 'AWS Data Exchange'}, {'ServiceCode': 'datapipeline', 'ServiceName': 'AWS Data Pipeline'}, {'ServiceCode': 'datasync', 'ServiceName': 'AWS DataSync'}, {'ServiceCode': 'datazone', 'ServiceName': 'Amazon DataZone'}, {'ServiceCode': 'dax', 'ServiceName': 'Amazon DynamoDB Accelerator (DAX)'}, {'ServiceCode': 'deadline', 'ServiceName': 'AWS Deadline Cloud'}, {'ServiceCode': 'discovery', 'ServiceName': 'AWS Application Discovery Service'}, {'ServiceCode': 'dlm', 'ServiceName': 'Amazon Data Lifecycle Manager'}, {'ServiceCode': 'dms', 'ServiceName': 'AWS Database Migration Service (AWS DMS)'}, {'ServiceCode': 'docdb', 'ServiceName': 'Amazon DocumentDB (with MongoDB compatibility)'}, {'ServiceCode': 'docdb-elastic', 'ServiceName': 'Amazon DocumentDB Elastic Clusters'}, {'ServiceCode': 'drs', 'ServiceName': 'ElasticDisasterRecovery'}, {'ServiceCode': 'ds', 'ServiceName': 'AWS Directory Service'}, {'ServiceCode': 'dynamodb', 'ServiceName': 'Amazon DynamoDB'}, {'ServiceCode': 'ebs', 'ServiceName': 'Amazon Elastic Block Store (Amazon EBS)'}, {'ServiceCode': 'ec2', 'ServiceName': 'Amazon Elastic Compute Cloud (Amazon EC2)'}, {'ServiceCode': 'ec2-ipam', 'ServiceName': 'IPAM'}, {'ServiceCode': 'ec2fastlaunch', 'ServiceName': 'EC2 Fast Launch'}, {'ServiceCode': 'ecr', 'ServiceName': 'Amazon Elastic Container Registry (Amazon ECR)'}, {'ServiceCode': 'ecs', 'ServiceName': 'Amazon Elastic Container Service (Amazon ECS)'}, {'ServiceCode': 'eks', 'ServiceName': 'Amazon Elastic Kubernetes Service (Amazon EKS)'}, {'ServiceCode': 'elastic-inference', 'ServiceName': 'Amazon Elastic Inference'}, {'ServiceCode': 'elasticache', 'ServiceName': 'Amazon ElastiCache'}, {'ServiceCode': 'elasticbeanstalk', 'ServiceName': 'AWS Elastic Beanstalk'}, {'ServiceCode': 'elasticfilesystem', 'ServiceName': 'Amazon Elastic File System (EFS)'}, {'ServiceCode': 'elasticloadbalancing', 'ServiceName': 'Elastic Load Balancing (ELB)'}, {'ServiceCode': 'elasticmapreduce', 'ServiceName': 'Amazon EMR'}, {'ServiceCode': 'elastictranscoder', 'ServiceName': 'Amazon Elastic Transcoder'}, {'ServiceCode': 'emr-serverless', 'ServiceName': 'Amazon EMR Serverless'}, {'ServiceCode': 'entityresolution', 'ServiceName': 'AWS Entity Resolution'}, {'ServiceCode': 'es', 'ServiceName': 'Amazon OpenSearch Service'}, {'ServiceCode': 'events', 'ServiceName': 'Amazon EventBridge (CloudWatch Events)'}, {'ServiceCode': 'evidently', 'ServiceName': 'Amazon CloudWatch Evidently'}, {'ServiceCode': 'fargate', 'ServiceName': 'AWS Fargate'}, {'ServiceCode': 'finspace', 'ServiceName': 'Amazon FinSpace'}, {'ServiceCode': 'firehose', 'ServiceName': 'Amazon Kinesis Data Firehose'}, {'ServiceCode': 'fis', 'ServiceName': 'AWS Fault Injection Service (FIS)'}, {'ServiceCode': 'fms', 'ServiceName': 'AWS Firewall Manager'}, {'ServiceCode': 'forecast', 'ServiceName': 'Amazon Forecast'}, {'ServiceCode': 'frauddetector', 'ServiceName': 'Amazon Fraud Detector'}, {'ServiceCode': 'fsx', 'ServiceName': 'Amazon FSx'}, {'ServiceCode': 'gamelift', 'ServiceName': 'Amazon GameLift'}, {'ServiceCode': 'geo', 'ServiceName': 'Amazon Location Service (Amazon Location)'}, {'ServiceCode': 'glacier', 'ServiceName': 'Amazon Glacier'}, {'ServiceCode': 'glue', 'ServiceName': 'AWS Glue'}, {'ServiceCode': 'grafana', 'ServiceName': 'Amazon Managed Grafana'}, {'ServiceCode': 'greengrass', 'ServiceName': 'AWS IoT Greengrass'}, {'ServiceCode': 'groundstation', 'ServiceName': 'AWS Ground Station'}, {'ServiceCode': 'guardduty', 'ServiceName': 'Amazon GuardDuty'}, {'ServiceCode': 'imagebuilder', 'ServiceName': 'EC2 Image Builder'}], [{'ServiceCode': 'inspector', 'ServiceName': 'Amazon Inspector Classic'}, {'ServiceCode': 'inspector2', 'ServiceName': 'Amazon Inspector'}, {'ServiceCode': 'internetmonitor', 'ServiceName': 'CloudWatch Internet Monitor'}, {'ServiceCode': 'iot', 'ServiceName': 'AWS IoT'}, {'ServiceCode': 'iot1click', 'ServiceName': 'AWS IoT 1-Click'}, {'ServiceCode': 'iotanalytics', 'ServiceName': 'AWS IoT Analytics'}, {'ServiceCode': 'iotcore', 'ServiceName': 'AWS IoT Core'}, {'ServiceCode': 'iotdeviceadvisor', 'ServiceName': 'AWS IoT Core Device Advisor'}, {'ServiceCode': 'iotevents', 'ServiceName': 'AWS IoT Events'}, {'ServiceCode': 'iotsitewise', 'ServiceName': 'AWS IoT SiteWise'}, {'ServiceCode': 'iotthingsgraph', 'ServiceName': 'AWS IoT Things Graph'}, {'ServiceCode': 'iottwinmaker', 'ServiceName': 'AWS IoT TwinMaker'}, {'ServiceCode': 'iotwireless', 'ServiceName': 'AWS IoT Wireless'}, {'ServiceCode': 'ivs', 'ServiceName': 'Amazon Interactive Video Service'}, {'ServiceCode': 'ivschat', 'ServiceName': 'Amazon Interactive Video Service Chat'}, {'ServiceCode': 'kafka', 'ServiceName': 'Amazon Managed Streaming for Kafka (MSK)'}, {'ServiceCode': 'kafkaconnect', 'ServiceName': 'Managed Streaming for Kafka Connect'}, {'ServiceCode': 'kendra', 'ServiceName': 'Amazon Kendra'}, {'ServiceCode': 'kendra-ranking', 'ServiceName': 'Amazon Kendra Intelligent Ranking'}, {'ServiceCode': 'kinesis', 'ServiceName': 'Amazon Kinesis Data Streams'}, {'ServiceCode': 'kinesisanalytics', 'ServiceName': 'Amazon Managed Service for Apache Flink'}, {'ServiceCode': 'kinesisvideo', 'ServiceName': 'Amazon Kinesis Video Streams'}, {'ServiceCode': 'kms', 'ServiceName': 'AWS Key Management Service (AWS KMS)'}, {'ServiceCode': 'lakeformation', 'ServiceName': 'AWS Lake Formation'}, {'ServiceCode': 'lambda', 'ServiceName': 'AWS Lambda'}, {'ServiceCode': 'launchwizard', 'ServiceName': 'AWS Launch Wizard'}, {'ServiceCode': 'lex', 'ServiceName': 'Amazon Lex'}, {'ServiceCode': 'license-manager', 'ServiceName': 'AWS License Manager'}, {'ServiceCode': 'license-manager-linux-subscriptions', 'ServiceName': 'AWS License Manager Linux Subscriptions'}, {'ServiceCode': 'license-manager-user-subscriptions', 'ServiceName': 'AWS License Manager User Subscriptions'}, {'ServiceCode': 'lightsail', 'ServiceName': 'Amazon Lightsail'}, {'ServiceCode': 'logs', 'ServiceName': 'Amazon CloudWatch Logs'}, {'ServiceCode': 'lookoutequipment', 'ServiceName': 'Amazon Lookout for Equipment'}, {'ServiceCode': 'lookoutmetrics', 'ServiceName': 'Amazon Lookout for Metrics'}, {'ServiceCode': 'lookoutvision', 'ServiceName': 'Amazon Lookout for Vision'}, {'ServiceCode': 'm2', 'ServiceName': 'AWS Mainframe Modernization'}, {'ServiceCode': 'machinelearning', 'ServiceName': 'Amazon Machine Learning'}, {'ServiceCode': 'macie2', 'ServiceName': 'Amazon Macie'}, {'ServiceCode': 'managedblockchain', 'ServiceName': 'Amazon Managed Blockchain'}, {'ServiceCode': 'mediaconnect', 'ServiceName': 'AWS Elemental MediaConnect'}, {'ServiceCode': 'mediaconvert', 'ServiceName': 'AWS Elemental MediaConvert'}, {'ServiceCode': 'medialive', 'ServiceName': 'AWS Elemental MediaLive'}, {'ServiceCode': 'mediapackage', 'ServiceName': 'AWS Elemental MediaPackage'}, {'ServiceCode': 'mediapackagev2', 'ServiceName': 'AWS Elemental MediaPackage v2'}, {'ServiceCode': 'mediastore', 'ServiceName': 'AWS Elemental MediaStore'}, {'ServiceCode': 'mediatailor', 'ServiceName': 'AWS Elemental MediaTailor'}, {'ServiceCode': 'medical-imaging', 'ServiceName': 'AWS Health Imaging'}, {'ServiceCode': 'mgn', 'ServiceName': 'Application Migration'}, {'ServiceCode': 'migrationhuborchestrator', 'ServiceName': 'Migration Hub Orchestrator'}, {'ServiceCode': 'migrationhubstrategy', 'ServiceName': 'Migration Hub Strategy Recommendations'}, {'ServiceCode': 'monitoring', 'ServiceName': 'Amazon CloudWatch'}, {'ServiceCode': 'monitron', 'ServiceName': 'Amazon Monitron'}, {'ServiceCode': 'mq', 'ServiceName': 'Amazon MQ'}, {'ServiceCode': 'neptune', 'ServiceName': 'Amazon Neptune'}, {'ServiceCode': 'neptune-graph', 'ServiceName': 'Amazon Neptune Analytics'}, {'ServiceCode': 'network-firewall', 'ServiceName': 'AWS Network Firewall'}, {'ServiceCode': 'networkinsights', 'ServiceName': 'Network Insights'}, {'ServiceCode': 'networkmonitor', 'ServiceName': 'Amazon CloudWatch Network Monitor'}, {'ServiceCode': 'nimble', 'ServiceName': 'Amazon Nimble Studio'}, {'ServiceCode': 'oam', 'ServiceName': 'Amazon CloudWatch Observability Access Manager'}, {'ServiceCode': 'omics', 'ServiceName': 'AWS HealthOmics'}, {'ServiceCode': 'opsworks', 'ServiceName': 'AWS OpsWorks Stacks'}, {'ServiceCode': 'opsworks-cm', 'ServiceName': 'AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise'}, {'ServiceCode': 'outposts', 'ServiceName': 'AWS Outposts'}, {'ServiceCode': 'panorama', 'ServiceName': 'AWS Panorama'}, {'ServiceCode': 'payment-cryptography', 'ServiceName': 'AWS Payment Cryptography'}, {'ServiceCode': 'pca-connector-ad', 'ServiceName': 'Private CA Connector for Active Directory'}, {'ServiceCode': 'pca-connector-scep', 'ServiceName': 'Private CA Connector for Simple Certificate Enrollment Protocol'}, {'ServiceCode': 'personalize', 'ServiceName': 'Amazon Personalize'}, {'ServiceCode': 'pinpoint', 'ServiceName': 'Amazon Pinpoint'}, {'ServiceCode': 'polly', 'ServiceName': 'Amazon Polly'}, {'ServiceCode': 'proton', 'ServiceName': 'AWS Proton'}, {'ServiceCode': 'qldb', 'ServiceName': 'Amazon QLDB'}, {'ServiceCode': 'quicksight', 'ServiceName': 'Amazon QuickSight'}, {'ServiceCode': 'ram', 'ServiceName': 'AWS Resource Access Manager'}, {'ServiceCode': 'rbin', 'ServiceName': 'Amazon Recycle Bin'}, {'ServiceCode': 'rds', 'ServiceName': 'Amazon Relational Database Service (Amazon RDS)'}, {'ServiceCode': 'redshift', 'ServiceName': 'Amazon Redshift'}, {'ServiceCode': 'refactor-spaces', 'ServiceName': 'AWS Migration Hub Refactor Spaces'}, {'ServiceCode': 'rekognition', 'ServiceName': 'Amazon Rekognition'}, {'ServiceCode': 'resiliencehub', 'ServiceName': 'AWS Resilience Hub'}, {'ServiceCode': 'resource-explorer-2', 'ServiceName': 'AWS Resource Explorer'}, {'ServiceCode': 'resource-groups', 'ServiceName': 'AWS Resource Groups'}, {'ServiceCode': 'robomaker', 'ServiceName': 'AWS RoboMaker'}, {'ServiceCode': 'rolesanywhere', 'ServiceName': 'IAM Roles Anywhere'}, {'ServiceCode': 'route53profiles', 'ServiceName': 'Route 53 Profiles'}, {'ServiceCode': 'route53resolver', 'ServiceName': 'Route 53 Resolver'}, {'ServiceCode': 'rum', 'ServiceName': 'Amazon CloudWatch RUM'}, {'ServiceCode': 's3', 'ServiceName': 'Amazon Simple Storage Service (Amazon S3)'}, {'ServiceCode': 's3-outposts', 'ServiceName': 'AWS S3 Outposts'}, {'ServiceCode': 'sagemaker', 'ServiceName': 'Amazon SageMaker'}, {'ServiceCode': 'scheduler', 'ServiceName': 'Amazon EventBridge Scheduler'}, {'ServiceCode': 'schemas', 'ServiceName': 'Amazon EventBridge Schema Registry'}, {'ServiceCode': 'scn', 'ServiceName': 'AWS Supply Chain'}, {'ServiceCode': 'sdb', 'ServiceName': 'Amazon SimpleDB'}, {'ServiceCode': 'secretsmanager', 'ServiceName': 'AWS Secrets Manager'}, {'ServiceCode': 'securityhub', 'ServiceName': 'AWS Security Hub'}, {'ServiceCode': 'serverlessrepo', 'ServiceName': 'AWS Serverless Application Repository'}, {'ServiceCode': 'servicecatalog', 'ServiceName': 'AWS Service Catalog'}, {'ServiceCode': 'servicequotas', 'ServiceName': 'Service Quotas'}], [{'ServiceCode': 'ses', 'ServiceName': 'Amazon Simple Email Service(Amazon SES)'}, {'ServiceCode': 'shield', 'ServiceName': 'AWS Shield Advanced'}, {'ServiceCode': 'signer', 'ServiceName': 'AWS Signer'}, {'ServiceCode': 'simspaceweaver', 'ServiceName': 'AWS SimSpace Weaver'}, {'ServiceCode': 'sms', 'ServiceName': 'AWS Server Migration Service'}, {'ServiceCode': 'snow-device-management', 'ServiceName': 'AWS Snow Device Management'}, {'ServiceCode': 'snowball', 'ServiceName': 'AWS Snow Family'}, {'ServiceCode': 'sns', 'ServiceName': 'Amazon Simple Notification Service (Amazon SNS)'}, {'ServiceCode': 'sqs', 'ServiceName': 'Amazon Simple Queue Service (Amazon SQS)'}, {'ServiceCode': 'ssm', 'ServiceName': 'AWS Systems Manager'}, {'ServiceCode': 'ssm-contacts', 'ServiceName': 'AWS Systems Manager Incident Manager Contacts'}, {'ServiceCode': 'ssm-guiconnect', 'ServiceName': 'AWS Systems Manager GUI Connect'}, {'ServiceCode': 'ssm-incidents', 'ServiceName': 'AWS Systems Manager Incident Manager'}, {'ServiceCode': 'ssm-sap', 'ServiceName': 'AWS Systems Manager for SAP'}, {'ServiceCode': 'sso', 'ServiceName': 'AWS IAM Identity Center (successor to AWS Single Sign-On)'}, {'ServiceCode': 'states', 'ServiceName': 'AWS Step Functions'}, {'ServiceCode': 'storagegateway', 'ServiceName': 'AWS Storage Gateway'}, {'ServiceCode': 'swf', 'ServiceName': 'Amazon Simple Workflow Service'}, {'ServiceCode': 'textract', 'ServiceName': 'Amazon Textract'}, {'ServiceCode': 'timestream', 'ServiceName': 'Amazon Timestream'}, {'ServiceCode': 'timestream-influxdb', 'ServiceName': 'Amazon Timestream for Managed Influx'}, {'ServiceCode': 'transcribe', 'ServiceName': 'Amazon Transcribe'}, {'ServiceCode': 'transfer', 'ServiceName': 'AWS Transfer Family'}, {'ServiceCode': 'translate', 'ServiceName': 'Amazon Translate'}, {'ServiceCode': 'trustedadvisor', 'ServiceName': 'AWS Trusted Advisor'}, {'ServiceCode': 'ts', 'ServiceName': 'Diagnostic Tools'}, {'ServiceCode': 'verifiedpermissions', 'ServiceName': 'Amazon Verified Permissions'}, {'ServiceCode': 'vmimportexport', 'ServiceName': 'EC2 VM Import/Export'}, {'ServiceCode': 'vpc', 'ServiceName': 'Amazon Virtual Private Cloud (Amazon VPC)'}, {'ServiceCode': 'vpc-lattice', 'ServiceName': 'VPC Lattice'}, {'ServiceCode': 'waf-regional', 'ServiceName': 'AWS WAF Classic (Regional)'}, {'ServiceCode': 'wafv2', 'ServiceName': 'AWS WAF'}, {'ServiceCode': 'wam', 'ServiceName': 'Amazon WorkSpaces Application Manager'}, {'ServiceCode': 'wellarchitected', 'ServiceName': 'AWS Well-Architected Tool'}, {'ServiceCode': 'workspaces', 'ServiceName': 'Amazon WorkSpaces'}, {'ServiceCode': 'workspaces-web', 'ServiceName': 'Amazon WorkSpaces Secure Browser'}, {'ServiceCode': 'xray', 'ServiceName': 'AWS X-Ray'}]]
At the end now
2024-10-14 09:39:52,201 urllib3.connectionpool [DEBUG] https://servicequotas.eu-west-1.amazonaws.com:443 "POST / HTTP/1.1" 200 2611
2024-10-14 09:39:52,202 botocore.parsers [DEBUG] Response headers: {'Date': 'Mon, 14 Oct 2024 14:39:52 GMT', 'Content-Type': 'application/x-amz-json-1.1', 'Content-Length': '2611', 'Connection': 'keep-alive', 'x-amzn-RequestId': 'cfb479c4-7fa0-49d1-a0d2-31e6eec31381'}
2024-10-14 09:39:52,202 botocore.parsers [DEBUG] Response body:
b'{"Services":[{"ServiceCode":"ses","ServiceName":"Amazon Simple Email Service(Amazon SES)"},{"ServiceCode":"shield","ServiceName":"AWS Shield Advanced"},{"ServiceCode":"signer","ServiceName":"AWS Signer"},{"ServiceCode":"simspaceweaver","ServiceName":"AWS SimSpace Weaver"},{"ServiceCode":"sms","ServiceName":"AWS Server Migration Service"},{"ServiceCode":"snow-device-management","ServiceName":"AWS Snow Device Management"},{"ServiceCode":"snowball","ServiceName":"AWS Snow Family"},{"ServiceCode":"sns","ServiceName":"Amazon Simple Notification Service (Amazon SNS)"},{"ServiceCode":"sqs","ServiceName":"Amazon Simple Queue Service (Amazon SQS)"},{"ServiceCode":"ssm","ServiceName":"AWS Systems Manager"},{"ServiceCode":"ssm-contacts","ServiceName":"AWS Systems Manager Incident Manager Contacts"},{"ServiceCode":"ssm-guiconnect","ServiceName":"AWS Systems Manager GUI Connect"},{"ServiceCode":"ssm-incidents","ServiceName":"AWS Systems Manager Incident Manager"},{"ServiceCode":"ssm-sap","ServiceName":"AWS Systems Manager for SAP"},{"ServiceCode":"sso","ServiceName":"AWS IAM Identity Center (successor to AWS Single Sign-On)"},{"ServiceCode":"states","ServiceName":"AWS Step Functions"},{"ServiceCode":"storagegateway","ServiceName":"AWS Storage Gateway"},{"ServiceCode":"swf","ServiceName":"Amazon Simple Workflow Service"},{"ServiceCode":"textract","ServiceName":"Amazon Textract"},{"ServiceCode":"timestream","ServiceName":"Amazon Timestream"},{"ServiceCode":"timestream-influxdb","ServiceName":"Amazon Timestream for Managed Influx"},{"ServiceCode":"transcribe","ServiceName":"Amazon Transcribe"},{"ServiceCode":"transfer","ServiceName":"AWS Transfer Family"},{"ServiceCode":"translate","ServiceName":"Amazon Translate"},{"ServiceCode":"trustedadvisor","ServiceName":"AWS Trusted Advisor"},{"ServiceCode":"ts","ServiceName":"Diagnostic Tools"},{"ServiceCode":"verifiedpermissions","ServiceName":"Amazon Verified Permissions"},{"ServiceCode":"vmimportexport","ServiceName":"EC2 VM Import/Export"},{"ServiceCode":"vpc","ServiceName":"Amazon Virtual Private Cloud (Amazon VPC)"},{"ServiceCode":"vpc-lattice","ServiceName":"VPC Lattice"},{"ServiceCode":"waf-regional","ServiceName":"AWS WAF Classic (Regional)"},{"ServiceCode":"wafv2","ServiceName":"AWS WAF"},{"ServiceCode":"wam","ServiceName":"Amazon WorkSpaces Application Manager"},{"ServiceCode":"wellarchitected","ServiceName":"AWS Well-Architected Tool"},{"ServiceCode":"workspaces","ServiceName":"Amazon WorkSpaces"},{"ServiceCode":"workspaces-web","ServiceName":"Amazon WorkSpaces Secure Browser"},{"ServiceCode":"xray","ServiceName":"AWS X-Ray"}]}'
2024-10-14 09:39:52,202 botocore.hooks [DEBUG] Event needs-retry.service-quotas.ListServices: calling handler <botocore.retryhandler.RetryHandler object at 0x1035944f0>
2024-10-14 09:39:52,202 botocore.retryhandler [DEBUG] No retry needed.

@TejasRGitHub
Copy link
Author

Hi @adev-code , I think I figured why I was not able to get the iam code. The reason was becoz I was aws config has eu-west-1 as the region. Once I changed to us-east-1 then I am able to see "iam" code.
In anyway, I think I should be able to get the service codes unless IAM is region specific service which is available only for us-east-1 ( which I don't think is right )

@github-actions github-actions bot removed the response-requested Waiting on additional information or feedback. label Oct 15, 2024
@adev-code
Copy link

Hi @TejasRGitHub, thanks for the update. Since IAM is a global service, the region has to be us-east-1. If you have any follow up questions, please do let me know. Thank you.

@adev-code adev-code added the response-requested Waiting on additional information or feedback. label Oct 15, 2024
Copy link

Greetings! It looks like this issue hasn’t been active in longer than five days. We encourage you to check if this is still an issue in the latest release. In the absence of more information, we will be closing this issue soon. If you find that this is still a problem, please feel free to provide a comment or upvote with a reaction on the initial post to prevent automatic closure. If the issue is already closed, please feel free to open a new one.

@github-actions github-actions bot added closing-soon This issue will automatically close in 4 days unless further comments are made. closed-for-staleness and removed closing-soon This issue will automatically close in 4 days unless further comments are made. labels Oct 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue is a confirmed bug. closed-for-staleness iam p3 This is a minor priority issue response-requested Waiting on additional information or feedback.
Projects
None yet
Development

No branches or pull requests

2 participants