I am not able to figure out how to make api calls to amazon elastic transcoder pipeline in java.What should be the base url for the service call or should i make the pipelines manually using the console and create jobs through my code.
Asked
Active
Viewed 351 times
0
-
I have gone through the documentation https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/create-pipeline.html , still unable to figure it out – SaranshK21 Nov 16 '18 at 07:36
1 Answers
0
You could refer to the API Reference docs and create your own client using any HTTP library, but ideally, you would use the Java SDK for AmazonElasticTranscoderClient
, not create your own REST clients.
Specifically, you would want the createPipeline(CreatePipelineRequest request)
method
The endpoints for all AWS services are listed on a single page

OneCricketeer
- 179,855
- 19
- 132
- 245
-
Thanks for your quick response, highly appreciable. Can I find an example or snippet somewhere? – SaranshK21 Nov 16 '18 at 07:35
-
Yes, there are links to example Java code in the API reference page – OneCricketeer Nov 16 '18 at 07:51
-
https://elastictranscoder.elastictranscoder.us-east-1.amazonaws.com:443/2012-09-25/pipelines . This is the base url I am hitting upon but no response – SaranshK21 Nov 16 '18 at 08:59
-
First, I have never used this service. Second, I doubt putting twice `elastictranscoder.elastictranscoder` is correct. Somehow, you need to reference your actual account info, too – OneCricketeer Nov 16 '18 at 09:13