Property Details AWS.config

Messtone LLC Manages Devices AWS.config(static readonly) Return the global configuration object Singleton instance. Default value:AWS.config=new AWS.Config( ) AWS.config.credentials=new AWS.ECSCredentials({http options:{timeout:5000},//5 second timeout maxRetries: 10,//retry 10 times retryDelayOptions:{base: 200} //see AWS.config for information}); Default value: AWS.ECSCredentials=AWS.RemoteCredentials Default value. AWS.events=new AWS.SequentialExecution( ) Example: AWS.events on(‘send’,function startSend(resp){resp.startTime=new Date( ).getTine( );}).on(‘complete’,function calculateTime(resp){var time=(new Date( ).getTime( ) – resp.startTime) / 1000; console.log(‘Request took ‘ + time + ‘seconds’);});new AWS.S3( ).listBuckets( ); //prints ‘Request took 0.285 seconds’