c# - AWS Elastic Transcoder Endpoint cannot be resolved -



c# - AWS Elastic Transcoder Endpoint cannot be resolved -

i'm working on project requires video transcoded , thumbnails extracted through utilize of aws elastic transcoder. have followed api best of abilities , have seems me right code. however, still error nameresolutionfailure thrown , inner exception saying the remote name not resolved: 'elastictranscoder.us-west-2.amazonaws.com'my code is:

var transcoder = new amazonelastictranscoderclient(constants.amazons3accesskey, constants.amazons3secretkey, regionendpoint.uswest2); var ji = new jobinput { aspectratio = "auto", container = "mov", framerate = "auto", interlaced = "auto", resolution = "auto", key = filename }; var output = new createjoboutput { thumbnailpattern = filename + "_{count}", rotate = "auto", presetid = "1351620000001-000010", key = filename + "_enc.mp4" }; var createjob = new createjobrequest { input = ji, output = output, pipelineid = "1413517673900-39qstm" }; transcoder.createjob(createjob);

i have s3 buckets configure in oregon , added policies create files public.

apparently virtual machine not connecting internet, why nameresolutionfailure thrown. fine now.

c# amazon-web-services amazon-s3

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -