HTTP Resolver: x-amz-target
I learned how to access AWS services by HTTP Resolver at the following thread:
https://forums.aws.amazon.com/thread.jspa?threadID=314359&tstart=0
I have one new question.
How can I find out what "x-amz-target" to specify for each AWS service?
ex.
"AWSKendraFrontendService.Query", "AmazonForecastRuntime.QueryForecast", "AWSHawksNestServiceFacade.GetPrediction", "Comprehend_20171127.DetectSentiment", "DynamoDB_20120810.CreateTable", "AWSStepFunctions.ListStateMachines", ...
I use aws-cli's debug option.
aws transcribe list-transcription-jobs --debug
output:
2020-01-09 16:24:26,323 - MainThread - botocore.auth - DEBUG - Calculating signature using v4 auth.
2020-01-09 16:24:26,323 - MainThread - botocore.auth - DEBUG - CanonicalRequest:
POST
/
content-type:application/x-amz-json-1.1
host:transcribe.ap-northeast-1.amazonaws.com
x-amz-date:20200109T072426Z
x-amz-target:Transcribe.ListTranscriptionJobs
Or, I may find out by referring to service-2.json of each service from https://github.com/boto/botocore/tree/develop/botocore/data
Is there the best way to find out what to specify for "x-amz-target" ?
Is there a list of "x-amz-target" ?
You can have a look at the normal.json files for each service and it usually is a combination of the targetPrefix property and the actual operation name:
https://github.com/aws/aws-sdk-js/tree/master/apis
Here's an example:
https://github.com/aws/aws-sdk-js/blob/master/apis/comprehend-2017-11-27.normal.json#L12
My question has been resolved by your answer. Thank you for your help !!
Relevant questions
AppSync resolver size limits
Accepted Answerasked 3 years agoHow to get EC2 instance to access internet facing Network Loadbalancer.
asked a year agoHow do I compose a BULK request to OpenSearch via AppSync resolver mapping templates?
asked 2 months agoSetting up DCV connection gateway and a Session Resolver with the url that is not at the root?
asked 4 days agoAWS Route53 Resolver Query Log Config - Terraform - error [RSLVR-00200]
asked 3 months agoHTTP Resolver: x-amz-target
asked 2 years agoHandling of target IP addresses in rule for outbound endpoint
asked 2 years agoAppsync HTTP resolver supported content types
asked 2 years agoAccess "aud" claim in resolver mapping for AWS AppSync
Accepted Answerasked 2 months agoAPI Gateway CORS error after update aws-cdk update to 1.135.0
asked 3 months ago