javarestamazon-elastic-transcoder

how to make api call to amazon elastic transcoder pipeline in java?


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.


Solution

  • 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