aws-ec2-instance_types 1.4.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8556f79717f4940dbcc90a637ecba9181d9be622
4
- data.tar.gz: 4cef5160aa78c30c9dbe5cf77ee27b049e3caff1
3
+ metadata.gz: 3c5e2c50d450266223b0a34be776ff82f56a1f21
4
+ data.tar.gz: defcdfd317055f373c94a666c38ef73707964229
5
5
  SHA512:
6
- metadata.gz: b03447a72b19d4e4ee78801188fb0d3f6de1433340bc9c0abb37a647b63de2f7314683ca1ec16ad607cbeebe10fb6c3e561b65097706cdc0d401892e3bafbc5e
7
- data.tar.gz: 23a5beb6370ba460118d307c87c934e00f28df0e100f13ced129d221972c6bb0d9f54de87de5608d57fe5832b06f27e43767aa7ff9e91c2bae1704101294bba3
6
+ metadata.gz: 9152a86369f814f4d6ea13342162b26956e20af21b840cb421816eb5b62f4509886f2efc6a1d76cde7a32cb60e4149d17808fdfcd5e0cf76e424dfb20c2feca4
7
+ data.tar.gz: 141da44dc10506536897746a6e028399f1876c1a7a722d149e625309028c8206e46038b0979ed73630dedd4659e24f4d6eb17abbc43300f9274e77a15300f084
data/Gemfile CHANGED
@@ -4,4 +4,5 @@ gemspec
4
4
 
5
5
  group :development do
6
6
  gem 'cucumber', '~> 0.10.2'
7
+ #gem 'dldinternet-mixlib-logging', :path => '../dldinternet-mixlib-logging'
7
8
  end
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ aws-ec2-instance_types (2.0.0)
5
+ awesome_print (> 0)
6
+ colorize
7
+ dldinternet-mixlib-logging (>= 0.7.1)
8
+ inifile (> 0)
9
+ json
10
+ psych
11
+ thor (>= 0.19.1)
12
+
13
+ GEM
14
+ remote: https://rubygems.org/
15
+ specs:
16
+ awesome_print (1.8.0)
17
+ builder (3.2.3)
18
+ colorize (0.8.1)
19
+ cucumber (0.10.7)
20
+ builder (>= 2.1.2)
21
+ diff-lcs (>= 1.1.2)
22
+ gherkin (~> 2.4.0)
23
+ json (>= 1.4.6)
24
+ term-ansicolor (>= 1.0.5)
25
+ diff-lcs (1.3)
26
+ dldinternet-mixlib-logging (0.7.1)
27
+ logging (~> 2.1, >= 2.1.0)
28
+ gherkin (2.4.21)
29
+ json (>= 1.4.6)
30
+ inifile (3.0.0)
31
+ json (2.1.0)
32
+ little-plugger (1.1.4)
33
+ logging (2.2.2)
34
+ little-plugger (~> 1.1)
35
+ multi_json (~> 1.10)
36
+ multi_json (1.13.1)
37
+ psych (3.0.2)
38
+ rake (0.9.6)
39
+ rubygems-tasks (0.2.4)
40
+ term-ansicolor (1.6.0)
41
+ tins (~> 1.0)
42
+ thor (0.20.0)
43
+ tins (1.16.3)
44
+
45
+ PLATFORMS
46
+ ruby
47
+
48
+ DEPENDENCIES
49
+ aws-ec2-instance_types!
50
+ bundler (~> 1.0)
51
+ cucumber (~> 0.10.2)
52
+ rake (~> 0.8)
53
+ rubygems-tasks (~> 0.2)
54
+
55
+ BUNDLED WITH
56
+ 1.16.1
@@ -22,13 +22,12 @@ Gem::Specification.new do |gem|
22
22
  gem.add_development_dependency 'rubygems-tasks', '~> 0.2'
23
23
 
24
24
  gem.add_runtime_dependency('thor', ['>= 0.19.1'])
25
- gem.add_runtime_dependency(%q<mechanize>, ['>= 2.7.2'])
26
- gem.add_runtime_dependency(%q<nokogiri>, ['>= 1.5.0'])
27
25
  gem.add_dependency 'awesome_print', '> 0'
28
26
  gem.add_dependency 'inifile', '> 0'
29
27
  gem.add_dependency 'colorize', '>= 0'
30
- gem.add_dependency 'dldinternet-mixlib-logging', '>= 0.4.0'
28
+ gem.add_dependency 'dldinternet-mixlib-logging', '>= 0.7.1'
31
29
  gem.add_dependency 'psych'
32
30
  gem.add_dependency 'json'
33
31
 
34
32
  end
33
+
@@ -7,10 +7,12 @@ require 'dldinternet/aws/ec2/instance_types/cli'
7
7
 
8
8
  # =====================================================================================================================
9
9
  rc = DLDInternet::AWS::EC2::Instance_Types::Cli.start(ARGV)
10
- if rc.is_a?(Fixnum)
10
+ if rc.is_a?(Integer)
11
11
  exit rc
12
+ elsif rc.is_a?(IO)
13
+ exit 0
12
14
  else
13
- puts rc.ai
15
+ $stderr.write "\n#{File.basename(__FILE__)}: \$? was '" + rc.ai + "'\n\n"
14
16
  exit 0
15
17
  end
16
18
 
@@ -0,0 +1,49 @@
1
+ module DLDInternet
2
+ module AWS
3
+ module EC2
4
+
5
+ module Instance_Types
6
+ DEBUG = true
7
+ class AWSPricingAPIClient
8
+ attr_reader :instance_types
9
+
10
+ def initialize
11
+ @instance_types = {}
12
+ end
13
+
14
+ # ---------------------------------------------------------------------------------------------------------------
15
+ def get_instance_types(options={})
16
+ unless @instance_types.size > 0
17
+ require 'net/http'
18
+ # url = options[:url] || 'https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/index.json'
19
+ url = options[:url] || 'https://ec2instances.info/instances.json'
20
+
21
+ uri = URI(url)
22
+ # params = { :limit => 10, :page => 3 }
23
+ # uri.query = URI.encode_www_form(params)
24
+
25
+ while true
26
+ response = Net::HTTP.get_response(uri)
27
+ case response
28
+ when Net::HTTPSuccess then
29
+ require 'json'
30
+ data = JSON.parse(response.body)
31
+ @instance_types = data
32
+ break
33
+ when Net::HTTPRedirection then
34
+ uri = URI(response['location'])
35
+ # warn "redirected to #{location}"
36
+ # fetch(location, limit - 1)
37
+ else
38
+ raise response.inspect
39
+ end
40
+ end
41
+ end
42
+ @instance_types
43
+ end
44
+
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -3,7 +3,6 @@ require 'awesome_print'
3
3
  require 'colorize'
4
4
  require 'dldinternet/aws/ec2/instance_types/version'
5
5
  require 'dldinternet/aws/ec2/instance_types/error'
6
- require 'dldinternet/aws/ec2/instance_types/scraper'
7
6
  require 'dldinternet/aws/ec2/instance_types/cli'
8
7
  require 'dldinternet/aws/ec2/instance_types'
9
8
 
@@ -11,13 +10,14 @@ module DLDInternet
11
10
  module AWS
12
11
  module EC2
13
12
  module Instance_Types
13
+ # noinspection RubyParenthesesAfterMethodCallInspection
14
14
  class Cli < Thor
15
15
  class_option :verbose, :type => :boolean
16
16
  class_option :debug, :type => :boolean
17
17
  class_option :log_level, :type => :string, :banner => 'Log level ([:trace, :debug, :info, :step, :warn, :error, :fatal, :todo])'
18
18
  class_option :inifile, :type => :string
19
19
  class_option :help, :type => :boolean
20
- class_option :format, :type => :string, :default => 'pretty', :banner => '[:pretty, :yaml, :json]'
20
+ class_option :format, :type => :string, :default => 'pretty', :banner => '[:pretty, :yaml, :json]', :aliases => ['--output']
21
21
 
22
22
  no_commands do
23
23
 
@@ -48,7 +48,7 @@ module DLDInternet
48
48
  parse_options
49
49
  puts 'get instance types' if options[:verbose]
50
50
 
51
- it = DLDInternet::AWS::EC2::Instance_Types.getEC2_Instance_Types()
51
+ it = DLDInternet::AWS::EC2::Instance_Types.get_ec2_instance_types()
52
52
  case options[:format]
53
53
  when /yaml/
54
54
  puts it.to_yaml line_width: 1024, indentation: 4, canonical: false
@@ -60,22 +60,22 @@ module DLDInternet
60
60
  0
61
61
  end
62
62
 
63
- desc 'load ARGS', 'load instance types'
63
+ desc 'load PATH', 'load instance types'
64
64
  def load(path)
65
65
  parse_options
66
66
  puts 'load instance types' if options[:verbose]
67
67
 
68
- it = DLDInternet::AWS::EC2::Instance_Types.loadEC2_Instance_Types(path)
68
+ it = DLDInternet::AWS::EC2::Instance_Types.load_ec2_instance_types(path)
69
69
  ap it
70
70
  end
71
71
 
72
- desc 'save', 'save instance types'
72
+ desc 'save PATH', 'save instance types'
73
73
  def save(path)
74
74
  parse_options
75
75
  puts 'save instance types' if options[:verbose]
76
76
 
77
- it = DLDInternet::AWS::EC2::Instance_Types.getEC2_Instance_Types()
78
- DLDInternet::AWS::EC2::Instance_Types.saveEC2_Instance_Types(path, it)
77
+ it = DLDInternet::AWS::EC2::Instance_Types.get_ec2_instance_types()
78
+ DLDInternet::AWS::EC2::Instance_Types.save_ec2_instance_types(path, it)
79
79
  end
80
80
 
81
81
  default_task 'get'
@@ -1,6 +1,5 @@
1
1
  require 'thor'
2
2
  require 'awesome_print'
3
- require 'dldinternet/aws/ec2/instance_types/scraper'
4
3
  require 'colorize'
5
4
  require 'json'
6
5
  require 'yaml'
@@ -23,7 +22,7 @@ module DLDInternet
23
22
  parse_options
24
23
  puts 'load instance types' if options[:verbose]
25
24
 
26
- it = loadEC2_Instance_Types(path)
25
+ it = load_ec2_instance_types(path)
27
26
  ap it
28
27
  end
29
28
 
@@ -32,8 +31,8 @@ module DLDInternet
32
31
  parse_options
33
32
  puts 'save instance types' if options[:verbose]
34
33
 
35
- it = getEC2_Instance_Types()
36
- saveEC2_Instance_Types(path, it)
34
+ it = get_ec2_instance_types()
35
+ save_ec2_instance_types(path, it)
37
36
  end
38
37
  end
39
38
  end
@@ -2,7 +2,7 @@ require 'thor'
2
2
  require 'awesome_print'
3
3
  require 'inifile'
4
4
  require 'colorize'
5
- require 'dldinternet/aws/ec2/instance_types/scraper'
5
+ require 'dldinternet/aws/ec2/instance_types/aws-pricing-api-client'
6
6
 
7
7
  module DLDInternet
8
8
  module AWS
@@ -11,7 +11,7 @@ module DLDInternet
11
11
  module MixIns
12
12
  module EC2_Instance_Types
13
13
 
14
- def getFileFormat(path)
14
+ def get_file_format(path)
15
15
  format = case File.extname(File.basename(path)).downcase
16
16
  when /json|js/
17
17
  'json'
@@ -22,8 +22,8 @@ module DLDInternet
22
22
  end
23
23
  end
24
24
 
25
- def saveEC2_Instance_Types(path,it)
26
- format = getFileFormat(path)
25
+ def save_ec2_instance_types(path, it)
26
+ format = get_file_format(path)
27
27
  begin
28
28
  File.open path, File::CREAT|File::TRUNC|File::RDWR, 0644 do |f|
29
29
  case format
@@ -43,8 +43,8 @@ module DLDInternet
43
43
  0
44
44
  end
45
45
 
46
- def loadEC2_Instance_Types(path)
47
- format = getFileFormat(path)
46
+ def load_ec2_instance_types(path)
47
+ format = get_file_format(path)
48
48
  spec = File.read(path)
49
49
  case format
50
50
  when /json/
@@ -61,20 +61,16 @@ module DLDInternet
61
61
  end
62
62
  end
63
63
 
64
- def getEC2_Instance_Types(mechanize=nil)
65
- unless mechanize
66
- require 'mechanize'
67
- mechanize = ::Mechanize.new
68
- mechanize.open_timeout = 5
69
- mechanize.read_timeout = 10
70
- end
64
+ # noinspection RubyDefParenthesesInspection
65
+ def get_ec2_instance_types()
71
66
 
72
- scraper = DLDInternet::AWS::EC2::Instance_Types::Scraper.new()
67
+ client = DLDInternet::AWS::EC2::Instance_Types::AWSPricingAPIClient.new()
73
68
 
74
69
  begin
75
- return scraper.getInstanceTypes(:mechanize => mechanize)
76
- rescue Timeout::Error => e
77
- puts "Unable to retrieve instance type details in a reasonable time (#{mechanize.open_timeout}s). Giving up ...".light_red
70
+ # noinspection RubyParenthesesAfterMethodCallInspection
71
+ return client.get_instance_types()
72
+ rescue Exception => e
73
+ puts "Unable to retrieve instance type details. Giving up ...".light_red
78
74
  return nil
79
75
  end
80
76
  end
@@ -3,7 +3,7 @@ module DLDInternet
3
3
  module EC2
4
4
  module Instance_Types
5
5
  # aws-ec2-instance_types version
6
- VERSION = '1.4.1'
6
+ VERSION = '2.0.0'
7
7
  end
8
8
  end
9
9
  end
@@ -0,0 +1,3018 @@
1
+ <!DOCTYPE html> <!--[if lt IE 7]>
2
+ <html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7 lang-en lang-en_US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"
3
+ xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]--><!--[if IE 7]>
4
+ <html class="no-js lt-ie10 lt-ie9 lt-ie8 lang-en lang-en_US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"
5
+ xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]--><!--[if IE 8]>
6
+ <html class="no-js lt-ie10 lt-ie9 lang-en lang-en_US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"
7
+ xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]--><!--[if IE 9]>
8
+ <html class="no-js lt-ie10 lang-en lang-en_US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"
9
+ xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"><![endif]--><!--[if gt IE 9]><!-->
10
+ <html class="no-js lang-en lang-en_US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#"
11
+ xmlns:fb="http://www.facebook.com/2008/fbml"> <!--<![endif]-->
12
+ <head>
13
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8">
14
+ <link rel="dns-prefetch" href="//a0.awsstatic.com">
15
+ <link rel="dns-prefetch" href="//d0.awsstatic.com">
16
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
17
+ <title>AWS | Amazon EC2 | Instance Types</title>
18
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
19
+ <meta name="description" content="">
20
+ <link rel="icon" type="image/ico" href="//a0.awsstatic.com/main/images/site/favicon.ico">
21
+ <link rel="shortcut icon" type="image/ico" href="//a0.awsstatic.com/main/images/site/favicon.ico">
22
+ <link rel="apple-touch-icon" sizes="57x57"
23
+ href="//a0.awsstatic.com/main/images/site/touch-icon-iphone-114-precomposed.png">
24
+ <link rel="apple-touch-icon" sizes="72x72"
25
+ href="//a0.awsstatic.com/main/images/site/touch-icon-ipad-144-precomposed.png">
26
+ <link rel="apple-touch-icon" sizes="114x114"
27
+ href="//a0.awsstatic.com/main/images/site/touch-icon-iphone-114-precomposed.png">
28
+ <link rel="apple-touch-icon" sizes="144x144"
29
+ href="//a0.awsstatic.com/main/images/site/touch-icon-ipad-144-precomposed.png">
30
+ <meta property="twitter:card" content="summary">
31
+ <meta property="twitter:title" content="AWS | Amazon EC2 | Instance Types">
32
+ <meta property="twitter:description" content="">
33
+ <meta property="twitter:image" content="//a0.awsstatic.com/main/images/open-graph/opengraph.gif">
34
+ <meta property="twitter:site" content="@awscloud">
35
+ <meta property="og:title" content="AWS | Amazon EC2 | Instance Types">
36
+ <meta property="og:type" content="company">
37
+ <meta property="og:url" content="//aws.amazon.com/ec2/instance-types/">
38
+ <meta property="og:image" content="//a0.awsstatic.com/main/images/open-graph/opengraph.gif">
39
+ <meta property="og:site_name" content="Amazon Web Services, Inc.">
40
+ <meta name="google-site-verification" content="XHghG81ulgiW-3EylGcF48sG28tBW5EH0bNUhgo_DrU">
41
+ <meta name="msvalidate.01" content="6F92E52A288E266E30C2797ECB5FCCF3">
42
+ <link rel="canonical" href="http://aws.amazon.com/ec2/instance-types/">
43
+ <link rel="alternate" href="//aws.amazon.com/de/ec2/instance-types/" hreflang="de-de">
44
+ <link rel="alternate" href="//aws.amazon.com/es/ec2/instance-types/" hreflang="es-es">
45
+ <link rel="alternate" href="//aws.amazon.com/fr/ec2/instance-types/" hreflang="fr-fr">
46
+ <link rel="alternate" href="//aws.amazon.com/jp/ec2/instance-types/" hreflang="ja-jp">
47
+ <link rel="alternate" href="//aws.amazon.com/pt/ec2/instance-types/" hreflang="pt-br">
48
+ <link rel="alternate" href="//aws.amazon.com/ko/ec2/instance-types/" hreflang="ko-kr">
49
+ <link rel="alternate" href="//aws.amazon.com/cn/ec2/instance-types/" hreflang="zh-cn">
50
+ <link rel="stylesheet" href="//a0.awsstatic.com/main/css/1.0.19/style.css">
51
+ <!--[if lt IE 9]>
52
+ <script src="//a0.awsstatic.com/chrome/js/1.0.30/jquery.1.9.js"></script> <![endif]-->
53
+ <!--[if (gte IE 9) | (!IE)]><!-->
54
+ <script src="//a0.awsstatic.com/chrome/js/1.0.30/jquery.2.0.js"></script>
55
+ <!--<![endif]-->
56
+ <script src="//a0.awsstatic.com/s_code/js/1.0.26/awshome_s_code.js"></script>
57
+ <script src="//a0.awsstatic.com/target/1.0.6/aws-target-mediator.js"></script>
58
+ <script>AWS.TargetMediator.init();</script>
59
+ <script src="//a0.awsstatic.com/chrome/js/1.0.30/modernizr.js"></script>
60
+ <script> var require = { baseUrl: "//a0.awsstatic.com/chrome/js/1.0.30/", paths: { "jquery": "jquery-amd" }, deps: ["scripts"], shim: { "scripts": ["jquery"], "forms": ["jquery"], "pricing-table": ["jquery", "scripts"], "plugins/bootstrap.button": ["jquery"], "plugins/bootstrap.collapse": ["jquery"], "plugins/bootstrap.dropdown": ["jquery"], "plugins/bootstrap.popover": ["jquery"], "plugins/bootstrap.tab": ["jquery"], "plugins/bootstrap.tooltip": ["jquery"], "plugins/free-tier": ["jquery", "scripts"], "plugins/jquery.caroufredsel": ["jquery"], "plugins/jquery.fancybox": ["jquery"], "plugins/jwplayer.html5": ["jquery"], "plugins/jwplayer": ["jquery"], "plugins/pbSize": ["jquery"], "plugins/pushstate": ["jquery", "scripts"], "plugins/search-controller": ["jquery"], "plugins/swap-tile": ["jquery"] }, waitSeconds: 15 }; </script>
61
+ <script src="//a0.awsstatic.com/chrome/js/1.0.30/require.js"></script>
62
+ </head>
63
+ <body>
64
+ <header>
65
+ <div class="top-nav">
66
+ <div class="site-meta clearfix">
67
+ <div class="wrapper row"><a class="logo" href="//aws.amazon.com/"
68
+ title="Click here to return to Amazon Web Services homepage"> <span
69
+ class="hlp-ir">Click here to return to Amazon Web Services homepage</span> </a>
70
+
71
+ <div class="aws-nav">
72
+ <div class="language dfo-wrapper">
73
+ <div class="dfo-link"> English   <i class="icon-caret-down"></i></div>
74
+ <div class="dfo language-dfo">
75
+ <div class="nav-menu">
76
+ <ul class="language-list">
77
+ <li><a href="//aws.amazon.com/de/ec2/instance-types/" data-language="de">Deutsch</a>
78
+ </li>
79
+ <li><a href="//aws.amazon.com/ec2/instance-types/" data-language="en">English</a>
80
+ </li>
81
+ <li><a href="//aws.amazon.com/es/ec2/instance-types/?nc1=h_ls" data-language="es">Español</a>
82
+ </li>
83
+ <li><a href="//aws.amazon.com/fr/ec2/instance-types/?nc1=h_ls" data-language="fr">Français</a>
84
+ </li>
85
+ <li><a href="//aws.amazon.com/jp/ec2/instance-types/?nc1=h_ls" data-language="jp">日本語</a>
86
+ </li>
87
+ <li><a href="//aws.amazon.com/pt/ec2/instance-types/?nc1=h_ls" data-language="pt">Português</a>
88
+ </li>
89
+ <li><a href="//aws.amazon.com/ko/ec2/instance-types/?nc1=h_ls" data-language="ko">한국어</a>
90
+ </li>
91
+ <li><a href="//aws.amazon.com/cn/ec2/instance-types/?nc1=h_ls" data-language="cn">中文
92
+ (简体)</a></li>
93
+ </ul>
94
+ </div>
95
+ </div>
96
+ </div>
97
+ <div class="account-console dfo-wrapper">
98
+ <div class="dfo-link"><a href="https://console.aws.amazon.com">My Account / Console</a>   <i
99
+ class="icon-caret-down"></i></div>
100
+ <div class="dfo account-console-dfo">
101
+ <div class="nav-menu">
102
+ <ul class="account-console-list">
103
+ <li><a id="gtl-console-link" href="https://console.aws.amazon.com?nc1=h_m_mc">AWS
104
+ Management Console</a></li>
105
+ <li><a href="https://portal.aws.amazon.com/gp/aws/manageYourAccount?nc1=h_m_ma">My
106
+ Account</a></li>
107
+ <li><a href="https://console.aws.amazon.com/billing/home?nc1=h_m_bc">Billing &amp;
108
+ Cost Management</a></li>
109
+ <li>
110
+ <a href="https://console.aws.amazon.com/iam/home?nc1=h_m_sc#security_credential">Security
111
+ Credentials</a></li>
112
+ </ul>
113
+ </div>
114
+ </div>
115
+ </div>
116
+ <div class="topnav-cta-wrapper">
117
+ <div class="js-mbox" data-mbox="en_h_nav_cta">
118
+ <div class="topnav-cta"><a
119
+ href="https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc1=h_ct"
120
+ class="button btn-gold btn-sign-up" id="topnav-cta-button">Sign Up</a></div>
121
+ </div>
122
+ <script>mboxCreate();</script>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ <div class="site-resources clearfix">
128
+ <div class="wrapper row">
129
+ <nav class="products dfo-wrapper">
130
+ <div class="dfo-link"><a href="//aws.amazon.com/products/">AWS Products &amp; Solutions</a>   <i
131
+ class="icon-caret-down"></i></div>
132
+ <div class="dfo products-dfo">
133
+ <div class="nav-menu">
134
+ <ul class="site-list">
135
+ <li data-target="aws-info"><span>AWS &amp; Cloud Computing</span></li>
136
+ </ul>
137
+ <ul class="product-list">
138
+ <li data-target="compute"><span>Compute</span></li>
139
+ <li data-target="network"><span>Networking</span></li>
140
+ <li data-target="storage"><span>Storage &amp; Content Delivery</span></li>
141
+ <li data-target="database"><span>Databases</span></li>
142
+ <li data-target="analytics"><span>Analytics</span></li>
143
+ <li data-target="app-service"><span>App Services</span></li>
144
+ <li data-target="deployment"><span>Deployment &amp; Management</span></li>
145
+ <li data-target="mobile"><span>Mobile Services</span></li>
146
+ <li data-target="applications"><span>Applications</span></li>
147
+ <li data-target="marketplace"><span>AWS Marketplace Software</span></li>
148
+ </ul>
149
+ <ul class="use-case-list">
150
+ <li data-target="start-ups"><span>Start-ups</span></li>
151
+ <li data-target="enterprises"><span>Enterprises</span></li>
152
+ <li data-target="partners"><span>Partners</span></li>
153
+ <li data-target="public"><span>Government &amp; Education</span></li>
154
+ </ul>
155
+ <ul class="service-list">
156
+ <li data-target="websites"><span>Websites &amp; Web Apps</span></li>
157
+ <li data-target="archive"><span>Backup, Storage, &amp; Archive</span></li>
158
+ <li data-target="hpc"><span>Big Data &amp; HPC</span></li>
159
+ <li data-target="gaming"><span>Gaming</span></li>
160
+ <li data-target="digital-media"><span>Digital Media</span></li>
161
+ </ul>
162
+ </div>
163
+ <div class="product-info">
164
+ <div class="info-item" id="aws-info">
165
+ <div class="item-list">
166
+ <ul>
167
+ <li class="heading">AWS &amp; Cloud Computing</li>
168
+ <li><a href="//aws.amazon.com/what-is-cloud-computing/?nc1=h_l2_cc"><strong>What
169
+ is Cloud Computing?</strong><br><span>Learn more about Cloud Computing with AWS</span></a>
170
+ </li>
171
+ <li><a href="//aws.amazon.com/choosing-a-cloud-platform/?nc1=h_l2_cc"><strong>Choosing
172
+ a Cloud
173
+ Platform</strong><br><span>Cloud Platform Evaluation Checklist</span></a>
174
+ </li>
175
+ <li><a href="//aws.amazon.com/getting-started/?nc1=h_l2_cc"><strong>Getting
176
+ Started</strong><br><span>Learn how to start using AWS in under 15 minutes</span></a>
177
+ </li>
178
+ <li>
179
+ <a href="//aws.amazon.com/about-aws/globalinfrastructure/?nc1=h_l2_cc"><strong>Global
180
+ Infrastructure</strong><br><span>Find AWS Regions and Edge Locations around the world</span></a>
181
+ </li>
182
+ <li><a href="//aws.amazon.com/economics/?nc1=h_l2_cc"><strong>Economics
183
+ Center</strong><br><span>Learn more about AWS TCO benefits and pricing</span></a>
184
+ </li>
185
+ <li><a href="//aws.amazon.com/solutions/case-studies/?nc1=h_l2_cc"><strong>Customer
186
+ Success Stories</strong></a></li>
187
+ <li><a href="//aws.amazon.com/new/?nc1=h_l2_cc"><strong>What's New</strong></a>
188
+ </li>
189
+ <li><a href="//aws.amazon.com/about-aws/media-coverage/?nc1=h_l2_cc"><strong>Media
190
+ Coverage</strong></a></li>
191
+ <li><a href="//aws.amazon.com/resources/analyst-reports/?nc1=h_l2_cc"><strong>Analyst
192
+ Reports</strong></a></li>
193
+ <li>
194
+ <a href="//aws.amazon.com/about-aws/events/?nc1=h_l2_cc"><strong>Events</strong></a>
195
+ </li>
196
+ <li><a href="http://www.youtube.com/user/AmazonWebServices"
197
+ target="_blank"><strong>Videos</strong> <span class="hlp-if"></span></a>
198
+ </li>
199
+ <li><a href="//aws.amazon.com/blogs/aws/?nc1=h_l2_cc"><strong>AWS Blog</strong></a>
200
+ </li>
201
+ <li><a href="//aws.amazon.com/premiumsupport/?nc1=h_l2_cc"><strong>AWS
202
+ Support</strong><br><span>Technical support available 24x7 by AWS engineers</span></a>
203
+ </li>
204
+ <li>
205
+ <a href="//aws.amazon.com/whitepapers/?nc1=h_l2_cc"><strong>Whitepapers</strong></a>
206
+ </li>
207
+ </ul>
208
+ </div>
209
+ <div class="promo"><a href="//aws.amazon.com/economics/?nc1=h_l3_cc"
210
+ class="promo-boxlink">
211
+ <div><strong class="txt-green">Economics</strong>
212
+
213
+ <p>Find calculators and other tools to help you lower costs with the AWS
214
+ Cloud.</p> <span class="hlp-linkText">Learn more »</span>
215
+ </div>
216
+ </a> <a href="//aws.amazon.com/security/?nc1=h_l3_cc" class="promo-boxlink">
217
+ <div><strong class="txt-red">Security</strong>
218
+
219
+ <p>Learn about AWS Cloud security and how to build secure applications.</p>
220
+ <span class="hlp-linkText">Learn more »</span></div>
221
+ </a> <a href="//aws.amazon.com/architecture/?nc1=h_l3_cc" class="promo-boxlink">
222
+ <div><strong class="txt-blue">Architecture</strong>
223
+
224
+ <p>Learn how to build scalable and reliable applications in the AWS Cloud.</p>
225
+ <span class="hlp-linkText">Learn more »</span></div>
226
+ </a></div>
227
+ </div>
228
+ <div class="info-item" id="compute">
229
+ <div class="item-list">
230
+ <ul>
231
+ <li class="heading">Compute</li>
232
+ <li><a href="//aws.amazon.com/ec2/?nc1=h_l2_c"><strong>Amazon
233
+ EC2</strong><br><span>Virtual Servers in the Cloud</span></a></li>
234
+ <li><a href="//aws.amazon.com/autoscaling/?nc1=h_l2_c"><strong>Auto
235
+ Scaling</strong></a></li>
236
+ <li><a href="//aws.amazon.com/vpc/?nc1=h_l2_c"><strong>Amazon
237
+ VPC</strong><br><span>Isolated Cloud Resources</span></a></li>
238
+ <li><a href="//aws.amazon.com/elasticloadbalancing/?nc1=h_l2_c"><strong>Elastic
239
+ Load Balancing</strong></a></li>
240
+ </ul>
241
+ <ul class="marketplace-links">
242
+ <li class="marketplace-header"><a
243
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_ec2"><strong>AWS
244
+ Marketplace »</strong></a></li>
245
+ <li>
246
+ <a href="https://aws.amazon.com/marketplace/pp/B00A6KUVBW/ref=mkt_ste_l2_ec2_f1?nc1=h_l2_c"><strong>CentOS
247
+ 6</strong> <span class="hlp-if"></span></a></li>
248
+ <li>
249
+ <a href="https://aws.amazon.com/marketplace/pp/B00B527JQ0/ref=mkt_ste_l2_ec2_f2?nc1=h_l2_c"><strong>Jaspersoft
250
+ Reporting and Analytics for AWS (Hourly)</strong> <span
251
+ class="hlp-if"></span></a></li>
252
+ <li>
253
+ <a href="https://aws.amazon.com/marketplace/pp/B00BF5GBVQ/ref=mkt_ste_l2_ec2_f3?nc1=h_l2_c"><strong>Zend
254
+ Server Professional Edition PHP 5.4</strong> <span
255
+ class="hlp-if"></span></a></li>
256
+ <li>
257
+ <a href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_ec2_Category?nc1=h_l2_c?nc1=h_l2_c"><strong>View
258
+ All Related Products (1600+) »</strong></a></li>
259
+ </ul>
260
+ </div>
261
+ <a href="//aws.amazon.com/free/?nc1=h_l3_c">
262
+ <div class="promo promo-pad">
263
+ <div class="promo-title"> Try AWS for Free</div>
264
+ <span class="button btn-gold btn-block">Get Started Now »</span>
265
+
266
+ <p><b>AWS Free Tier Includes:</b></p>
267
+
268
+ <p><b>750 hours</b> of Amazon EC2 running Linux or Windows Micro Instances each
269
+ month for one year.<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
270
+ </p></div>
271
+ </a></div>
272
+ <div class="info-item" id="network">
273
+ <div class="item-list">
274
+ <ul>
275
+ <li class="heading">Networking</li>
276
+ <li><a href="//aws.amazon.com/vpc/?nc1=h_l2_n"><strong>Amazon
277
+ VPC</strong><br><span>Isolated Cloud Resources</span></a></li>
278
+ <li><a href="//aws.amazon.com/directconnect/?nc1=h_l2_n"><strong>AWS Direct
279
+ Connect</strong><br><span>Dedicated Network Connection to AWS</span></a>
280
+ </li>
281
+ <li><a href="//aws.amazon.com/route53/?nc1=h_l2_n"><strong>Amazon Route
282
+ 53</strong><br><span>Scalable Domain Name System (DNS)</span></a></li>
283
+ <li><a href="//aws.amazon.com/elasticloadbalancing/?nc1=h_l2_n"><strong>Elastic
284
+ Load Balancing</strong></a></li>
285
+ </ul>
286
+ <ul class="marketplace-links">
287
+ <li class="marketplace-header"><a
288
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_ec2"><strong>AWS
289
+ Marketplace »</strong></a></li>
290
+ <li>
291
+ <a href="https://aws.amazon.com/marketplace/pp/B00DJDRZB2/ref=mkt_ste_l2_nw_f1?nc1=h_l2_n"><strong>Sophos
292
+ UTM 9</strong> <span class="hlp-if"></span></a></li>
293
+ <li>
294
+ <a href="https://aws.amazon.com/marketplace/pp/B009I5TLOE/ref=mkt_ste_l2_nw_f2?nc1=h_l2_n"><strong>Vyatta
295
+ Virtual Router/Firewall/VPN</strong> <span class="hlp-if"></span></a>
296
+ </li>
297
+ <li>
298
+ <a href="https://aws.amazon.com/marketplace/pp/B00A9ZLKFK/ref=mkt_ste_l2_nw_f3?nc1=h_l2_n"><strong>NetScaler
299
+ VPX Platinum Edition - 10 Mbps</strong> <span
300
+ class="hlp-if"></span></a></li>
301
+ <li>
302
+ <a href="https://aws.amazon.com/marketplace/b/2649366011/ref=mkt_ste_l2_nw_Category?nc1=h_l2_n"><strong>View
303
+ All Related Products (175+) »</strong></a></li>
304
+ </ul>
305
+ </div>
306
+ <a href="//aws.amazon.com/free/?nc1=h_l3_n">
307
+ <div class="promo promo-pad">
308
+ <div class="promo-title"> Try AWS for Free</div>
309
+ <span class="button btn-gold btn-block">Get Started Now »</span>
310
+
311
+ <p><b>AWS Free Tier Includes:</b></p>
312
+
313
+ <p><b>750 hours</b> of Amazon EC2 running Linux or Windows Micro Instances each
314
+ month for one year.<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
315
+ </p></div>
316
+ </a></div>
317
+ <div class="info-item" id="storage">
318
+ <div class="item-list">
319
+ <ul>
320
+ <li class="heading">Storage &amp; Content Delivery</li>
321
+ <li><a href="//aws.amazon.com/s3/?nc1=h_l2_sc"><strong>Amazon
322
+ S3</strong><br><span>Scalable Storage in the Cloud</span></a></li>
323
+ <li><a href="//aws.amazon.com/glacier/?nc1=h_l2_sc"><strong>Amazon
324
+ Glacier</strong><br><span>Low-Cost Archive Storage in the Cloud</span></a>
325
+ </li>
326
+ <li><a href="//aws.amazon.com/ebs/?nc1=h_l2_sc"><strong>Amazon
327
+ EBS</strong><br><span>EC2 Block Storage Volumes</span></a></li>
328
+ <li><a href="//aws.amazon.com/storagegateway/?nc1=h_l2_sc"><strong>AWS Storage
329
+ Gateway</strong><br><span>Integrates on-premises IT environments with Cloud storage</span></a>
330
+ </li>
331
+ <li><a href="//aws.amazon.com/cloudfront/?nc1=h_l2_sc"><strong>Amazon
332
+ CloudFront</strong><br><span>Global Content Delivery Network (CDN)</span></a>
333
+ </li>
334
+ <li><a href="//aws.amazon.com/importexport/?nc1=h_l2_sc"><strong>AWS
335
+ Import/Export</strong><br><span>Large Volume Data Transfer</span></a></li>
336
+ </ul>
337
+ <ul class="marketplace-links">
338
+ <li class="marketplace-header"><a
339
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_StorageCDN"><strong>AWS
340
+ Marketplace »</strong></a></li>
341
+ <li>
342
+ <a href="https://aws.amazon.com/marketplace/pp/B00IPTQDI6/ref=mkt_ste_l2_s3cdn_f1?nc1=h_l2_n"><strong>Wowza
343
+ Streaming Engine 4: Standard</strong> <span class="hlp-if"></span></a>
344
+ </li>
345
+ <li>
346
+ <a href="https://aws.amazon.com/marketplace/pp/B00IGJMIOI/ref=mkt_ste_l2_s3cdn_f2?nc1=h_l2_n"><strong>Adobe
347
+ Media Server 5 Extended</strong> <span class="hlp-if"></span></a></li>
348
+ <li>
349
+ <a href="https://aws.amazon.com/marketplace/pp/B00EQE493U/ref=mkt_ste_l2_s3cdn_f3?nc1=h_l2_n"><strong>SoftNAS
350
+ Cloud</strong> <span class="hlp-if"></span></a></li>
351
+ <li>
352
+ <a href="https://aws.amazon.com/marketplace/b/2649337011/ref=mkt_ste_l2_S3CDN?page=1&amp;category=2649337011&amp;nc1=h_l2_n"><strong>View
353
+ All Related Products (90+) »</strong></a></li>
354
+ </ul>
355
+ </div>
356
+ <a href="//aws.amazon.com/free/?nc1=h_l3_sc">
357
+ <div class="promo promo-pad">
358
+ <div class="promo-title"> Try AWS for Free</div>
359
+ <span class="button btn-gold btn-block">Get Started Now »</span>
360
+
361
+ <p><b>AWS Free Tier Includes:</b></p>
362
+
363
+ <p><b>5 GB</b> of Amazon S3 standard storage and <b>30 GB</b> of Amazon EBS
364
+ Storage for one year.<br><br> <b>50 GB</b> Data Transfer Out and <b>2,000,000
365
+ HTTP and HTTPS</b> Requests for Amazon CloudFront for one year.<br><br>
366
+ <span class="hlp-linkText">AWS Free Tier Details »</span></p></div>
367
+ </a></div>
368
+ <div class="info-item" id="database">
369
+ <div class="item-list">
370
+ <ul>
371
+ <li class="heading">Databases</li>
372
+ <li><a href="//aws.amazon.com/rds/?nc1=h_l2_db"><strong>Amazon
373
+ RDS</strong><br><span>Managed Relational Database Service for MySQL, Oracle, SQL Server, and PostgreSQL</span></a>
374
+ </li>
375
+ <li><a href="//aws.amazon.com/dynamodb/?nc1=h_l2_db"><strong>Amazon
376
+ DynamoDB</strong><br><span>Fast, Predictable, Highly-scalable NoSQL data store</span></a>
377
+ </li>
378
+ <li><a href="//aws.amazon.com/redshift/?nc1=h_l2_db"><strong>Amazon
379
+ Redshift</strong><br><span>Fast, Powerful, Fully Managed, Petabyte-scale Data Warehouse Service</span></a>
380
+ </li>
381
+ <li><a href="//aws.amazon.com/elasticache/?nc1=h_l2_db"><strong>Amazon
382
+ ElastiCache</strong><br><span>In-Memory Caching Service</span></a></li>
383
+ </ul>
384
+ <ul class="marketplace-links">
385
+ <li class="marketplace-header"><a
386
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_db"><strong>AWS
387
+ Marketplace »</strong></a></li>
388
+ <li>
389
+ <a href="https://aws.amazon.com/marketplace/pp/B008DWS6GC/ref=mkt_ste_l2_db_f1?nc1=h_l2_db"><strong>MONyog
390
+ - RDS MySQL Monitor and Advisor</strong> <span
391
+ class="hlp-if"></span></a></li>
392
+ <li>
393
+ <a href="https://aws.amazon.com/marketplace/pp/B009KA3CRY/ref=mkt_ste_l2_db_f2?nc1=h_l2_db"><strong>SAP
394
+ HANA One</strong> <span class="hlp-if"></span></a></li>
395
+ <li>
396
+ <a href="https://aws.amazon.com/marketplace/pp/B00909GAR4/ref=mkt_ste_l2_db_f3?nc1=h_l2_db"><strong>ScaleArc
397
+ iDB Enterprise for MySQL</strong> <span class="hlp-if"></span></a></li>
398
+ <li>
399
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_database_category?page=1&amp;category=2649364011&amp;nc1=h_l2_db"><strong>View
400
+ All Related Products (90+) »</strong></a></li>
401
+ </ul>
402
+ </div>
403
+ <a href="//aws.amazon.com/free/?nc1=h_l3_db">
404
+ <div class="promo promo-pad">
405
+ <div class="promo-title"> Try AWS for Free</div>
406
+ <span class="button btn-gold btn-block">Get Started Now »</span>
407
+
408
+ <p><b>AWS Free Tier Includes:</b></p>
409
+
410
+ <p><b>20 GB</b> of storage for Amazon RDS (MySQL, PostgreSQL, Oracle and MS SQL
411
+ Server*)<br><br> <b>100 MB</b> of storage, <b>5 units</b> of write capacity,
412
+ and <br><b>10 units</b> of read capacity for Amazon DynamoDB.<br><br> <span
413
+ class="hlp-linkText">AWS Free Tier Details »</span></p></div>
414
+ </a></div>
415
+ <div class="info-item" id="analytics">
416
+ <div class="item-list">
417
+ <ul>
418
+ <li class="heading">Analytics</li>
419
+ <li><a href="//aws.amazon.com/kinesis/?nc1=h_l2_al"><strong>Amazon
420
+ Kinesis</strong><br><span>Real-Time Data Stream Processing</span></a></li>
421
+ <li><a href="//aws.amazon.com/redshift/?nc1=h_l2_al"><strong>Amazon
422
+ Redshift</strong><br><span>Fast, Powerful, Fully Managed, Petabyte-scale Data Warehouse Service</span></a>
423
+ </li>
424
+ <li><a href="//aws.amazon.com/elasticmapreduce/?nc1=h_l2_al"><strong>Amazon
425
+ EMR</strong><br><span>Hosted Hadoop Framework</span></a></li>
426
+ <li><a href="//aws.amazon.com/datapipeline/?nc1=h_l2_al"><strong>AWS Data
427
+ Pipeline</strong><br><span>Orchestration Service for Periodic, Data-Driven Workflows</span></a>
428
+ </li>
429
+ <li><a href="//aws.amazon.com/mobileanalytics/?nc1=h_l2_al"><strong>Amazon
430
+ Mobile
431
+ Analytics</strong><br><span>Fast, secure app usage analytics</span></a></li>
432
+ </ul>
433
+ <ul class="marketplace-links">
434
+ <li class="marketplace-header"><a
435
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_analytics"><strong>AWS
436
+ Marketplace »</strong></a></li>
437
+ <li>
438
+ <a href="https://aws.amazon.com/marketplace/pp/B00B527JQ0/ref=mkt_ste_l2_analytics_f1?nc1=h_l2_al"><strong>Jaspersoft
439
+ Reporting and Analytics for AWS (Hourly)</strong> <span
440
+ class="hlp-if"></span></a></li>
441
+ <li>
442
+ <a href="https://aws.amazon.com/marketplace/pp/B009KA3CRY/ref=mkt_ste_l2_analytics_f2?nc1=h_l2_al"><strong>SAP
443
+ HANA One</strong> <span class="hlp-if"></span></a></li>
444
+ <li>
445
+ <a href="https://aws.amazon.com/marketplace/pp/B00IO6H6KE/ref=mkt_ste_l2_analytics_f3?nc1=h_l2_al"><strong>Revolution
446
+ R Enterprise 7</strong> <span class="hlp-if"></span></a></li>
447
+ <li>
448
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_analytics_category?page=1&amp;searchTerms=analytics&amp;nc1=h_l2_al"><strong>View
449
+ All Related Products (175+) »</strong></a></li>
450
+ </ul>
451
+ </div>
452
+ <a href="//aws.amazon.com/free/?nc1=h_l3_al">
453
+ <div class="promo promo-pad">
454
+ <div class="promo-title"> Try AWS for Free</div>
455
+ <span class="button btn-gold btn-block">Get Started Now »</span>
456
+
457
+ <p><b>AWS Free Tier Includes:</b></p>
458
+
459
+ <p><b>750 hours</b> of Amazon EC2 running Linux or Windows Micro Instances each
460
+ month for one year.<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
461
+ </p></div>
462
+ </a></div>
463
+ <div class="info-item" id="app-service">
464
+ <div class="item-list">
465
+ <ul>
466
+ <li class="heading">App Services</li>
467
+ <li><a href="//aws.amazon.com/cloudsearch/?nc1=h_l2_as"><strong>Amazon
468
+ CloudSearch</strong><br><span>Managed Search Service</span></a></li>
469
+ <li><a href="//aws.amazon.com/appstream/?nc1=h_l2_as"><strong>Amazon
470
+ AppStream</strong><br><span>Low-Latency Application Streaming</span></a>
471
+ </li>
472
+ <li><a href="//aws.amazon.com/ses/?nc1=h_l2_as"><strong>Amazon
473
+ SES</strong><br><span>Email Sending Service</span></a></li>
474
+ <li><a href="//aws.amazon.com/sqs/?nc1=h_l2_as"><strong>Amazon
475
+ SQS</strong><br><span>Message Queue Service</span></a></li>
476
+ <li><a href="//aws.amazon.com/sns/?nc1=h_l2_as"><strong>Amazon
477
+ SNS</strong><br><span>Push Notification Service</span></a></li>
478
+ <li><a href="//aws.amazon.com/swf/?nc1=h_l2_as"><strong>Amazon
479
+ SWF</strong><br><span>Workflow service for coordinating application components</span></a>
480
+ </li>
481
+ <li><a href="//aws.amazon.com/fps/?nc1=h_l2_as"><strong>Amazon
482
+ FPS</strong><br><span>API based payment service</span></a></li>
483
+ <li><a href="//aws.amazon.com/elastictranscoder/?nc1=h_l2_as"><strong>Amazon
484
+ Elastic
485
+ Transcoder</strong><br><span>Easy-to-use scalable media transcoding</span></a>
486
+ </li>
487
+ </ul>
488
+ <ul class="marketplace-links">
489
+ <li class="marketplace-header"><a
490
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_app_services"><strong>AWS
491
+ Marketplace »</strong></a></li>
492
+ <li>
493
+ <a href="https://aws.amazon.com/marketplace/pp/B00KXA6KAQ/ref=mkt_ste_l2_app_services_f1?nc1=h_l2_as"><strong>Adobe
494
+ ColdFusion 11</strong> <span class="hlp-if"></span></a></li>
495
+ <li>
496
+ <a href="https://aws.amazon.com/marketplace/pp/B00DIF4A6Y/ref=mkt_ste_l2_app_services_f2?nc1=h_l2_as"><strong>Nginx</strong>
497
+ <span class="hlp-if"></span></a></li>
498
+ <li>
499
+ <a href="https://aws.amazon.com/marketplace/pp/B00A9ZLKFK/ref=mkt_ste_l2_app_services_f3?nc1=h_l2_as"><strong>Citrix
500
+ Netscaler</strong> <span class="hlp-if"></span></a></li>
501
+ <li>
502
+ <a href="https://aws.amazon.com/marketplace/search/ref=mkt_ste_l2_app_svcs?page=2&amp;searchTerms=Application+services&amp;nc1=h_l2_as"><strong>View
503
+ All Related Products (340+) »</strong></a></li>
504
+ </ul>
505
+ </div>
506
+ <a href="//aws.amazon.com/free/?nc1=h_l3_as">
507
+ <div class="promo promo-pad">
508
+ <div class="promo-title"> Try AWS for Free</div>
509
+ <span class="button btn-gold btn-block">Get Started Now »</span>
510
+
511
+ <p><b>AWS Free Tier Includes:</b></p>
512
+
513
+ <p><b>100,000 requests</b> and <b>100,000 HTTP notifications</b> for Amazon SNS
514
+ and <b>100,000</b> Amazon SQS requests each month for one year.<br><br>
515
+ <span class="hlp-linkText">AWS Free Tier Details »</span></p></div>
516
+ </a></div>
517
+ <div class="info-item" id="deployment">
518
+ <div class="item-list">
519
+ <ul>
520
+ <li class="heading">Deployment &amp; Management</li>
521
+ <li><a href="//aws.amazon.com/elasticbeanstalk/?nc1=h_l2_dm"><strong>AWS Elastic
522
+ Beanstalk</strong><br><span>AWS Application Container</span></a></li>
523
+ <li><a href="//aws.amazon.com/opsworks/?nc1=h_l2_dm"><strong>AWS
524
+ OpsWorks</strong><br><span>DevOps Application Management Services</span></a>
525
+ </li>
526
+ <li><a href="//aws.amazon.com/cloudformation/?nc1=h_l2_dm"><strong>AWS
527
+ CloudFormation</strong><br><span>Templates for AWS Resource Creation</span></a>
528
+ </li>
529
+ <li><a href="//aws.amazon.com/cloudtrail/?nc1=h_l2_dm"><strong>AWS
530
+ CloudTrail</strong><br><span>User Activity and Change Tracking</span></a>
531
+ </li>
532
+ <li><a href="//aws.amazon.com/cloudwatch/?nc1=h_l2_dm"><strong>Amazon
533
+ CloudWatch</strong><br><span>Resource and Application Monitoring</span></a>
534
+ </li>
535
+ <li><a href="//aws.amazon.com/iam/?nc1=h_l2_dm"><strong>AWS Identity and Access
536
+ Management
537
+ (IAM)</strong><br><span>Configurable AWS Access Controls</span></a></li>
538
+ <li><a href="//aws.amazon.com/cloudhsm/?nc1=h_l2_dm"><strong>AWS
539
+ CloudHSM</strong><br><span>Hardware-based Key Storage for Regulatory Compliance</span></a>
540
+ </li>
541
+ <li><a href="//aws.amazon.com/console/?nc1=h_l2_dm"><strong>AWS Management
542
+ Console</strong><br><span>Web-Based User Interface</span></a></li>
543
+ <li><a href="//aws.amazon.com/cli/?nc1=h_l2_dm"><strong>AWS Command Line
544
+ Interface</strong><br><span>Unified tool to manage AWS services</span></a>
545
+ </li>
546
+ </ul>
547
+ <ul class="marketplace-links">
548
+ <li class="marketplace-header"><a
549
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_Deployment"><strong>AWS
550
+ Marketplace »</strong></a></li>
551
+ <li>
552
+ <a href="https://aws.amazon.com/marketplace/pp/B00J5RHYEO/ref=mkt_ste_l2_Deployment_f1?nc1=h_l2_dm"><strong>Advanced
553
+ Redmine on Ubuntu powered by Mbridge</strong> <span
554
+ class="hlp-if"></span></a></li>
555
+ <li>
556
+ <a href="https://aws.amazon.com/marketplace/pp/B00E8PL4JO/ref=mkt_ste_l2_Deployment_f2?nc1=h_l2_dm"><strong>Trac
557
+ by TurnKey Linux</strong> <span class="hlp-if"></span></a></li>
558
+ <li>
559
+ <a href="https://aws.amazon.com/marketplace/b/2649274011/ref=mkt_ste_l2_Deployment_cat?nc1=h_l2_dm"><strong>View
560
+ All Related Products (180+) »</strong></a></li>
561
+ </ul>
562
+ </div>
563
+ <a href="//aws.amazon.com/free/?nc1=h_l3_dm">
564
+ <div class="promo promo-pad">
565
+ <div class="promo-title"> Try AWS for Free</div>
566
+ <span class="button btn-gold btn-block">Get Started Now »</span>
567
+
568
+ <p><b>AWS Free Tier Includes:</b></p>
569
+
570
+ <p><b>10 metrics</b>, <b>10 alarms</b>, <b>1M API requests</b> for Amazon
571
+ CloudWatch each month for one year.<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
572
+ </p></div>
573
+ </a></div>
574
+ <div class="info-item" id="mobile">
575
+ <div class="item-list">
576
+ <ul>
577
+ <li class="heading"><a href="//aws.amazon.com/mobile/?nc1=h_l2_ms">Mobile
578
+ Services »</a></li>
579
+ <li><a href="//aws.amazon.com/cognito/?nc1=h_l2_ms"><strong>Amazon
580
+ Cognito</strong><br><span>User identity and data synchronization</span></a>
581
+ </li>
582
+ <li><a href="//aws.amazon.com/mobileanalytics/?nc1=h_l2_ms"><strong>Amazon
583
+ Mobile
584
+ Analytics</strong><br><span>Fast, secure app usage analytics</span></a></li>
585
+ <li><a href="//aws.amazon.com/sns/?nc1=h_l2_ms"><strong>Amazon
586
+ SNS</strong><br><span>Send notifications, updates, and promotions across platforms</span></a>
587
+ </li>
588
+ <li><a href="//aws.amazon.com/mobile/sdk/?nc1=h_l2_ms"><strong>AWS Mobile
589
+ SDK</strong><br><span>Build high quality mobile apps quickly and easily</span></a>
590
+ </li>
591
+ </ul>
592
+ </div>
593
+ <a href="//aws.amazon.com/free/?nc1=h_l3_ms">
594
+ <div class="promo promo-pad">
595
+ <div class="promo-title"> Try AWS for Free</div>
596
+ <span class="button btn-gold btn-block">Get Started Now »</span>
597
+
598
+ <p><b>AWS Free Tier Includes:</b></p>
599
+
600
+ <p><b>1,000,000 publishes</b>, <b>1,000,000 mobile push deliveries</b>, <b>100,000
601
+ http/s deliveries</b>, and <b>1,000 email deliveries</b> with Amazon
602
+ SNS.<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span></p>
603
+ </div>
604
+ </a></div>
605
+ <div class="info-item" id="applications">
606
+ <div class="item-list">
607
+ <ul>
608
+ <li class="heading">Applications</li>
609
+ <li><a href="//aws.amazon.com/workspaces/?nc1=h_l2_ap"><strong>Amazon
610
+ WorkSpaces</strong><br><span>Virtual Desktops in the Cloud</span></a></li>
611
+ <li><a href="//aws.amazon.com/zocalo/?nc1=h_l2_ap"><strong>Amazon
612
+ Zocalo</strong><br><span>Secure enterprise document storage and sharing</span></a>
613
+ </li>
614
+ </ul>
615
+ </div>
616
+ <a href="//aws.amazon.com/free/?nc1=h_l3_ap">
617
+ <div class="promo promo-pad">
618
+ <div class="promo-title"> Try AWS for Free</div>
619
+ <span class="button btn-gold btn-block">Get Started Now »</span>
620
+
621
+ <p><b>AWS Free Tier Includes:</b></p>
622
+
623
+ <p><b>750 hours</b> of Amazon EC2 running Linux or Windows Micro Instances each
624
+ month for one year.<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
625
+ </p></div>
626
+ </a></div>
627
+ <div class="info-item" id="marketplace">
628
+ <div class="item-list">
629
+ <ul>
630
+ <li>
631
+ <a href="//aws.amazon.com/marketplace/ref=mkt_ste_l2_mp_logo?nc1=h_l2_mp"><img
632
+ src="//a0.awsstatic.com/main/images/logos/logo-mp-nav.png"
633
+ alt="AWS Marketplace" style="display:block;"></a> <span>Partner software pre-configured to run on AWS</span>
634
+ </li>
635
+ <li>
636
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_infra_sw_all/?page=1&amp;category=2649276011&amp;nc1=h_l2_mp"
637
+ class="marketplace-heading">Infrastructure Software (1120+)</a></li>
638
+ <li>
639
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_app_stacks/?page=1&amp;category=2649362011&amp;nc1=h_l2_mp"><strong>Application
640
+ Stacks</strong></a></li>
641
+ <li>
642
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_op_sys/?page=1&amp;category=2649367011&amp;nc1=h_l2_mp"><strong>Operating
643
+ Systems</strong></a></li>
644
+ <li>
645
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_db/?page=1&amp;category=2649364011&amp;nc1=h_l2_mp"><strong>Databases
646
+ &amp; Caching</strong></a></li>
647
+ <li>
648
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_ntwk_infra/?page=1&amp;category=2649366011&amp;nc1=h_l2_mp"><strong>Network
649
+ Infrastructure</strong></a></li>
650
+ </ul>
651
+ <ul>
652
+ <li>
653
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_biz_sw_all/?page=1&amp;category=2649275011&amp;nc1=h_l2_mp"
654
+ class="marketplace-heading">Business Software (730+)</a></li>
655
+ <li>
656
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_biz_intel/?page=1&amp;category=2649336011&amp;nc1=h_l2_mp"><strong>Business
657
+ Intelligence</strong></a></li>
658
+ <li>
659
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_collab/?page=1&amp;category=5018785011&amp;nc1=h_l2_mp"><strong>Collaboration</strong></a>
660
+ </li>
661
+ <li>
662
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_ctnt_mgmt/?page=1&amp;category=2649338011&amp;nc1=h_l2_mp"><strong>Content
663
+ Management</strong></a></li>
664
+ <li>
665
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_crm/?page=1&amp;category=2649339011&amp;nc1=h_l2_mp"><strong>CRM</strong></a>
666
+ </li>
667
+ </ul>
668
+ <ul>
669
+ <li>
670
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_dev_tools_all/?page=1&amp;category=2649274011&amp;nc1=h_l2_mp"
671
+ class="marketplace-heading">Developer Tools (200+)</a></li>
672
+ <li>
673
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_bug_trk/?page=1&amp;category=2649281011"><strong>Issue
674
+ &amp; Bug Tracking</strong></a></li>
675
+ <li>
676
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_monitoring/?page=1&amp;category=2649280011"><strong>Monitoring</strong></a>
677
+ </li>
678
+ <li>
679
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_source_ctrl/?page=1&amp;category=2649282011&amp;nc1=h_l2_mp"><strong>Source
680
+ Control</strong></a></li>
681
+ <li>
682
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_testing/?page=1&amp;category=2649283011&amp;nc1=h_l2_mp"><strong>Testing</strong></a>
683
+ </li>
684
+ </ul>
685
+ </div>
686
+ <div class="promo">
687
+ <div class="promo-stack-header"> Featured Software</div>
688
+ <a href="https://aws.amazon.com/marketplace/pp/B00A9ZWU0Y/ref=mkt_ste_l2_mpL3Promo1?nc1=h_l3_mp"
689
+ class="navpromo-boxLink">
690
+ <div class="small-promo-box"><img
691
+ src="//a0.awsstatic.com/main/images/nav/marketplace/logo-citrix-mp-nav5.png"
692
+ alt="Citrix"> <br> <span>Citrix NetScaler VPX Platinum</span>
693
+
694
+ <p>Gartner Magic Quadrant Leader in Application Delivery Controller</p>
695
+ </div>
696
+ </a> <a
697
+ href="https://aws.amazon.com/marketplace/pp/B00B527JQ0/ref=mkt_ste_l2_mpL3Promo2?nc1=h_l3_mp"
698
+ class="navpromo-boxLink">
699
+ <div class="small-promo-box"><img
700
+ src="//a0.awsstatic.com/main/images/nav/marketplace/logo-jaspersoft-mp-nav4.png"
701
+ alt="Jaspersoft"> <br> <span>Jaspersoft Reporting &amp; Analytics</span>
702
+
703
+ <p>Commercial open source reporting and analytics server built for AWS</p></div>
704
+ </a>
705
+ <a href="https://aws.amazon.com/marketplace/pp/B00AA27RK4/ref=mkt_ste_l2_mpL3Promo3?nc1=h_l3_mp"
706
+ class="navpromo-boxLink">
707
+ <div class="small-promo-box" style="border-bottom: 0;"><img
708
+ src="//a0.awsstatic.com/main/images/nav/marketplace/logo-debian-mp-nav.png"
709
+ alt="Debian"> <br> <span>Debian image provided by Debian.org</span>
710
+ </div>
711
+ </a></div>
712
+ </div>
713
+ <div class="info-item" id="start-ups">
714
+ <div class="item-list">
715
+ <ul>
716
+ <li class="heading">Start-ups on AWS</li>
717
+ <li><a href="//aws.amazon.com/start-ups/?nc1=h_l2_su"><p class="dfo-a-content">
718
+ Start-ups use AWS for everything their app needs. Launch in a few clicks
719
+ without up front costs.</p> <span class="hlp-linkText">Learn more about Start-ups on AWS »</span></a>
720
+ </li>
721
+ <li class="divider"><a href="//aws.amazon.com/activate/?nc1=h_l2_su"><strong>AWS
722
+ Activate</strong><br><span>Amazon Web Services startup program</span></a>
723
+ </li>
724
+ <li><a href="//aws.amazon.com/web-mobile-social/?nc1=h_l2_su"><strong>Web,
725
+ Mobile, Social</strong><br><span>Power web, social and mobile apps in the Cloud</span></a>
726
+ </li>
727
+ <li><a href="//aws.amazon.com/big-data/?nc1=h_l2_su"><strong>Big
728
+ Data</strong><br><span>Store and process large datasets to solve business problems</span></a>
729
+ </li>
730
+ </ul>
731
+ </div>
732
+ <a href="//aws.amazon.com/free/?nc1=h_l3_su">
733
+ <div class="promo promo-pad">
734
+ <div class="promo-title"> Try AWS for Free</div>
735
+ <span class="button btn-gold btn-block">Get Started Now »</span>
736
+
737
+ <p><b>AWS Free Tier Includes:</b></p>
738
+
739
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
740
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
741
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
742
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
743
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
744
+ </p></div>
745
+ </a></div>
746
+ <div class="info-item" id="enterprises">
747
+ <div class="item-list">
748
+ <ul>
749
+ <li class="heading">Enterprises on AWS</li>
750
+ <li><a href="//aws.amazon.com/enterprise-it/?nc1=h_l2_en"><p
751
+ class="dfo-a-content">Enterprises use AWS to deliver IT innovation
752
+ globally, improving agility and resiliency while reducing costs.</p> <span
753
+ class="hlp-linkText">Learn more about Enterprises on AWS »</span></a>
754
+ </li>
755
+ <li class="divider"><a
756
+ href="//aws.amazon.com/business-applications/?nc1=h_l2_en"><strong>Business
757
+ Applications</strong><br><span>Run enterprise applications in the Cloud</span></a>
758
+ </li>
759
+ <li><a href="//aws.amazon.com/backup-storage/?nc1=h_l2_en"><strong>Backup &amp;
760
+ Storage</strong><br><span>Store and retrieve any data, anywhere, any time</span></a>
761
+ </li>
762
+ <li><a href="//aws.amazon.com/security/?nc1=h_l2_en"><strong>Security
763
+ Center</strong><br><span>Learn about AWS Cloud security and how to build secure applications</span></a>
764
+ </li>
765
+ <li><a href="//aws.amazon.com/economics/?nc1=h_l2_en"><strong>Economics
766
+ Center</strong><br><span>Find calculators and other tools to help you lower costs</span></a>
767
+ </li>
768
+ </ul>
769
+ </div>
770
+ <a href="//aws.amazon.com/free/?nc1=h_l3_en">
771
+ <div class="promo promo-pad">
772
+ <div class="promo-title"> Try AWS for Free</div>
773
+ <span class="button btn-gold btn-block">Get Started Now »</span>
774
+
775
+ <p><b>AWS Free Tier Includes:</b></p>
776
+
777
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
778
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
779
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
780
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
781
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
782
+ </p></div>
783
+ </a></div>
784
+ <div class="info-item" id="partners">
785
+ <div class="item-list">
786
+ <ul>
787
+ <li class="heading">Partners</li>
788
+ <li><a href="//aws.amazon.com/solutions/solution-providers/?nc1=h_l2_p"><strong>Find
789
+ AWS Partners</strong><br><span>Find qualified APN Partners to help you with your AWS projects</span></a>
790
+ </li>
791
+ <li><a href="//aws.amazon.com/partners/overview/?nc1=h_l2_p"><strong>Join the
792
+ AWS Partner Network</strong><br><span>Learn about the benefits and requirements of the APN program</span></a>
793
+ </li>
794
+ <li><a href="https://www.apn-portal.com/?nc1=h_l2_p"><strong>Login to the APN
795
+ Portal</strong><br><span>Download content and engage with AWS through the partner-only section of the AWS website</span></a>
796
+ </li>
797
+ <li>
798
+ <a href="//aws.amazon.com/solutions/premier-consulting-partners/?nc1=h_l2_p"><strong>Premier
799
+ Consulting Partners</strong></a></li>
800
+ </ul>
801
+ </div>
802
+ <div class="promo">
803
+ <div class="promo-stack-header"> FEATURED PARTNERS</div>
804
+ <a href="http://www.aws-partner-directory.com/PartnerDirectory/PartnerDetail?Name=Cloudnexa&amp;nc1=h_l3_p"
805
+ class="navpromo-boxLink">
806
+ <div class="small-promo-box"><img
807
+ src="//a0.awsstatic.com/main/images/nav/partners/cloudnexa-logo-150-transparent.png"
808
+ alt="Cloudnexa"> <br> <span>Cloudnexa</span>
809
+
810
+ <p>Cloud management solutions leader for business and government</p></div>
811
+ </a> <a
812
+ href="http://www.aws-partner-directory.com/PartnerDirectory/PartnerDetail?Name=Trend+Micro+Incorporated&amp;nc1=h_l3_p"
813
+ class="navpromo-boxLink">
814
+ <div class="small-promo-box"><img
815
+ src="//a0.awsstatic.com/main/images/nav/partners/trend-micro-logo-150-transparent.png"
816
+ alt="Trend Micro"> <br> <span>Trend Micro</span>
817
+
818
+ <p>Enterprise-class cloud security optimized for AWS</p></div>
819
+ </a>
820
+ <a href="http://www.aws-partner-directory.com/PartnerDirectory/PartnerDetail?Name=Smartronix&amp;nc1=h_l3_p"
821
+ class="navpromo-boxLink">
822
+ <div class="small-promo-box" style="border-bottom: 0;"><img
823
+ src="//a0.awsstatic.com/main/images/nav/partners/smartronix-logo-150-trans.png"
824
+ alt="Smartronix"> <br> <span>Smartronix</span>
825
+
826
+ <p>Delivering innovative, secure, and agile technology solutions</p></div>
827
+ </a></div>
828
+ </div>
829
+ <div class="info-item" id="public">
830
+ <div class="item-list">
831
+ <ul>
832
+ <li class="heading">Government &amp; Education</li>
833
+ <li><a href="//aws.amazon.com/government-education/?nc1=h_l2_ge"><p
834
+ class="dfo-a-content">Public Sector organizations use AWS to deliver IT
835
+ innovation globally, improving agility and resiliency while reducing
836
+ costs.</p> <span class="hlp-linkText">Learn more about Government &amp; Education »</span></a>
837
+ </li>
838
+ <li class="divider"><a href="//aws.amazon.com/federal/?nc1=h_l2_ge"><strong>Federal
839
+ Government</strong><br><span>Run mission-critical applications in the Cloud for your agency</span></a>
840
+ </li>
841
+ <li><a href="//aws.amazon.com/stateandlocal/?nc1=h_l2_ge"><strong>State and
842
+ Local Government</strong><br><span>Drive efficiencies through the cloud at every level of Government</span></a>
843
+ </li>
844
+ <li><a href="//aws.amazon.com/education/?nc1=h_l2_ge"><strong>Education</strong><br><span>Facilitate demanding research and course objectives with Cloud solutions</span></a>
845
+ </li>
846
+ <li class="divider"><a href="//aws.amazon.com/govcloud-us/?nc1=h_l2_ge"><strong>AWS
847
+ GovCloud (US) Region</strong><br><span>Featuring FIPS 140-2 Compliant End Points for Government Oriented Workloads</span></a>
848
+ </li>
849
+ </ul>
850
+ </div>
851
+ <a href="//aws.amazon.com/free/?nc1=h_l3_ge">
852
+ <div class="promo promo-pad">
853
+ <div class="promo-title"> Try AWS for Free</div>
854
+ <span class="button btn-gold btn-block">Get Started Now »</span>
855
+
856
+ <p><b>AWS Free Tier Includes:</b></p>
857
+
858
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
859
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
860
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
861
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
862
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
863
+ </p></div>
864
+ </a></div>
865
+ <div class="info-item" id="websites">
866
+ <div class="item-list">
867
+ <ul>
868
+ <li class="heading">Websites &amp; Web Apps</li>
869
+ <li>
870
+ <a href="//aws.amazon.com/websites/?nc1=h_l2_wa"><strong>Websites</strong><br><span>Power web, social, and mobile apps in the cloud</span></a>
871
+ </li>
872
+ <li><a href="//aws.amazon.com/ecommerce-applications/?nc1=h_l2_wa"><strong>Ecommerce</strong><br><span>Build secure and scalable online storefronts</span></a>
873
+ </li>
874
+ <li>
875
+ <a href="//aws.amazon.com/mobile/?nc1=h_l2_wa"><strong>Mobile</strong><br><span>Mobile-backend services and SDKs</span></a>
876
+ </li>
877
+ <li><a href="//aws.amazon.com/digital-marketing/?nc1=h_l2_wa"><strong>Digital
878
+ Marketing</strong><br><span>Highly scalable online advertising and marketing services in the cloud</span></a>
879
+ </li>
880
+ <li>
881
+ <a href="//aws.amazon.com/web-applications/social-media/?nc1=h_l2_wa"><strong>Social
882
+ Media</strong><br><span>Run apps that easily respond to viral growth</span></a>
883
+ </li>
884
+ </ul>
885
+ <ul class="marketplace-links">
886
+ <li class="marketplace-header"><a
887
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_L2_WWA"><strong>AWS
888
+ Marketplace »</strong></a></li>
889
+ <li>
890
+ <a href="https://aws.amazon.com/marketplace/pp/B007IP8BKQ/ref=mkt_ste_l2_WebApps_f1?nc1=h_l2_wa"><strong>WordPress
891
+ powered by Bitnami</strong> <span class="hlp-if"></span></a></li>
892
+ <li>
893
+ <a href="https://aws.amazon.com/marketplace/pp/B00GA8K12S/ref=mkt_ste_l2_WebApps_f2?nc1=h_l2_wa"><strong>Movable
894
+ Type 6</strong> <span class="hlp-if"></span></a></li>
895
+ <li>
896
+ <a href="https://aws.amazon.com/marketplace/pp/B007OOIPFM/ref=mkt_ste_l2_WebApps_f3?nc1=h_l2_wa"><strong>aiScaler
897
+ Dynamic Site Acceleration &amp; Traffic Manager</strong> <span
898
+ class="hlp-if"></span></a></li>
899
+ <li>
900
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_WebApps?page=1&amp;category=2649338011&amp;searchTerms=website&amp;nc1=h_l2_wa"><strong>View
901
+ All Related Products (80+) »</strong></a></li>
902
+ </ul>
903
+ </div>
904
+ <a href="//aws.amazon.com/free/?nc1=h_l3_wa">
905
+ <div class="promo promo-pad">
906
+ <div class="promo-title"> Try AWS for Free</div>
907
+ <span class="button btn-gold btn-block">Get Started Now »</span>
908
+
909
+ <p><b>AWS Free Tier Includes:</b></p>
910
+
911
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
912
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
913
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
914
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
915
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
916
+ </p></div>
917
+ </a></div>
918
+ <div class="info-item" id="archive">
919
+ <div class="item-list">
920
+ <ul>
921
+ <li class="heading">Backup, Storage, &amp; Archive</li>
922
+ <li><a href="//aws.amazon.com/backup-storage/?nc1=h_l2_bsa"><strong>Backup and
923
+ Storage</strong><br><span>Store and retrieve any data, anywhere, any time</span></a>
924
+ </li>
925
+ <li><a href="//aws.amazon.com/disaster-recovery/?nc1=h_l2_bsa"><strong>Disaster
926
+ Recovery</strong><br><span>Recover your systems and data quickly from a disaster</span></a>
927
+ </li>
928
+ <li>
929
+ <a href="//aws.amazon.com/archive/?nc1=h_l2_bsa"><strong>Archiving</strong><br><span>Archive your data for long-term retention</span></a>
930
+ </li>
931
+ </ul>
932
+ <ul class="marketplace-links">
933
+ <li class="marketplace-header"><a
934
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_L2_BSA"><strong>AWS
935
+ Marketplace »</strong></a></li>
936
+ <li>
937
+ <a href="https://aws.amazon.com/marketplace/pp/B00E4WSOPS/ref=mkt_ste_l2_Backup_f1?nc1=h_l2_bsa"><strong>Cloud
938
+ Protection Manager Standard Edition</strong> <span
939
+ class="hlp-if"></span></a></li>
940
+ <li>
941
+ <a href="https://aws.amazon.com/marketplace/pp/B00EQE493U/ref=mkt_ste_l2_Backup_f2?nc1=h_l2_bsa"><strong>SoftNAS
942
+ Cloud</strong> <span class="hlp-if"></span></a></li>
943
+ <li>
944
+ <a href="https://aws.amazon.com/marketplace/pp/B00KSK0VJM/ref=mkt_ste_l2_Backup_f3?nc1=h_l2_bsa"><strong>Riverbed
945
+ SteelStore</strong> <span class="hlp-if"></span></a></li>
946
+ <li>
947
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_backup?page=1&amp;searchTerms=backup+archive&amp;nc1=h_l2_bsa"><strong>View
948
+ All Related Products (25+) »</strong></a></li>
949
+ </ul>
950
+ </div>
951
+ <a href="//aws.amazon.com/free/?nc1=h_l3_bsa">
952
+ <div class="promo promo-pad">
953
+ <div class="promo-title"> Try AWS for Free</div>
954
+ <span class="button btn-gold btn-block">Get Started Now »</span>
955
+
956
+ <p><b>AWS Free Tier Includes:</b></p>
957
+
958
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
959
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
960
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
961
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
962
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
963
+ </p></div>
964
+ </a></div>
965
+ <div class="info-item" id="hpc">
966
+ <div class="item-list">
967
+ <ul>
968
+ <li class="heading">Big Data &amp; HPC</li>
969
+ <li><a href="//aws.amazon.com/big-data/?nc1=h_l2_bh"><strong>Big
970
+ Data</strong><br><span>Store and process large datasets to solve business problems</span></a>
971
+ </li>
972
+ <li><a href="//aws.amazon.com/hpc/?nc1=h_l2_bh"><strong>HPC</strong><br><span>Run tightly-coupled and IO-intensive workloads to solve complex science, engineering and business problems</span></a>
973
+ </li>
974
+ </ul>
975
+ <ul class="marketplace-links">
976
+ <li class="marketplace-header"><a
977
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_BigDataHPC"><strong>AWS
978
+ Marketplace »</strong></a></li>
979
+ <li>
980
+ <a href="https://aws.amazon.com/marketplace/pp/B008B7WAAW/ref=mkt_ste_l2_BigDataHPC_f1?nc1=h_l2_bh"><strong>MapR
981
+ M5</strong> <span class="hlp-if"></span></a></li>
982
+ <li>
983
+ <a href="https://aws.amazon.com/marketplace/pp/B0078U7Z9Y/ref=mkt_ste_l2_BigDataHPC_f2?nc1=h_l2_bh"><strong>Univa
984
+ Grid Engine One Click HPC Head Node</strong> <span
985
+ class="hlp-if"></span></a></li>
986
+ <li>
987
+ <a href="https://aws.amazon.com/marketplace/pp/B00A6VX4CE/ref=mkt_ste_l2_BigDataHPC_f3?nc1=h_l2_bh"><strong>ScaleOut
988
+ Analytics Server</strong> <span class="hlp-if"></span></a></li>
989
+ <li>
990
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_bigdata?page=1&amp;category=6153421011&amp;nc1=h_l2_bh"><strong>View
991
+ All Related Products (130+) »</strong></a></li>
992
+ </ul>
993
+ </div>
994
+ <a href="//aws.amazon.com/free/?nc1=h_l3_bh">
995
+ <div class="promo promo-pad">
996
+ <div class="promo-title"> Try AWS for Free</div>
997
+ <span class="button btn-gold btn-block">Get Started Now »</span>
998
+
999
+ <p><b>AWS Free Tier Includes:</b></p>
1000
+
1001
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
1002
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
1003
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
1004
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
1005
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
1006
+ </p></div>
1007
+ </a></div>
1008
+ <div class="info-item" id="gaming">
1009
+ <div class="item-list">
1010
+ <ul>
1011
+ <li class="heading">Gaming</li>
1012
+ <li><a href="//aws.amazon.com/game-hosting/?nc1=h_l2_g"><strong>Game Development
1013
+ and Operations</strong><br><span>Services and infrastructure for mobile, web, PC, and console games</span></a>
1014
+ </li>
1015
+ </ul>
1016
+ <ul class="marketplace-links">
1017
+ <li class="marketplace-header"><a
1018
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_L2_Gaming"><strong>AWS
1019
+ Marketplace »</strong></a></li>
1020
+ <li>
1021
+ <a href="https://aws.amazon.com/marketplace/pp/B00FGB60MK/ref=mkt_ste_l2_Gaming_f1?nc1=h_l2_g"><strong>ORBX
1022
+ Cloud Game Console</strong> <span class="hlp-if"></span></a></li>
1023
+ <li>
1024
+ <a href="https://aws.amazon.com/marketplace/pp/B00FYCBRE2/ref=mkt_ste_l2_Gaming_f2?nc1=h_l2_g"><strong>Windows
1025
+ Server 2008R2 with NVIDIA GRID GPU Driver</strong> <span class="hlp-if"></span></a>
1026
+ </li>
1027
+ <li>
1028
+ <a href="https://aws.amazon.com/marketplace/pp/B008CIX2MA/ref=mkt_ste_l2_Gaming_f3?nc1=h_l2_g"><strong>Red5
1029
+ Media Server</strong> <span class="hlp-if"></span></a></li>
1030
+ <li>
1031
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_gaming?page=1&amp;searchTerms=gaming&amp;nc1=h_l2_g"><strong>View
1032
+ All Related Products (10+) »</strong></a></li>
1033
+ </ul>
1034
+ </div>
1035
+ <a href="//aws.amazon.com/free/?nc1=h_l3_g">
1036
+ <div class="promo promo-pad">
1037
+ <div class="promo-title"> Try AWS for Free</div>
1038
+ <span class="button btn-gold btn-block">Get Started Now »</span>
1039
+
1040
+ <p><b>AWS Free Tier Includes:</b></p>
1041
+
1042
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
1043
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
1044
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
1045
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
1046
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
1047
+ </p></div>
1048
+ </a></div>
1049
+ <div class="info-item" id="digital-media">
1050
+ <div class="item-list">
1051
+ <ul>
1052
+ <li class="heading">Digital Media</li>
1053
+ <li><a href="//aws.amazon.com/digital-media/?nc1=h_l2_d"><strong>Digital
1054
+ Media</strong><br><span>Media storage, archiving, processing, and delivery from the cloud</span></a>
1055
+ </li>
1056
+ </ul>
1057
+ <ul class="marketplace-links">
1058
+ <li class="marketplace-header"><a
1059
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_L2_DM"><strong>AWS
1060
+ Marketplace »</strong></a></li>
1061
+ <li>
1062
+ <a href="https://aws.amazon.com/marketplace/pp/B00IGJMIOI/ref=mkt_ste_l2_DigitalMedia_f1?nc1=h_l2_d"><strong>Adobe
1063
+ Media Server 5 Extended</strong> <span class="hlp-if"></span></a></li>
1064
+ <li>
1065
+ <a href="https://aws.amazon.com/marketplace/pp/B00IPTQDI6/ref=mkt_ste_l2_DigitalMedia_f2?nc1=h_l2_d"><strong>Wowza
1066
+ Streaming Engine 4: Standard</strong> <span class="hlp-if"></span></a>
1067
+ </li>
1068
+ <li>
1069
+ <a href="https://aws.amazon.com/marketplace/pp/B00BJTMBEY/ref=mkt_ste_l2_DigitalMedia_f3?nc1=h_l2_d"><strong>Helix
1070
+ Universal Server Pro</strong> <span class="hlp-if"></span></a></li>
1071
+ <li>
1072
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_media?page=1&amp;category=2649341011&amp;nc1=h_l2_d"><strong>View
1073
+ All Related Products (65+) »</strong></a></li>
1074
+ </ul>
1075
+ </div>
1076
+ <a href="//aws.amazon.com/free/?nc1=h_l3_d">
1077
+ <div class="promo promo-pad">
1078
+ <div class="promo-title"> Try AWS for Free</div>
1079
+ <span class="button btn-gold btn-block">Get Started Now »</span>
1080
+
1081
+ <p><b>AWS Free Tier Includes:</b></p>
1082
+
1083
+ <p><strong class="txt-green">Compute</strong><br> <b>750 hours</b> of Linux and
1084
+ Windows Micro Instances<br><br> <strong class="txt-red">Storage</strong><br>
1085
+ <b>30 GB</b> of Block Storage<br> <b>5 GB</b> of Object Storage<br><br>
1086
+ <strong class="txt-blue">SQL Database</strong><br> <b>750 hours</b> and <b>20
1087
+ GB</b> of database storage<br><br> <span class="hlp-linkText">AWS Free Tier Details »</span>
1088
+ </p></div>
1089
+ </a></div>
1090
+ </div>
1091
+ </div>
1092
+ </nav>
1093
+ <div class="top-search">
1094
+ <form id="nav-search" method="get" action="//aws.amazon.com/search">
1095
+ <div class="input-wrapper"><input name="searchQuery" type="text" class="search-field"> <span
1096
+ class="postfix button search-facet"><span class="current-facet">Entire Site</span>  <i
1097
+ class="icon-caret-down"></i> <select name="searchPath" id="nav-search-dropdown">
1098
+ <option value="all">Entire Site</option>
1099
+ <option value="AWSMarketplace">AMIs from AWS Marketplace</option>
1100
+ <option value="articles">Articles &amp; Tutorials</option>
1101
+ <option value="products_and_info">AWS Product Information</option>
1102
+ <option value="case_studies">Case Studies</option>
1103
+ <option value="customerapps">Customer Apps</option>
1104
+ <option value="developertools">Developer Tools</option>
1105
+ <option value="documentation">Documentation</option>
1106
+ <option value="datasets">Public Data Sets</option>
1107
+ <option value="releasenotes">Release Notes</option>
1108
+ <option value="solution_providers">Partners</option>
1109
+ <option value="code">Sample Code &amp; Libraries</option>
1110
+ </select> </span></div>
1111
+ <div class="facet-wrapper btn-group">
1112
+ <button class="postfix button btn-black search-button" type="submit" form="nav-search"
1113
+ value="Search"><i class="icon-search"></i></button>
1114
+ </div>
1115
+ </form>
1116
+ </div>
1117
+ <div class="resource-wrapper">
1118
+ <div class="developers dfo-wrapper">
1119
+ <div class="dfo-link"><a href="//aws.amazon.com/tools/">Developers</a>   <i
1120
+ class="icon-caret-down"></i></div>
1121
+ <div class="dfo developers-dfo">
1122
+ <div class="nav-menu">
1123
+ <ul class="developer-list">
1124
+ <li><a href="https://console.aws.amazon.com?nc1=h_d_mc">AWS Management Console</a>
1125
+ </li>
1126
+ <li><a href="https://aws.amazon.com/documentation?nc1=h_d_dm">Documentation</a></li>
1127
+ <li class="sdk-tools-list list-heading">SDKs &amp; Tools</li>
1128
+ <li><a href="//aws.amazon.com/developers/getting-started/?nc1=h_d_gs">Get
1129
+ Started</a></li>
1130
+ <li><a href="//aws.amazon.com/tools/?nc1=h_d_dl">Downloads</a></li>
1131
+ <li class="developer-center-list list-heading">Platforms</li>
1132
+ <li><a href="//aws.amazon.com/java/?nc1=h_d_ja">Java</a></li>
1133
+ <li><a href="//aws.amazon.com/javascript/?nc1=h_d_js">JavaScript</a></li>
1134
+ <li><a href="//aws.amazon.com/mobile/?nc1=h_d_mb">Mobile</a></li>
1135
+ <li><a href="//aws.amazon.com/php/?nc1=h_d_ph">PHP</a></li>
1136
+ <li><a href="//aws.amazon.com/ruby/?nc1=h_d_ru">Ruby</a></li>
1137
+ <li><a href="//aws.amazon.com/python/?nc1=h_d_py">Python</a></li>
1138
+ <li><a href="//aws.amazon.com/net/?nc1=h_d_wn">Windows &amp; .NET</a></li>
1139
+ <li class="resources-list list-heading">Resources</li>
1140
+ <li><a href="https://forums.aws.amazon.com?nc1=h_d_fm">Forums</a></li>
1141
+ <li><a href="//aws.amazon.com/articles/?nc1=h_d_ta">Tutorials &amp; Articles</a>
1142
+ </li>
1143
+ <li>
1144
+ <a href="https://aws.amazon.com/marketplace/ref=mkt_ste_dev_resources_nav?nc1=h_d_mp">AWS
1145
+ Marketplace</a></li>
1146
+ <li><a href="//aws.amazon.com/whitepapers/?nc1=h_d_wp">Whitepapers</a></li>
1147
+ <li><a href="//aws.amazon.com/training/?nc1=h_d_tc">Training &amp; Certification</a>
1148
+ </li>
1149
+ <li><a href="//aws.amazon.com/usergroups/?nc1=h_d_ug">AWS User Groups</a></li>
1150
+ </ul>
1151
+ </div>
1152
+ </div>
1153
+ </div>
1154
+ <div class="support dfo-wrapper">
1155
+ <div class="dfo-link"><a href="//aws.amazon.com/support/">Support</a>   <i
1156
+ class="icon-caret-down"></i></div>
1157
+ <div class="dfo support-dfo">
1158
+ <div class="nav-menu">
1159
+ <ul class="support-center-list">
1160
+ <li><a href="https://aws.amazon.com/support?nc1=h_su_sc">Support Center</a></li>
1161
+ </ul>
1162
+ <ul class="support-list">
1163
+ <li><a href="https://forums.aws.amazon.com?nc1=h_su_fm">Forums</a></li>
1164
+ <li><a href="https://aws.amazon.com/documentation?nc1=h_su_dm">Documentation</a>
1165
+ </li>
1166
+ <li><a href="//aws.amazon.com/faqs/?nc1=h_su_tf">Technical FAQs</a></li>
1167
+ <li><a href="http://status.aws.amazon.com/?nc1=h_su_sd">Service Health Dashboard</a>
1168
+ </li>
1169
+ <li><a href="//aws.amazon.com/premiumsupport/?nc1=h_su_sp">AWS Support Plans</a>
1170
+ </li>
1171
+ <li><a href="//aws.amazon.com/contact-us/?nc1=h_su_cu">Contact Us</a></li>
1172
+ </ul>
1173
+ </div>
1174
+ </div>
1175
+ </div>
1176
+ </div>
1177
+ </div>
1178
+ </div>
1179
+ </div>
1180
+ <div id="mobile-nav" class="mobile-nav">
1181
+ <div class="mobile-nav-header">
1182
+ <div class="mobile-nav-container">
1183
+ <div class="mobile-nav-logo"><a class="logo" href="//aws.amazon.com/"
1184
+ title="Click here to return to Amazon Web Services homepage"> <span
1185
+ class="hlp-ir">Click here to return to Amazon Web Services homepage</span> </a></div>
1186
+ <div class="mobile-nav-btn-group">
1187
+ <div class="mobile-nav-btn icon-search" data-dropdown="mobile-nav-dropdown-search"></div>
1188
+ <div class="mobile-nav-btn icon-reorder" data-dropdown="mobile-nav-dropdown-menu"></div>
1189
+ </div>
1190
+ </div>
1191
+ </div>
1192
+ <div id="mobile-nav-dropdown-search" class="mobile-nav-dropdown mobile-nav-dropdown-search">
1193
+ <form action="//aws.amazon.com/search">
1194
+ <div class="mobile-nav-input-append"><input name="searchQuery" type="text" placeholder="Search"
1195
+ title="Search For">
1196
+
1197
+ <div class="mobile-nav-btn-group">
1198
+ <button class="button mobile-nav-btn-search icon-search" type="submit" title="Go"></button>
1199
+ </div>
1200
+ </div>
1201
+ </form>
1202
+ </div>
1203
+ <nav id="mobile-nav-dropdown-menu" class="mobile-nav-dropdown mobile-nav-dropdown-menu">
1204
+ <ul>
1205
+ <li class="parent"><a href="javascript:void(0)">AWS &amp; Cloud Computing</a>
1206
+ <ul>
1207
+ <li><a href="//aws.amazon.com/what-is-cloud-computing/?nc1=h_l2_cc">What is Cloud Computing?</a>
1208
+ </li>
1209
+ <li><a href="//aws.amazon.com/choosing-a-cloud-platform/?nc1=h_l2_cc">Choosing a Cloud
1210
+ Platform</a></li>
1211
+ <li><a href="//aws.amazon.com/getting-started/?nc1=h_l2_cc">Getting Started</a></li>
1212
+ <li><a href="//aws.amazon.com/about-aws/globalinfrastructure/?nc1=h_l2_cc">Global
1213
+ Infrastructure</a></li>
1214
+ <li><a href="//aws.amazon.com/economics/?nc1=h_l2_cc">Economics Center</a></li>
1215
+ <li><a href="//aws.amazon.com/solutions/case-studies/?nc1=h_l2_cc">Customer Success Stories</a>
1216
+ </li>
1217
+ <li><a href="//aws.amazon.com/new/?nc1=h_l2_cc">What's New</a></li>
1218
+ <li><a href="//aws.amazon.com/about-aws/media-coverage/?nc1=h_l2_cc">Media Coverage</a></li>
1219
+ <li><a href="//aws.amazon.com/resources/analyst-reports/?nc1=h_l2_cc">Analyst Reports</a></li>
1220
+ <li><a href="//aws.amazon.com/about-aws/events/?nc1=h_l2_cc">Events</a></li>
1221
+ <li class="mobile-nav-external-link"><a href="http://www.youtube.com/user/AmazonWebServices"
1222
+ target="_blank">Videos</a></li>
1223
+ <li><a href="//aws.amazon.com/blogs/aws/?nc1=h_l2_cc">AWS Blog</a></li>
1224
+ <li><a href="//aws.amazon.com/support/?nc1=h_l2_cc">AWS Support</a></li>
1225
+ <li><a href="//aws.amazon.com/whitepapers/?nc1=h_l2_cc">Whitepapers</a></li>
1226
+ </ul>
1227
+ </li>
1228
+ <li class="parent"><a href="javascript:void(0)">Compute</a>
1229
+ <ul>
1230
+ <li><a href="//aws.amazon.com/ec2/?nc1=h_l2_c">Amazon EC2</a></li>
1231
+ <li><a href="//aws.amazon.com/autoscaling/?nc1=h_l2_c">Auto Scaling</a></li>
1232
+ <li><a href="//aws.amazon.com/vpc/?nc1=h_l2_c">Amazon VPC</a></li>
1233
+ <li><a href="//aws.amazon.com/elasticloadbalancing/?nc1=h_l2_c">Elastic Load Balancing</a></li>
1234
+ <li class="mobile-nav-double-arrow"><a
1235
+ href="https://aws.amazon.com/marketplace/ref=mkt_ste_l2_ec2_Category?nc1=h_l2_c">AWS
1236
+ Marketplace</a></li>
1237
+ </ul>
1238
+ </li>
1239
+ <li class="parent"><a href="javascript:void(0)">Networking</a>
1240
+ <ul>
1241
+ <li><a href="//aws.amazon.com/vpc/?nc1=h_l2_n">Amazon VPC</a></li>
1242
+ <li><a href="//aws.amazon.com/directconnect/?nc1=h_l2_n">AWS Direct Connect</a></li>
1243
+ <li><a href="//aws.amazon.com/route53/?nc1=h_l2_n">Amazon Route 53</a></li>
1244
+ <li><a href="//aws.amazon.com/elasticloadbalancing/?nc1=h_l2_n">Elastic Load Balancing</a></li>
1245
+ <li class="mobile-nav-double-arrow"><a
1246
+ href="https://aws.amazon.com/marketplace/b/2649366011/ref=mkt_ste_l2_nw_Category?nc1=h_l2_n">AWS
1247
+ Marketplace</a></li>
1248
+ </ul>
1249
+ </li>
1250
+ <li class="parent"><a href="javascript:void(0)">Storage &amp; Content Delivery</a>
1251
+ <ul>
1252
+ <li><a href="//aws.amazon.com/s3/?nc1=h_l2_sc">Amazon S3</a></li>
1253
+ <li><a href="//aws.amazon.com/glacier/?nc1=h_l2_sc">Amazon Glacier</a></li>
1254
+ <li><a href="//aws.amazon.com/ebs/?nc1=h_l2_sc">Amazon EBS</a></li>
1255
+ <li><a href="//aws.amazon.com/storagegateway/?nc1=h_l2_sc">AWS Storage Gateway</a></li>
1256
+ <li><a href="//aws.amazon.com/cloudfront/?nc1=h_l2_sc">Amazon CloudFront</a></li>
1257
+ <li><a href="//aws.amazon.com/importexport/?nc1=h_l2_sc">AWS Import/Export</a></li>
1258
+ <li class="mobile-nav-double-arrow"><a
1259
+ href="https://aws.amazon.com/marketplace/b/2649337011/ref=mkt_ste_l2_S3CDN?page=1&amp;category=2649337011&amp;nc1=h_l2_sc">AWS
1260
+ Marketplace </a></li>
1261
+ </ul>
1262
+ </li>
1263
+ <li class="parent"><a href="javascript:void(0)">Databases</a>
1264
+ <ul>
1265
+ <li><a href="//aws.amazon.com/rds/?nc1=h_l2_db">Amazon RDS</a></li>
1266
+ <li><a href="//aws.amazon.com/dynamodb/?nc1=h_l2_db">Amazon DynamoDB</a></li>
1267
+ <li><a href="//aws.amazon.com/redshift/?nc1=h_l2_db">Amazon Redshift</a></li>
1268
+ <li><a href="//aws.amazon.com/elasticache/?nc1=h_l2_db">Amazon ElastiCache</a></li>
1269
+ <li class="mobile-nav-double-arrow"><a
1270
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_database_category?page=1&amp;category=2649364011&amp;nc1=h_l2_db">AWS
1271
+ Marketplace</a></li>
1272
+ </ul>
1273
+ </li>
1274
+ <li class="parent"><a href="javascript:void(0)">Analytics</a>
1275
+ <ul>
1276
+ <li><a href="//aws.amazon.com/kinesis/?nc1=h_l2_al">Amazon Kinesis</a></li>
1277
+ <li><a href="//aws.amazon.com/redshift/?nc1=h_l2_al">Amazon Redshift</a></li>
1278
+ <li><a href="//aws.amazon.com/elasticmapreduce/?nc1=h_l2_al">Amazon EMR</a></li>
1279
+ <li><a href="//aws.amazon.com/datapipeline/?nc1=h_l2_al">AWS Data Pipeline</a></li>
1280
+ <li><a href="//aws.amazon.com/mobileanalytics/?nc1=h_l2_al">Amazon Mobile Analytics</a></li>
1281
+ <li class="mobile-nav-double-arrow"><a
1282
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_analytics_category?page=1&amp;searchTerms=analytics&amp;nc1=h_l2_al">AWS
1283
+ Marketplace</a></li>
1284
+ </ul>
1285
+ </li>
1286
+ <li class="parent"><a href="javascript:void(0)">App Services</a>
1287
+ <ul>
1288
+ <li><a href="//aws.amazon.com/cloudsearch/?nc1=h_l2_as">Amazon CloudSearch</a></li>
1289
+ <li><a href="//aws.amazon.com/appstream/?nc1=h_l2_as">Amazon AppStream</a></li>
1290
+ <li><a href="//aws.amazon.com/ses/?nc1=h_l2_as">Amazon SES</a></li>
1291
+ <li><a href="//aws.amazon.com/sqs/?nc1=h_l2_as">Amazon SQS</a></li>
1292
+ <li><a href="//aws.amazon.com/sns/?nc1=h_l2_as">Amazon SNS</a></li>
1293
+ <li><a href="//aws.amazon.com/swf/?nc1=h_l2_as">Amazon SWF</a></li>
1294
+ <li><a href="//aws.amazon.com/fps/?nc1=h_l2_as">Amazon FPS</a></li>
1295
+ <li><a href="//aws.amazon.com/elastictranscoder/?nc1=h_l2_as">Amazon Elastic Transcoder</a></li>
1296
+ <li class="mobile-nav-double-arrow"><a
1297
+ href="https://aws.amazon.com/marketplace/search/ref=mkt_ste_l2_app_svcs?page=2&amp;searchTerms=Application+services&amp;nc1=h_l2_as">AWS
1298
+ Marketplace</a></li>
1299
+ </ul>
1300
+ </li>
1301
+ <li class="parent"><a href="javascript:void(0)">Deployment &amp; Management</a>
1302
+ <ul>
1303
+ <li><a href="//aws.amazon.com/elasticbeanstalk/?nc1=h_l2_dm">AWS Elastic Beanstalk</a></li>
1304
+ <li><a href="//aws.amazon.com/opsworks/?nc1=h_l2_dm">AWS OpsWorks</a></li>
1305
+ <li><a href="//aws.amazon.com/cloudformation/?nc1=h_l2_dm">AWS CloudFormation</a></li>
1306
+ <li><a href="//aws.amazon.com/cloudtrail/?nc1=h_l2_dm">AWS CloudTrail</a></li>
1307
+ <li><a href="//aws.amazon.com/cloudwatch/?nc1=h_l2_dm">Amazon CloudWatch</a></li>
1308
+ <li><a href="//aws.amazon.com/iam/?nc1=h_l2_dm">AWS Identity and Access Management (IAM)</a>
1309
+ </li>
1310
+ <li><a href="//aws.amazon.com/cloudhsm/?nc1=h_l2_dm">AWS CloudHSM</a></li>
1311
+ <li><a href="//aws.amazon.com/console/?nc1=h_l2_dm">AWS Management Console</a></li>
1312
+ <li><a href="//aws.amazon.com/cli/?nc1=h_l2_dm">AWS Command Line Interface</a></li>
1313
+ <li class="mobile-nav-double-arrow"><a
1314
+ href="https://aws.amazon.com/marketplace/b/2649274011/ref=mkt_ste_l2_Deployment_cat?nc1=h_l2_dm">AWS
1315
+ Marketplace</a></li>
1316
+ </ul>
1317
+ </li>
1318
+ <li class="parent"><a href="javascript:void(0)">Mobile Services</a>
1319
+ <ul>
1320
+ <li><a href="//aws.amazon.com/mobile/?nc1=h_l2_ms">Mobile Services</a></li>
1321
+ <li><a href="//aws.amazon.com/cognito/?nc1=h_l2_ms">Amazon Cognito</a></li>
1322
+ <li><a href="//aws.amazon.com/mobileanalytics/?nc1=h_l2_ms">Amazon Mobile Analytics</a></li>
1323
+ <li><a href="//aws.amazon.com/sns/?nc1=h_l2_ms">Amazon SNS</a></li>
1324
+ <li><a href="//aws.amazon.com/mobile/sdk/?nc1=h_l2_ms">AWS Mobile SDK</a></li>
1325
+ </ul>
1326
+ </li>
1327
+ <li class="parent"><a href="javascript:void(0)">Applications</a>
1328
+ <ul>
1329
+ <li><a href="//aws.amazon.com/workspaces/?nc1=h_l2_ap">Amazon WorkSpaces</a></li>
1330
+ <li><a href="//aws.amazon.com/zocalo/?nc1=h_l2_ap">Amazon Zocalo</a></li>
1331
+ </ul>
1332
+ </li>
1333
+ <li class="parent"><a href="javascript:void(0)">AWS Marketplace Software</a>
1334
+ <ul>
1335
+ <li class="parent"><a href="javascript:void(0)">Infrastructure Software</a>
1336
+ <ul>
1337
+ <li>
1338
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_app_stacks/?page=1&amp;category=2649362011&amp;nc1=h_l2_mp">Application
1339
+ Stacks</a></li>
1340
+ <li>
1341
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_op_sys/?page=1&amp;category=2649367011&amp;nc1=h_l2_mp">Operating
1342
+ Systems</a></li>
1343
+ <li>
1344
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_db/?page=1&amp;category=2649364011&amp;nc1=h_l2_mp">Databases
1345
+ &amp; Caching</a></li>
1346
+ <li>
1347
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_ntwk_infra/?page=1&amp;category=2649366011&amp;nc1=h_l2_mp">Network
1348
+ Infrastructure</a></li>
1349
+ </ul>
1350
+ </li>
1351
+ <li class="parent"><a href="javascript:void(0)">Business Software</a>
1352
+ <ul>
1353
+ <li>
1354
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_biz_intel/?page=1&amp;category=2649336011&amp;nc1=h_l2_mp">Business
1355
+ Intelligence</a></li>
1356
+ <li>
1357
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_collab/?page=1&amp;category=5018785011&amp;nc1=h_l2_mp">Collaboration</a>
1358
+ </li>
1359
+ <li>
1360
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_ctnt_mgmt/?page=1&amp;category=2649338011&amp;nc1=h_l2_mp">Content
1361
+ Management</a></li>
1362
+ <li>
1363
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_crm/?page=1&amp;category=2649339011&amp;nc1=h_l2_mp">CRM</a>
1364
+ </li>
1365
+ </ul>
1366
+ </li>
1367
+ <li class="parent"><a href="javascript:void(0)">Developer Tools</a>
1368
+ <ul>
1369
+ <li>
1370
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_bug_trk/?page=1&amp;category=2649281011">Issue
1371
+ &amp; Bug Tracking</a></li>
1372
+ <li>
1373
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_monitoring/?page=1&amp;category=2649280011">Monitoring</a>
1374
+ </li>
1375
+ <li>
1376
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_source_ctrl/?page=1&amp;category=2649282011&amp;nc1=h_l2_mp">Source
1377
+ Control</a></li>
1378
+ <li>
1379
+ <a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_testing/?page=1&amp;category=2649283011&amp;nc1=h_l2_mp">Testing</a>
1380
+ </li>
1381
+ </ul>
1382
+ </li>
1383
+ </ul>
1384
+ </li>
1385
+ <li class="parent"><a href="javascript:void(0)">Start-ups</a>
1386
+ <ul>
1387
+ <li><a href="//aws.amazon.com/start-ups/?nc1=h_l2_su">Start-ups on AWS</a></li>
1388
+ <li><a href="//aws.amazon.com/activate/?nc1=h_l2_su">AWS Activate</a></li>
1389
+ <li><a href="//aws.amazon.com/web-mobile-social/?nc1=h_l2_su">Web, Mobile, Social</a></li>
1390
+ <li><a href="//aws.amazon.com/big-data/?nc1=h_l2_su">Big Data</a></li>
1391
+ </ul>
1392
+ </li>
1393
+ <li class="parent"><a href="javascript:void(0)">Enterprises</a>
1394
+ <ul>
1395
+ <li><a href="//aws.amazon.com/enterprise-it/?nc1=h_l2_en">Enterprises on AWS</a></li>
1396
+ <li><a href="//aws.amazon.com/business-applications/?nc1=h_l2_en">Business Applications</a></li>
1397
+ <li><a href="//aws.amazon.com/backup-storage/?nc1=h_l2_en">Backup &amp; Storage</a></li>
1398
+ <li><a href="//aws.amazon.com/security/?nc1=h_l2_en">Security Center</a></li>
1399
+ <li><a href="//aws.amazon.com/economics/?nc1=h_l2_en">Economics Center</a></li>
1400
+ </ul>
1401
+ </li>
1402
+ <li class="parent"><a href="javascript:void(0)">Partners</a>
1403
+ <ul>
1404
+ <li><a href="//aws.amazon.com/solutions/solution-providers/?nc1=h_l2_p">Find AWS Partners</a>
1405
+ </li>
1406
+ <li><a href="//aws.amazon.com/partners/overview/?nc1=h_l2_p">Join the AWS Partner Network</a>
1407
+ </li>
1408
+ <li><a href="https://www.apn-portal.com/?nc1=h_l2_p">Login to the APN Portal</a></li>
1409
+ <li><a href="//aws.amazon.com/solutions/premier-consulting-partners/?nc1=h_l2_p">Premier
1410
+ Consulting Partners</a></li>
1411
+ </ul>
1412
+ </li>
1413
+ <li class="parent"><a href="javascript:void(0)">Government &amp; Education</a>
1414
+ <ul>
1415
+ <li><a href="//aws.amazon.com/government-education/?nc1=h_l2_ge">Government &amp; Education</a>
1416
+ </li>
1417
+ <li><a href="//aws.amazon.com/federal/?nc1=h_l2_ge">Federal Government</a></li>
1418
+ <li><a href="//aws.amazon.com/stateandlocal/?nc1=h_l2_ge">State and Local Government</a></li>
1419
+ <li><a href="//aws.amazon.com/education/?nc1=h_l2_ge">Education</a></li>
1420
+ <li><a href="//aws.amazon.com/govcloud-us/?nc1=h_l2_ge">AWS GovCloud (US) Region</a></li>
1421
+ </ul>
1422
+ </li>
1423
+ <li class="parent"><a href="javascript:void(0)">Websites &amp; Web Apps</a>
1424
+ <ul>
1425
+ <li><a href="//aws.amazon.com/websites/?nc1=h_l2_wa">Websites</a></li>
1426
+ <li><a href="//aws.amazon.com/ecommerce-applications/?nc1=h_l2_wa">Ecommerce</a></li>
1427
+ <li><a href="//aws.amazon.com/mobile/?nc1=h_l2_wa">Mobile</a></li>
1428
+ <li><a href="//aws.amazon.com/digital-marketing/?nc1=h_l2_wa">Digital Marketing</a></li>
1429
+ <li><a href="//aws.amazon.com/web-applications/social-media/?nc1=h_l2_wa">Social Media</a></li>
1430
+ <li class="mobile-nav-double-arrow"><a
1431
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_WebApps?page=1&amp;category=2649338011&amp;searchTerms=website&amp;nc1=h_l2_wa">AWS
1432
+ Marketplace</a></li>
1433
+ </ul>
1434
+ </li>
1435
+ <li class="parent"><a href="javascript:void(0)">Backup, Storage, &amp; Archive</a>
1436
+ <ul>
1437
+ <li><a href="//aws.amazon.com/backup-storage/?nc1=h_l2_bsa">Backup and Storage</a></li>
1438
+ <li><a href="//aws.amazon.com/disaster-recovery/?nc1=h_l2_bsa">Disaster Recovery</a></li>
1439
+ <li><a href="//aws.amazon.com/archive/?nc1=h_l2_bsa">Archiving</a></li>
1440
+ <li class="mobile-nav-double-arrow"><a
1441
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_backup?page=1&amp;searchTerms=backup+archive&amp;nc1=h_l2_bsa">AWS
1442
+ Marketplace</a></li>
1443
+ </ul>
1444
+ </li>
1445
+ <li class="parent"><a href="javascript:void(0)">Big Data &amp; HPC</a>
1446
+ <ul>
1447
+ <li><a href="//aws.amazon.com/big-data/?nc1=h_l2_bh">Big Data</a></li>
1448
+ <li><a href="//aws.amazon.com/hpc/?nc1=h_l2_bh">HPC</a></li>
1449
+ <li class="mobile-nav-double-arrow"><a
1450
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_bigdata?page=1&amp;category=6153421011&amp;nc1=h_l2_bh">AWS
1451
+ Marketplace</a></li>
1452
+ </ul>
1453
+ </li>
1454
+ <li class="parent"><a href="javascript:void(0)">Gaming</a>
1455
+ <ul>
1456
+ <li><a href="//aws.amazon.com/game-hosting/?nc1=h_l2_g">Game Development and Operations</a></li>
1457
+ <li class="mobile-nav-double-arrow"><a
1458
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_gaming?page=1&amp;searchTerms=gaming&amp;nc1=h_l2_g">AWS
1459
+ Marketplace</a></li>
1460
+ </ul>
1461
+ </li>
1462
+ <li class="parent"><a href="javascript:void(0)">Digital Media</a>
1463
+ <ul>
1464
+ <li><a href="//aws.amazon.com/digital-media/?nc1=h_l2_d">Digital Media</a></li>
1465
+ <li class="mobile-nav-double-arrow"><a
1466
+ href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_media?page=1&amp;category=2649341011&amp;nc1=h_l2_d">AWS
1467
+ Marketplace</a></li>
1468
+ </ul>
1469
+ </li>
1470
+ <li class="parent"><a href="javascript:void(0)">Developers</a>
1471
+ <ul>
1472
+ <li><a href="https://console.aws.amazon.com?nc1=h_d_mc">AWS Management Console</a></li>
1473
+ <li><a href="https://aws.amazon.com/documentation?nc1=h_d_dm">Documentation</a></li>
1474
+ <li class="parent"><a href="javascript:void(0)">SDKs &amp; Tools</a>
1475
+ <ul>
1476
+ <li><a href="//aws.amazon.com/developers/getting-started/?nc1=h_d_gs">Get Started</a>
1477
+ </li>
1478
+ <li><a href="//aws.amazon.com/tools/?nc1=h_d_dl">Downloads</a></li>
1479
+ </ul>
1480
+ </li>
1481
+ <li class="parent"><a href="javascript:void(0)">Platforms</a>
1482
+ <ul>
1483
+ <li><a href="//aws.amazon.com/java/?nc1=h_d_ja">Java</a></li>
1484
+ <li><a href="//aws.amazon.com/javascript/?nc1=h_d_js">JavaScript</a></li>
1485
+ <li><a href="//aws.amazon.com/mobile/?nc1=h_d_mb">Mobile</a></li>
1486
+ <li><a href="//aws.amazon.com/php/?nc1=h_d_ph">PHP</a></li>
1487
+ <li><a href="//aws.amazon.com/ruby/?nc1=h_d_ru">Ruby</a></li>
1488
+ <li><a href="//aws.amazon.com/python/?nc1=h_d_py">Python</a></li>
1489
+ <li><a href="//aws.amazon.com/net/?nc1=h_d_wn">Windows &amp; .NET</a></li>
1490
+ </ul>
1491
+ </li>
1492
+ <li class="parent"><a href="javascript:void(0)">Resources</a>
1493
+ <ul>
1494
+ <li><a href="https://forums.aws.amazon.com?nc1=h_d_fm">Forums</a></li>
1495
+ <li><a href="//aws.amazon.com/articles/?nc1=h_d_ta">Tutorials &amp; Articles</a></li>
1496
+ <li>
1497
+ <a href="https://aws.amazon.com/marketplace/ref=mkt_ste_dev_resources_nav?nc1=h_d_mp">AWS
1498
+ Marketplace</a></li>
1499
+ <li><a href="//aws.amazon.com/whitepapers/?nc1=h_d_wp">Whitepapers</a></li>
1500
+ <li><a href="//aws.amazon.com/training/?nc1=h_d_tc">Training &amp; Certification</a>
1501
+ </li>
1502
+ <li><a href="//aws.amazon.com/usergroups/?nc1=h_d_ug">AWS User Groups</a></li>
1503
+ </ul>
1504
+ </li>
1505
+ </ul>
1506
+ </li>
1507
+ <li class="parent"><a href="javascript:void(0)">Support</a>
1508
+ <ul>
1509
+ <li><a href="https://aws.amazon.com/support?nc1=h_su_sc">Support Center</a></li>
1510
+ <li><a href="https://forums.aws.amazon.com?nc1=h_su_fm">Forums</a></li>
1511
+ <li><a href="https://aws.amazon.com/documentation?nc1=h_su_dm">Documentation</a></li>
1512
+ <li><a href="//aws.amazon.com/faqs/?nc1=h_su_tf">Technical FAQs</a></li>
1513
+ <li><a href="http://status.aws.amazon.com/?nc1=h_su_sd">Service Health Dashboard</a></li>
1514
+ <li><a href="//aws.amazon.com/premiumsupport/?nc1=h_su_sp">AWS Support Plans</a></li>
1515
+ <li><a href="//aws.amazon.com/contact-us/?nc1=h_su_cu">Contact Us</a></li>
1516
+ </ul>
1517
+ </li>
1518
+ </ul>
1519
+ </nav>
1520
+ </div>
1521
+ </header>
1522
+ <div id="page-content">
1523
+ <div class="wrapper row" role="content">
1524
+ <aside class="three columns leftnavcontainer" role="complementary">
1525
+ <div class="leftnav">
1526
+ <div class="parsys iparsys sidebar">
1527
+ <div class="section">
1528
+ <div class="new"></div>
1529
+ </div>
1530
+ <div class="iparys_inherited">
1531
+ <div class="parsys iparsys sidebar">
1532
+ <div class="parbase sidenav section">
1533
+ <div class="breadcrumb-wrapper clearfix">
1534
+ <div class="breadcrumb">
1535
+ <div class="small-logo-wrapper"><a href="#top">
1536
+ <div class="small-logo"> Amazon Web Services</div>
1537
+ </a></div>
1538
+ <span class="breadcrumb-small"><a href="/products/">Products &amp; Services</a></span>
1539
+ </div>
1540
+ <div class="go-to-top"><a href="#top"><i class="icon-angle-up button"></i></a>
1541
+ </div>
1542
+ </div>
1543
+ <ul class="side-navbar nav">
1544
+ <li><a href="/ec2/"> Amazon EC2 <i class="icon-angle-right"></i> </a></li>
1545
+ <li><a href="/ec2/details/">Product Details<i class="icon-angle-right"></i></a>
1546
+ </li>
1547
+ <li class="active"><a href="/ec2/instance-types/">Instances<i
1548
+ class="icon-angle-right"></i></a>
1549
+ <ul></ul>
1550
+ </li>
1551
+ <li><a href="/ec2/pricing/">Pricing<i class="icon-angle-right"></i></a>
1552
+ <ul></ul>
1553
+ </li>
1554
+ <li><a href="/ec2/previous-generation/">Previous Generation Instances<i
1555
+ class="icon-angle-right"></i></a></li>
1556
+ <li><a href="/ec2/purchasing-options/">Purchasing Options<i
1557
+ class="icon-angle-right"></i></a>
1558
+ <ul>
1559
+ <li><a href="/ec2/purchasing-options/spot-instances/">Amazon EC2 Spot
1560
+ Instances<i class="icon-angle-right"></i></a></li>
1561
+ <li><a href="/ec2/purchasing-options/reserved-instances/">Amazon EC2
1562
+ Reserved Instances<i class="icon-angle-right"></i></a></li>
1563
+ <li><a href="/ec2/purchasing-options/dedicated-instances/">Amazon EC2
1564
+ Dedicated Instances<i class="icon-angle-right"></i></a></li>
1565
+ </ul>
1566
+ </li>
1567
+ <li><a href="/ec2/developer-resources/">Developer Resources<i
1568
+ class="icon-angle-right"></i></a></li>
1569
+ <li><a href="/ec2/faqs/">FAQs<i class="icon-angle-right"></i></a></li>
1570
+ <li><a href="/ec2/sla/">Amazon EC2 SLA<i class="icon-angle-right"></i></a></li>
1571
+ <li><a href="/ec2/vcenter-portal/">AWS Management Portal for vCenter<i
1572
+ class="icon-angle-right"></i></a></li>
1573
+ </ul>
1574
+ <script> require(["jquery", "scripts"], function ($) {
1575
+ $.awsComponent.leftSideBar();
1576
+ }); </script>
1577
+ </div>
1578
+ <div class="related-link section"><p>Related Links</p>
1579
+ <ul>
1580
+ <li><a class="related-item" href="/windows/"> Windows Instances<i
1581
+ class="icon-angle-right"></i> </a></li>
1582
+ <li><a class="related-item" href="/ec2/vm-import/"> VM Import/Export<i
1583
+ class="icon-angle-right"></i> </a></li>
1584
+ <li><a class="related-item" href="https://console.aws.amazon.com/ec2/"> Management
1585
+ Console<i class="icon-angle-right"></i> </a></li>
1586
+ <li><a class="related-item" href="http://aws.amazon.com/documentation/ec2/">
1587
+ Documentation<i class="icon-angle-right"></i> </a></li>
1588
+ <li><a class="related-item" href="http://aws.amazon.com/releasenotes/Amazon-EC2">
1589
+ Release Notes<i class="icon-angle-right"></i> </a></li>
1590
+ <li><a class="related-item"
1591
+ href="https://forums.aws.amazon.com/forum.jspa?forumID=30"> Discussion
1592
+ Forum<i class="icon-angle-right"></i> </a></li>
1593
+ </ul>
1594
+ </div>
1595
+ <div class="call-to-action parbase section">
1596
+ <div class="sidebar-cta "><p>Get Started for Free</p> <a
1597
+ class="button btn-gold"
1598
+ href="https://portal.aws.amazon.com/gp/aws/developer/registration/index.html">Create
1599
+ Free Account</a></div>
1600
+ </div>
1601
+ </div>
1602
+ </div>
1603
+ </div>
1604
+ </div>
1605
+ </aside>
1606
+ <div class="nine columns content-with-nav" role="main">
1607
+ <section>
1608
+ <div class="title-wrapper">
1609
+ <div class="row title ">
1610
+ <div class="eight columns"><h1 class=" " id="Amazon_EC2_Instances"><a
1611
+ name="Amazon_EC2_Instances"> Amazon EC2 Instances </a></h1></div>
1612
+ <div class="four columns "><a
1613
+ href="https://portal.aws.amazon.com/gp/aws/developer/registration/index.html"
1614
+ class="button btn-gold btn-block btn-large-cta btn-offset"> Create Free Account </a>
1615
+ </div>
1616
+ </div>
1617
+ </div>
1618
+ <div class="content parsys">
1619
+ <div class="lead-copy section">
1620
+ <div class="lead "><p>Amazon EC2 provides a wide selection of instance types optimized to fit
1621
+ different use cases. Instance types comprise varying combinations of CPU, memory, storage,
1622
+ and networking capacity and give you the flexibility to choose the appropriate mix of
1623
+ resources for your applications. Each instance type includes one or more instance sizes,
1624
+ allowing you to scale your resources to the requirements of your target workload.<br></p>
1625
+ </div>
1626
+ </div>
1627
+ <div class="divider section">
1628
+ <div class="a-divider a-divider-section">
1629
+ <div class="a-divider-inner"></div>
1630
+ </div>
1631
+ </div>
1632
+ <div class="title-wrapper section">
1633
+ <div class="row title ">
1634
+ <div class="twelve columns"><h2 class=" " id="General_Purpose"><a name="General_Purpose">
1635
+ General Purpose </a></h2></div>
1636
+ </div>
1637
+ </div>
1638
+ <div class="title-wrapper section">
1639
+ <div class="row title ">
1640
+ <div class="twelve columns"><h2 class=" " id="T2"><a name="T2"> T2 </a></h2></div>
1641
+ </div>
1642
+ </div>
1643
+ <div class="columnbuilder parbase section">
1644
+ <div class="row column-builder js-equal-column-height ">
1645
+ <div class="six columns ">
1646
+ <div class="parsys col1">
1647
+ <div class="text-box section">
1648
+ <div class=" "><p>T2 instances are <a href="#burst" adhocenable="false">Burstable
1649
+ Performance Instances</a> that provide a baseline level of CPU performance
1650
+ with the ability to burst above the baseline. The baseline performance and
1651
+ ability to burst are governed by CPU Credits. Each T2 instance receives CPU
1652
+ Credits continuously at a set rate depending on the instance size.  T2
1653
+ instances accrue CPU Credits when they are idle, and use CPU credits when
1654
+ they are active.  T2 instances are a good choice for workloads that don’t
1655
+ use the full CPU often or consistently, but occasionally need to burst (e.g.
1656
+ web servers, developer environments and small databases). For more
1657
+ information see <a href="#burst" adhocenable="false">Burstable Performance
1658
+ Instances</a>.<br></p>
1659
+
1660
+ <p><b>Features:</b></p>
1661
+ <ul>
1662
+ <li>High Frequency Intel Xeon Processors operating at 2.5GHz with Turbo
1663
+ up to 3.3GHz
1664
+ </li>
1665
+ <li>Burstable CPU, governed by CPU Credits, and consistent baseline
1666
+ performance
1667
+ </li>
1668
+ <li>Lowest-cost general purpose instance type, and Free Tier eligible
1669
+ (t2.micro only)
1670
+ </li>
1671
+ <li>Balance of compute, memory, and network resources</li>
1672
+ </ul>
1673
+ <p><b></b></p></div>
1674
+ </div>
1675
+ </div>
1676
+ </div>
1677
+ <div class="six columns ">
1678
+ <div class="parsys col2">
1679
+ <div class="table-wrapper section">
1680
+ <div class="aws-table ">
1681
+ <table width="196" height="117" cellspacing="0" cellpadding="0" border="0"
1682
+ jcr:primarytype="nt:unstructured">
1683
+ <tbody>
1684
+ <tr>
1685
+ <td width="57" height="42" style="text-align: center;">Model</td>
1686
+ <td width="29" style="text-align: center;">vCPU</td>
1687
+ <td style="text-align: center;">CPU Credits / hour<br></td>
1688
+ <td width="42" style="text-align: center;">Mem (GiB)</td>
1689
+ <td width="42" style="text-align: center;"> Storage   (GB)</td>
1690
+ </tr>
1691
+ <tr>
1692
+ <td width="57" height="15">t2.micro</td>
1693
+ <td width="29" style="text-align: center;">1</td>
1694
+ <td style="text-align: center;">6</td>
1695
+ <td width="42" style="text-align: center;">1</td>
1696
+ <td width="42" style="text-align: center;">EBS Only<br></td>
1697
+ </tr>
1698
+ <tr>
1699
+ <td width="57" height="15">t2.small</td>
1700
+ <td width="29" style="text-align: center;">1</td>
1701
+ <td style="text-align: center;">12</td>
1702
+ <td width="42" style="text-align: center;">2</td>
1703
+ <td width="42" style="text-align: center;">EBS Only<br></td>
1704
+ </tr>
1705
+ <tr>
1706
+ <td width="57" height="15">t2.medium</td>
1707
+ <td width="29" style="text-align: center;">2</td>
1708
+ <td style="text-align: center;">24</td>
1709
+ <td width="42" style="text-align: center;">4</td>
1710
+ <td width="42" style="text-align: center;">EBS Only<br></td>
1711
+ </tr>
1712
+ </tbody>
1713
+ </table>
1714
+ </div>
1715
+ </div>
1716
+ <div class="text-box section">
1717
+ <div class=" "><p><b>Use Cases</b></p>
1718
+
1719
+ <p>Development environments, build servers, code repositories, low-traffic
1720
+ web applications, early product experiments, small databases.  <br></p>
1721
+ </div>
1722
+ </div>
1723
+ </div>
1724
+ </div>
1725
+ </div>
1726
+ <script> require(["scripts"], function () {
1727
+ $.awsComponent.columnBuilder();
1728
+ }); </script>
1729
+ </div>
1730
+ <div class="title-wrapper section">
1731
+ <div class="row title ">
1732
+ <div class="twelve columns"><h2 class=" " id="M3"><a name="M3"> M3 </a></h2></div>
1733
+ </div>
1734
+ </div>
1735
+ <div class="columnbuilder parbase section">
1736
+ <div class="row column-builder js-equal-column-height ">
1737
+ <div class="six columns ">
1738
+ <div class="parsys col1">
1739
+ <div class="text-box section">
1740
+ <div class=" "><p>This family includes the M3 instance types and provides a
1741
+ balance of compute, memory, and network resources, and it is a good choice
1742
+ for many applications.<br></p>
1743
+
1744
+ <p><b>Features:</b></p>
1745
+ <ul>
1746
+ <li>High Frequency Intel Xeon E5-2670 v2 (Ivy Bridge) Processors*</li>
1747
+ <li>SSD-based instance storage for fast I/O performance</li>
1748
+ <li>Balance of compute, memory, and network resources</li>
1749
+ </ul>
1750
+ </div>
1751
+ </div>
1752
+ </div>
1753
+ </div>
1754
+ <div class="six columns ">
1755
+ <div class="parsys col2">
1756
+ <div class="table-wrapper section">
1757
+ <div class="aws-table ">
1758
+ <table width="176" height="134" cellspacing="0" cellpadding="0" border="0"
1759
+ jcr:primarytype="nt:unstructured">
1760
+ <tbody>
1761
+ <tr>
1762
+ <td width="57" height="42" style="text-align: center;">Model</td>
1763
+ <td width="29" style="text-align: center;">vCPU</td>
1764
+ <td width="42" style="text-align: center;">Mem (GiB)</td>
1765
+ <td width="42" style="text-align: center;">SSD Storage (GB)</td>
1766
+ </tr>
1767
+ <tr>
1768
+ <td width="57" height="15">m3.medium</td>
1769
+ <td width="29" style="text-align: center;">1</td>
1770
+ <td width="42" style="text-align: center;">3.75</td>
1771
+ <td width="42" style="text-align: center;">1 x 4 </td>
1772
+ </tr>
1773
+ <tr>
1774
+ <td width="57" height="15">m3.large</td>
1775
+ <td width="29" style="text-align: center;">2</td>
1776
+ <td width="42" style="text-align: center;">7.5</td>
1777
+ <td width="42" style="text-align: center;">1 x 32</td>
1778
+ </tr>
1779
+ <tr>
1780
+ <td width="57" height="15">m3.xlarge</td>
1781
+ <td width="29" style="text-align: center;">4</td>
1782
+ <td width="42" style="text-align: center;">15</td>
1783
+ <td width="42" style="text-align: center;">2 x 40</td>
1784
+ </tr>
1785
+ <tr>
1786
+ <td width="57" height="15">m3.2xlarge</td>
1787
+ <td width="29" style="text-align: center;">8</td>
1788
+ <td width="42" style="text-align: center;">30</td>
1789
+ <td width="42" style="text-align: center;">2 x 80 </td>
1790
+ </tr>
1791
+ </tbody>
1792
+ </table>
1793
+ </div>
1794
+ </div>
1795
+ <div class="text-box section">
1796
+ <div class=" "><p>Use Cases</p>
1797
+
1798
+ <p>Small and mid-size databases, data processing tasks that require
1799
+ additional memory, caching fleets, and for running backend servers for
1800
+ SAP, Microsoft SharePoint, and other enterprise applications.<br></p>
1801
+ </div>
1802
+ </div>
1803
+ </div>
1804
+ </div>
1805
+ </div>
1806
+ <script> require(["scripts"], function () {
1807
+ $.awsComponent.columnBuilder();
1808
+ }); </script>
1809
+ </div>
1810
+ <div class="text-box section">
1811
+ <div class=" "><p>*M3 instances may also launch as an Intel Xeon E5-2670 (Sandy Bridge)
1812
+ Processor running at 2.6 GHz.<br></p></div>
1813
+ </div>
1814
+ <div class="divider section">
1815
+ <div class="a-divider a-divider-section">
1816
+ <div class="a-divider-inner"></div>
1817
+ </div>
1818
+ </div>
1819
+ <div class="title-wrapper section">
1820
+ <div class="row title ">
1821
+ <div class="twelve columns"><h2 class=" " id="Compute_Optimized"><a
1822
+ name="Compute_Optimized"> Compute Optimized </a></h2></div>
1823
+ </div>
1824
+ </div>
1825
+ <div class="title-wrapper section">
1826
+ <div class="row title ">
1827
+ <div class="twelve columns"><h2 class=" " id="C3"><a name="C3"> C3 </a></h2></div>
1828
+ </div>
1829
+ </div>
1830
+ <div class="columnbuilder parbase section">
1831
+ <div class="row column-builder ">
1832
+ <div class="six columns ">
1833
+ <div class="parsys col1">
1834
+ <div class="text-box section">
1835
+ <div class=" "><p>C3 instances are the latest generation of compute-optimized
1836
+ instances, providing customers with the highest performing processors and
1837
+ the lowest price/compute performance available in EC2 currently. </p>
1838
+
1839
+ <p><b>Features:</b></p>
1840
+ <ul>
1841
+ <li>High Frequency Intel Xeon E5-2680 v2 (Ivy Bridge) Processors</li>
1842
+ <li>Support for <a href="#enhanced_networking" adhocenable="false">Enhanced
1843
+ Networking</a></li>
1844
+ <li>Support for clustering</li>
1845
+ <li>SSD-backed instance storage</li>
1846
+ </ul>
1847
+ </div>
1848
+ </div>
1849
+ </div>
1850
+ </div>
1851
+ <div class="six columns ">
1852
+ <div class="parsys col2">
1853
+ <div class="table-wrapper section">
1854
+ <div class="aws-table ">
1855
+ <table width="199" height="134" cellspacing="0" cellpadding="1" border="0"
1856
+ jcr:primarytype="nt:unstructured">
1857
+ <tbody>
1858
+ <tr>
1859
+ <td width="57" height="42" style="text-align: center;">Model</td>
1860
+ <td width="29" style="text-align: center;">vCPU</td>
1861
+ <td width="42" style="text-align: center;">Mem (GiB)</td>
1862
+ <td width="42" style="text-align: center;">SSD Storage  (GB)</td>
1863
+ </tr>
1864
+ <tr>
1865
+ <td width="57" height="15">c3.large</td>
1866
+ <td width="29">2</td>
1867
+ <td width="42">3.75</td>
1868
+ <td width="42">2 x 16</td>
1869
+ </tr>
1870
+ <tr>
1871
+ <td width="57" height="15">c3.xlarge</td>
1872
+ <td width="29">4</td>
1873
+ <td width="42">7.5</td>
1874
+ <td width="42">2 x 40</td>
1875
+ </tr>
1876
+ <tr>
1877
+ <td width="57" height="15">c3.2xlarge</td>
1878
+ <td width="29">8</td>
1879
+ <td width="42">15</td>
1880
+ <td width="42">2 x 80</td>
1881
+ </tr>
1882
+ <tr>
1883
+ <td width="57" height="15">c3.4xlarge</td>
1884
+ <td width="29">16</td>
1885
+ <td width="42">30</td>
1886
+ <td width="42">2 x 160</td>
1887
+ </tr>
1888
+ <tr>
1889
+ <td width="57" height="15">c3.8xlarge</td>
1890
+ <td width="29">32</td>
1891
+ <td width="42">60</td>
1892
+ <td width="42">2 x 320</td>
1893
+ </tr>
1894
+ </tbody>
1895
+ </table>
1896
+ </div>
1897
+ </div>
1898
+ <div class="text-box section">
1899
+ <div class=" "><p><b>Use Cases</b></p>
1900
+
1901
+ <p>High performance front-end fleets, web-servers, on-demand batch
1902
+ processing, distributed analytics, high performance science and
1903
+ engineering applications, ad serving, batch processing, MMO gaming,
1904
+ video encoding, and distributed analytics.<br></p></div>
1905
+ </div>
1906
+ </div>
1907
+ </div>
1908
+ </div>
1909
+ </div>
1910
+ <div class="divider section">
1911
+ <div class="a-divider a-divider-section">
1912
+ <div class="a-divider-inner"></div>
1913
+ </div>
1914
+ </div>
1915
+ <div class="title-wrapper section">
1916
+ <div class="row title ">
1917
+ <div class="twelve columns"><h2 class=" " id="Memory_Optimized"><a name="Memory_Optimized">
1918
+ Memory Optimized </a></h2></div>
1919
+ </div>
1920
+ </div>
1921
+ <div class="title-wrapper section">
1922
+ <div class="row title ">
1923
+ <div class="twelve columns"><h2 class=" " id="R3"><a name="R3"> R3 </a></h2></div>
1924
+ </div>
1925
+ </div>
1926
+ <div class="columnbuilder parbase section">
1927
+ <div class="row column-builder ">
1928
+ <div class="six columns ">
1929
+ <div class="parsys col1">
1930
+ <div class="text-box section">
1931
+ <div class=" "><p>R3 instances are optimized for memory-intensive applications
1932
+ and have the lowest cost per GiB of RAM among Amazon EC2 instance types.</p>
1933
+
1934
+ <p><b>Features:</b></p>
1935
+ <ul>
1936
+ <li>High Frequency Intel Xeon E5-2670 v2 (Ivy Bridge) Processors</li>
1937
+ <li>Lowest price point per GiB of RAM</li>
1938
+ <li>SSD Storage<br></li>
1939
+ <li>Support for <a adhocenable="false"
1940
+ href="https://aws.amazon.com/ec2/faqs/#What_networking_capabilities_are_included_in_this_feature">Enhanced
1941
+ Networking</a></li>
1942
+ </ul>
1943
+ </div>
1944
+ </div>
1945
+ </div>
1946
+ </div>
1947
+ <div class="six columns ">
1948
+ <div class="parsys col2">
1949
+ <div class="table-wrapper section">
1950
+ <div class="aws-table ">
1951
+ <table width="234" height="146" cellspacing="0" cellpadding="1" border="0"
1952
+ jcr:primarytype="nt:unstructured">
1953
+ <tbody>
1954
+ <tr>
1955
+ <td style="text-align: center;">Model</td>
1956
+ <td style="text-align: center;">vCPU</td>
1957
+ <td style="text-align: center;">Mem (GiB)</td>
1958
+ <td style="text-align: center;">SSD Storage (GB)</td>
1959
+ </tr>
1960
+ <tr>
1961
+ <td width="57" height="15">r3.large</td>
1962
+ <td width="29" style="text-align: center;">2</td>
1963
+ <td width="42" style="text-align: center;">15.25</td>
1964
+ <td width="42" style="text-align: center;">1 x 32<br></td>
1965
+ </tr>
1966
+ <tr>
1967
+ <td width="57" height="15">r3.xlarge</td>
1968
+ <td width="29" style="text-align: center;">4</td>
1969
+ <td width="42" style="text-align: center;">30.5</td>
1970
+ <td width="42" style="text-align: center;">1 x 80<br></td>
1971
+ </tr>
1972
+ <tr>
1973
+ <td width="57" height="15">r3.2xlarge</td>
1974
+ <td width="29" style="text-align: center;">8</td>
1975
+ <td width="42" style="text-align: center;">61</td>
1976
+ <td width="42" style="text-align: center;">1 x 160<br></td>
1977
+ </tr>
1978
+ <tr>
1979
+ <td width="57" height="28">r3.4xlarge</td>
1980
+ <td width="29" style="text-align: center;">16</td>
1981
+ <td width="42" style="text-align: center;">122</td>
1982
+ <td width="42" style="text-align: center;">1 x 320<br></td>
1983
+ </tr>
1984
+ <tr>
1985
+ <td>r3.8xlarge<br></td>
1986
+ <td style="text-align: center;">32<br></td>
1987
+ <td style="text-align: center;">244<br></td>
1988
+ <td style="text-align: center;">2 x 320<br></td>
1989
+ </tr>
1990
+ </tbody>
1991
+ </table>
1992
+ </div>
1993
+ </div>
1994
+ <div class="text-box section">
1995
+ <div class=" "><p><b>Use Cases</b></p>
1996
+
1997
+ <p>We recommend memory-optimized instances for high performance databases,
1998
+ distributed memory caches, in-memory analytics, genome assembly and
1999
+ analysis, larger deployments of SAP, Microsoft SharePoint, and other
2000
+ enterprise applications.<br></p></div>
2001
+ </div>
2002
+ </div>
2003
+ </div>
2004
+ </div>
2005
+ </div>
2006
+ <div class="divider section">
2007
+ <div class="a-divider a-divider-section">
2008
+ <div class="a-divider-inner"></div>
2009
+ </div>
2010
+ </div>
2011
+ <div class="title-wrapper section">
2012
+ <div class="row title ">
2013
+ <div class="twelve columns"><h2 class=" " id="GPU_"><a name="GPU_"> GPU </a></h2></div>
2014
+ </div>
2015
+ </div>
2016
+ <div class="title-wrapper section">
2017
+ <div class="row title ">
2018
+ <div class="twelve columns"><h2 class=" " id="G2"><a name="G2"> G2 </a></h2></div>
2019
+ </div>
2020
+ </div>
2021
+ <div class="columnbuilder parbase section">
2022
+ <div class="row column-builder js-equal-column-height ">
2023
+ <div class="six columns ">
2024
+ <div class="parsys col1">
2025
+ <div class="text-box section">
2026
+ <div class=" "><p>This family includes G2 instances intended for graphics and
2027
+ general purpose GPU compute applications. <br></p>
2028
+
2029
+ <p><b>Features:</b></p>
2030
+ <ul>
2031
+ <li>High Frequency Intel Xeon E5-2670 (Sandy Bridge) Processors</li>
2032
+ <li>High-performance NVIDIA GPU with 1,536 CUDA cores and 4GB of video
2033
+ memory
2034
+ </li>
2035
+ <li>On-board hardware video encoder designed to support up to eight
2036
+ real-time HD video streams (720p@30fps) or up to four real-time FHD
2037
+ video streams (1080p at 30 fps).
2038
+ </li>
2039
+ <li>Support for low-latency frame capture and encoding for either the
2040
+ full operating system or select render targets, enabling
2041
+ high-quality interactive streaming experiences.
2042
+ </li>
2043
+ </ul>
2044
+ </div>
2045
+ </div>
2046
+ </div>
2047
+ </div>
2048
+ <div class="six columns ">
2049
+ <div class="parsys col2">
2050
+ <div class="table-wrapper section">
2051
+ <div class="aws-table ">
2052
+ <table width="174" height="84" cellspacing="0" cellpadding="1" border="0"
2053
+ jcr:primarytype="nt:unstructured">
2054
+ <tbody>
2055
+ <tr>
2056
+ <td width="57" height="42" style="text-align: center;">Model</td>
2057
+ <td width="29" style="text-align: center;">vCPU</td>
2058
+ <td width="42" style="text-align: center;">Mem (GiB)</td>
2059
+ <td width="42" style="text-align: center;">SSD Storage (GB)</td>
2060
+ </tr>
2061
+ <tr>
2062
+ <td width="57" height="15">g2.2xlarge</td>
2063
+ <td width="29">8</td>
2064
+ <td width="42">15</td>
2065
+ <td width="42">1 x 60 </td>
2066
+ </tr>
2067
+ </tbody>
2068
+ </table>
2069
+ </div>
2070
+ </div>
2071
+ <div class="text-box section">
2072
+ <div class=" "><p><b>Use Cases</b></p>
2073
+
2074
+ <p>Game streaming, video encoding, 3D application streaming, and other
2075
+ server-side graphics workloads.<br></p></div>
2076
+ </div>
2077
+ </div>
2078
+ </div>
2079
+ </div>
2080
+ <script> require(["scripts"], function () {
2081
+ $.awsComponent.columnBuilder();
2082
+ }); </script>
2083
+ </div>
2084
+ <div class="divider section">
2085
+ <div class="a-divider a-divider-section">
2086
+ <div class="a-divider-inner"></div>
2087
+ </div>
2088
+ </div>
2089
+ <div class="title-wrapper section">
2090
+ <div class="row title ">
2091
+ <div class="twelve columns"><h2 class=" " id="Storage_Optimized_"><a
2092
+ name="Storage_Optimized_"> Storage Optimized </a></h2></div>
2093
+ </div>
2094
+ </div>
2095
+ <div class="title-wrapper section">
2096
+ <div class="row title ">
2097
+ <div class="twelve columns"><h2 class=" " id="I2__"><a name="I2__"> I2 </a></h2></div>
2098
+ </div>
2099
+ </div>
2100
+ <div class="columnbuilder parbase section">
2101
+ <div class="row column-builder js-equal-column-height ">
2102
+ <div class="six columns ">
2103
+ <div class="parsys col1">
2104
+ <div class="text-box section">
2105
+ <div class=" "><p>This family includes the High Storage Instances that provide
2106
+ very fast SSD-backed instance storage optimized for very high random I/O
2107
+ performance, and provide high IOPS at a low cost.<br></p>
2108
+
2109
+ <p> </p>
2110
+
2111
+ <p><b>Features:</b></p>
2112
+ <ul>
2113
+ <li>High Frequency Intel Xeon E5-2670 v2 (Ivy Bridge) Processors</li>
2114
+ <li>SSD Storage</li>
2115
+ <li>Support for TRIM</li>
2116
+ <li>Support for <a adhocenable="false" href="#enhanced_networking">Enhanced
2117
+ Networking</a></li>
2118
+ <li>High Random I/O performance</li>
2119
+ </ul>
2120
+ </div>
2121
+ </div>
2122
+ </div>
2123
+ </div>
2124
+ <div class="six columns ">
2125
+ <div class="parsys col2">
2126
+ <div class="table-wrapper section">
2127
+ <div class="aws-table ">
2128
+ <table width="287" height="210" border="0" cellspacing="0" cellpadding="1"
2129
+ jcr:primarytype="nt:unstructured">
2130
+ <tbody>
2131
+ <tr>
2132
+ <td width="57" height="28">Model</td>
2133
+ <td width="29">vCPU</td>
2134
+ <td width="42">Mem (GiB)</td>
2135
+ <td width="42">Storage (GB)</td>
2136
+ </tr>
2137
+ <tr>
2138
+ <td width="57" height="28">i2.xlarge</td>
2139
+ <td width="29">4</td>
2140
+ <td width="42">30.5</td>
2141
+ <td width="42">1 x 800 SSD</td>
2142
+ </tr>
2143
+ <tr>
2144
+ <td width="57" height="28">i2.2xlarge</td>
2145
+ <td width="29">8</td>
2146
+ <td width="42">61</td>
2147
+ <td width="42">2 x 800 SSD</td>
2148
+ </tr>
2149
+ <tr>
2150
+ <td width="57" height="28">i2.4xlarge</td>
2151
+ <td width="29">16</td>
2152
+ <td width="42">122</td>
2153
+ <td width="42">4 x 800 SSD</td>
2154
+ </tr>
2155
+ <tr>
2156
+ <td width="57" height="28">i2.8xlarge</td>
2157
+ <td width="29">32</td>
2158
+ <td width="42">244</td>
2159
+ <td width="42">8 x 800 SSD</td>
2160
+ </tr>
2161
+ </tbody>
2162
+ </table>
2163
+ </div>
2164
+ </div>
2165
+ <div class="text-box section">
2166
+ <div class=" "><p><b>Use Cases</b></p>
2167
+
2168
+ <p>NoSQL databases like Cassandra and MongoDB, scale out transactional
2169
+ databases, data warehousing, Hadoop, and cluster file systems.<br></p>
2170
+ </div>
2171
+ </div>
2172
+ </div>
2173
+ </div>
2174
+ </div>
2175
+ <script> require(["scripts"], function () {
2176
+ $.awsComponent.columnBuilder();
2177
+ }); </script>
2178
+ </div>
2179
+ <div class="title-wrapper section">
2180
+ <div class="row title ">
2181
+ <div class="twelve columns"><h2 class=" " id="HS1"><a name="HS1"> HS1 </a></h2></div>
2182
+ </div>
2183
+ </div>
2184
+ <div class="columnbuilder parbase section">
2185
+ <div class="row column-builder js-equal-column-height ">
2186
+ <div class="six columns ">
2187
+ <div class="parsys col1">
2188
+ <div class="text-box section">
2189
+ <div class=" "><p>HS1 instances provide very high storage density and high
2190
+ sequential read and write performance per instance. It also offers the
2191
+ highest storage density among other EC2 instances and is lowest on $/GB
2192
+ storage.</p>
2193
+
2194
+ <p><b>Features:</b></p>
2195
+ <ul>
2196
+ <li>High sequential I/O performance</li>
2197
+ <li>Delivers 2.6 GB per second read and write performance with 2 MiB
2198
+ block size
2199
+ </li>
2200
+ </ul>
2201
+ </div>
2202
+ </div>
2203
+ </div>
2204
+ </div>
2205
+ <div class="six columns ">
2206
+ <div class="parsys col2">
2207
+ <div class="table-wrapper section">
2208
+ <div class="aws-table ">
2209
+ <table width="287" height="64" cellspacing="0" cellpadding="1" border="0"
2210
+ jcr:primarytype="nt:unstructured">
2211
+ <tbody>
2212
+ <tr>
2213
+ <td width="57" height="28">Model</td>
2214
+ <td width="29">vCPU</td>
2215
+ <td width="42">Mem (GiB)</td>
2216
+ <td width="42">Storage (GB)</td>
2217
+ </tr>
2218
+ <tr>
2219
+ <td width="57" height="28">hs1.8xlarge</td>
2220
+ <td width="29">16</td>
2221
+ <td width="42">117</td>
2222
+ <td width="42">24 x 2000<br></td>
2223
+ </tr>
2224
+ </tbody>
2225
+ </table>
2226
+ </div>
2227
+ </div>
2228
+ <div class="text-box section">
2229
+ <div class=" "><p><b>Use Cases</b></p>
2230
+
2231
+ <p>Data warehousing, Hadoop/MapReduce, Parallel file systems<br></p></div>
2232
+ </div>
2233
+ </div>
2234
+ </div>
2235
+ </div>
2236
+ <script> require(["scripts"], function () {
2237
+ $.awsComponent.columnBuilder();
2238
+ }); </script>
2239
+ </div>
2240
+ <div class="divider section">
2241
+ <hr>
2242
+ </div>
2243
+ <div class="title-wrapper section">
2244
+ <div class="row title ">
2245
+ <div class="twelve columns"><h2 class=" " id="instance-type-matrix"><a
2246
+ name="instance-type-matrix"> Instance Types Matrix </a></h2></div>
2247
+ </div>
2248
+ </div>
2249
+ <div class="table-wrapper section">
2250
+ <div class="aws-table ">
2251
+ <table width="539" height="1630" border="0" cellspacing="0" cellpadding="1"
2252
+ jcr:primarytype="nt:unstructured">
2253
+ <tbody>
2254
+ <tr>
2255
+ <td width="65" style="text-align: center;">Instance Type</td>
2256
+ <td width="29" style="text-align: center;">vCPU</td>
2257
+ <td width="42" style="text-align: center;">Memory (GiB)</td>
2258
+ <td width="60" style="text-align: center;"> Storage (GB)</td>
2259
+ <td width="200" style="text-align: center;">Networking Performance<br></td>
2260
+ <td width="69" style="text-align: center;">Physical Processor</td>
2261
+ <td width="45" style="text-align: center;">Clock Speed (GHz)</td>
2262
+ <td width="39" style="text-align: center;"><a adhocenable="false" href="#intel">Intel®
2263
+ AES-NI</a></td>
2264
+ <td width="32" style="text-align: center;"><a adhocenable="false" href="#intel">Intel®
2265
+ AVX<sup>†</sup></a></td>
2266
+ <td width="30" style="text-align: center;"><a adhocenable="false" href="#intel">Intel®
2267
+ Turbo</a></td>
2268
+ <td width="47" style="text-align: center;"><a href="#ebs" adhocenable="false">EBS
2269
+ OPT <br> </a></td>
2270
+ <td width="57" height="56" style="text-align: center;"><a
2271
+ href="#enhanced_networking">Enhanced Networking</a></td>
2272
+ </tr>
2273
+ <tr>
2274
+ <td valign="middle" style="text-align: left;">t2.micro</td>
2275
+ <td valign="middle" style="text-align: center;">1</td>
2276
+ <td valign="middle" style="text-align: center;">1</td>
2277
+ <td valign="middle" style="text-align: center;">EBS Only</td>
2278
+ <td valign="middle" style="text-align: center;">Low to Moderate</td>
2279
+ <td valign="middle" style="text-align: center;">Intel Xeon family</td>
2280
+ <td valign="middle" style="text-align: center;">2.5</td>
2281
+ <td valign="middle" style="text-align: center;">Yes</td>
2282
+ <td valign="middle" style="text-align: center;">Yes</td>
2283
+ <td valign="middle" style="text-align: center;">Yes</td>
2284
+ <td valign="middle" style="text-align: center;">-</td>
2285
+ <td valign="middle" style="text-align: center;">-</td>
2286
+ </tr>
2287
+ <tr>
2288
+ <td valign="middle" style="text-align: left;">t2.small</td>
2289
+ <td valign="middle" style="text-align: center;">1<br></td>
2290
+ <td valign="middle" style="text-align: center;">2<br></td>
2291
+ <td valign="middle" style="text-align: center;">EBS Only<br></td>
2292
+ <td valign="middle" style="text-align: center;">Low to Moderate<br></td>
2293
+ <td valign="middle" style="text-align: center;">Intel Xeon family<br></td>
2294
+ <td valign="middle" style="text-align: center;">2.5<br></td>
2295
+ <td valign="middle" style="text-align: center;">Yes<br></td>
2296
+ <td valign="middle" style="text-align: center;">Yes<br></td>
2297
+ <td valign="middle" style="text-align: center;">Yes<br></td>
2298
+ <td valign="middle" style="text-align: center;">-<br></td>
2299
+ <td valign="middle" style="text-align: center;">-<br></td>
2300
+ </tr>
2301
+ <tr>
2302
+ <td valign="middle" style="text-align: left;">t2.medium</td>
2303
+ <td valign="middle" style="text-align: center;">2</td>
2304
+ <td valign="middle" style="text-align: center;">4</td>
2305
+ <td valign="middle" style="text-align: center;">EBS Only</td>
2306
+ <td valign="middle" style="text-align: center;">Low to Moderate</td>
2307
+ <td valign="middle" style="text-align: center;">Intel Xeon family<br></td>
2308
+ <td valign="middle" style="text-align: center;">2.5<br></td>
2309
+ <td valign="middle" style="text-align: center;">Yes<br></td>
2310
+ <td valign="middle" style="text-align: center;">Yes<br></td>
2311
+ <td valign="middle" style="text-align: center;">Yes<br></td>
2312
+ <td valign="middle" style="text-align: center;">-<br></td>
2313
+ <td valign="middle" style="text-align: center;">-<br></td>
2314
+ </tr>
2315
+ <tr>
2316
+ <td width="65">m3.medium</td>
2317
+ <td width="29" style="text-align: center;">1</td>
2318
+ <td width="42" style="text-align: center;">3.75</td>
2319
+ <td width="60" style="text-align: center;">1 x 4 SSD</td>
2320
+ <td>Moderate</td>
2321
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2*</td>
2322
+ <td width="45" style="text-align: center;">2.5</td>
2323
+ <td width="39" style="text-align: center;">Yes</td>
2324
+ <td width="32" style="text-align: center;">Yes</td>
2325
+ <td width="30" style="text-align: center;">Yes</td>
2326
+ <td width="47" style="text-align: center;">-</td>
2327
+ <td width="57" height="28" style="text-align: center;">-</td>
2328
+ </tr>
2329
+ <tr>
2330
+ <td width="65">m3.large</td>
2331
+ <td width="29" style="text-align: center;">2</td>
2332
+ <td width="42" style="text-align: center;">7.5</td>
2333
+ <td width="60" style="text-align: center;">1 x 32 SSD</td>
2334
+ <td>Moderate</td>
2335
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2*</td>
2336
+ <td width="45" style="text-align: center;">2.5</td>
2337
+ <td width="39" style="text-align: center;">Yes</td>
2338
+ <td width="32" style="text-align: center;">Yes</td>
2339
+ <td width="30" style="text-align: center;">Yes</td>
2340
+ <td width="47" style="text-align: center;">-</td>
2341
+ <td width="57" height="28" style="text-align: center;">-</td>
2342
+ </tr>
2343
+ <tr>
2344
+ <td width="65">m3.xlarge</td>
2345
+ <td width="29" style="text-align: center;">4</td>
2346
+ <td width="42" style="text-align: center;">15</td>
2347
+ <td width="60" style="text-align: center;">2 x 40 SSD</td>
2348
+ <td>High</td>
2349
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2*</td>
2350
+ <td width="45" style="text-align: center;">2.5</td>
2351
+ <td width="39" style="text-align: center;">Yes</td>
2352
+ <td width="32" style="text-align: center;">Yes</td>
2353
+ <td width="30" style="text-align: center;">Yes</td>
2354
+ <td width="47" style="text-align: center;">Yes</td>
2355
+ <td width="57" height="28" style="text-align: center;">-</td>
2356
+ </tr>
2357
+ <tr>
2358
+ <td width="65">m3.2xlarge</td>
2359
+ <td width="29" style="text-align: center;">8</td>
2360
+ <td width="42" style="text-align: center;">30</td>
2361
+ <td width="60" style="text-align: center;">2 x 80 SSD</td>
2362
+ <td>High</td>
2363
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2*</td>
2364
+ <td width="45" style="text-align: center;">2.5</td>
2365
+ <td width="39" style="text-align: center;">Yes</td>
2366
+ <td width="32" style="text-align: center;">Yes</td>
2367
+ <td width="30" style="text-align: center;">Yes</td>
2368
+ <td width="47" style="text-align: center;">Yes</td>
2369
+ <td width="57" height="28" style="text-align: center;">-</td>
2370
+ </tr>
2371
+ <tr>
2372
+ <td width="65">c3.large</td>
2373
+ <td width="29" style="text-align: center;">2</td>
2374
+ <td width="42" style="text-align: center;">3.75</td>
2375
+ <td width="60" style="text-align: center;">2 x 16 SSD</td>
2376
+ <td>Moderate</td>
2377
+ <td width="69" style="text-align: center;">Intel Xeon E5-2680 v2</td>
2378
+ <td width="45" style="text-align: center;">2.8</td>
2379
+ <td width="39" style="text-align: center;">Yes</td>
2380
+ <td width="32" style="text-align: center;">Yes</td>
2381
+ <td width="30" style="text-align: center;">Yes</td>
2382
+ <td width="47" style="text-align: center;">-</td>
2383
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2384
+ </tr>
2385
+ <tr>
2386
+ <td width="65">c3.xlarge</td>
2387
+ <td width="29" style="text-align: center;">4</td>
2388
+ <td width="42" style="text-align: center;">7.5</td>
2389
+ <td width="60" style="text-align: center;">2 x 40 SSD</td>
2390
+ <td>Moderate</td>
2391
+ <td width="69" style="text-align: center;">Intel Xeon E5-2680 v2</td>
2392
+ <td width="45" style="text-align: center;">2.8</td>
2393
+ <td width="39" style="text-align: center;">Yes</td>
2394
+ <td width="32" style="text-align: center;">Yes</td>
2395
+ <td width="30" style="text-align: center;">Yes</td>
2396
+ <td width="47" style="text-align: center;">Yes</td>
2397
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2398
+ </tr>
2399
+ <tr>
2400
+ <td width="65">c3.2xlarge</td>
2401
+ <td width="29" style="text-align: center;">8</td>
2402
+ <td width="42" style="text-align: center;">15</td>
2403
+ <td width="60" style="text-align: center;">2 x 80 SSD</td>
2404
+ <td>High</td>
2405
+ <td width="69" style="text-align: center;">Intel Xeon E5-2680 v2</td>
2406
+ <td width="45" style="text-align: center;">2.8</td>
2407
+ <td width="39" style="text-align: center;">Yes</td>
2408
+ <td width="32" style="text-align: center;">Yes</td>
2409
+ <td width="30" style="text-align: center;">Yes</td>
2410
+ <td width="47" style="text-align: center;">Yes</td>
2411
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2412
+ </tr>
2413
+ <tr>
2414
+ <td width="65">c3.4xlarge</td>
2415
+ <td width="29" style="text-align: center;">16</td>
2416
+ <td width="42" style="text-align: center;">30</td>
2417
+ <td width="60" style="text-align: center;">2 x 160 SSD</td>
2418
+ <td>High</td>
2419
+ <td width="69" style="text-align: center;">Intel Xeon E5-2680 v2</td>
2420
+ <td width="45" style="text-align: center;">2.8</td>
2421
+ <td width="39" style="text-align: center;">Yes</td>
2422
+ <td width="32" style="text-align: center;">Yes</td>
2423
+ <td width="30" style="text-align: center;">Yes</td>
2424
+ <td width="47" style="text-align: center;">Yes</td>
2425
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2426
+ </tr>
2427
+ <tr>
2428
+ <td width="65">c3.8xlarge</td>
2429
+ <td width="29" style="text-align: center;">32</td>
2430
+ <td width="42" style="text-align: center;">60</td>
2431
+ <td width="60" style="text-align: center;">2 x 320 SSD</td>
2432
+ <td>10 Gigabit</td>
2433
+ <td width="69" style="text-align: center;">Intel Xeon E5-2680 v2</td>
2434
+ <td width="45" style="text-align: center;">2.8</td>
2435
+ <td width="39" style="text-align: center;">Yes</td>
2436
+ <td width="32" style="text-align: center;">Yes</td>
2437
+ <td width="30" style="text-align: center;">Yes</td>
2438
+ <td width="47" style="text-align: center;">-</td>
2439
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2440
+ </tr>
2441
+ <tr>
2442
+ <td width="65">g2.2xlarge</td>
2443
+ <td width="29" style="text-align: center;">8</td>
2444
+ <td width="42" style="text-align: center;">15</td>
2445
+ <td width="60" style="text-align: center;">1 x 60 SSD</td>
2446
+ <td>High</td>
2447
+ <td width="69" style="text-align: center;">Intel Xeon  E5-2670<br></td>
2448
+ <td width="45" style="text-align: center;">2.6</td>
2449
+ <td width="39" style="text-align: center;">Yes</td>
2450
+ <td width="32" style="text-align: center;">-</td>
2451
+ <td width="30" style="text-align: center;">-</td>
2452
+ <td width="47" style="text-align: center;">Yes</td>
2453
+ <td width="57" height="28" style="text-align: center;">-</td>
2454
+ </tr>
2455
+ <tr>
2456
+ <td width="65">r3.large</td>
2457
+ <td width="29" style="text-align: center;">2</td>
2458
+ <td width="42" style="text-align: center;">15.25</td>
2459
+ <td width="60" style="text-align: center;">1 x 32 SSD</td>
2460
+ <td>Moderate</td>
2461
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2462
+ <td width="45" style="text-align: center;">2.5</td>
2463
+ <td width="39" style="text-align: center;">Yes</td>
2464
+ <td width="32" style="text-align: center;">Yes</td>
2465
+ <td width="30" style="text-align: center;">Yes</td>
2466
+ <td width="47" style="text-align: center;">-</td>
2467
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2468
+ </tr>
2469
+ <tr>
2470
+ <td width="65">r3.xlarge</td>
2471
+ <td width="29" style="text-align: center;">4</td>
2472
+ <td width="42" style="text-align: center;">30.5</td>
2473
+ <td width="60" style="text-align: center;">1 x 80 SSD</td>
2474
+ <td>Moderate</td>
2475
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2476
+ <td width="45" style="text-align: center;">2.5<br></td>
2477
+ <td width="39" style="text-align: center;">Yes<br></td>
2478
+ <td width="32" style="text-align: center;">Yes<br></td>
2479
+ <td width="30" style="text-align: center;">Yes<br></td>
2480
+ <td width="47" style="text-align: center;">Yes</td>
2481
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2482
+ </tr>
2483
+ <tr>
2484
+ <td width="65">r3.2xlarge</td>
2485
+ <td width="29" style="text-align: center;">8</td>
2486
+ <td width="42" style="text-align: center;">61</td>
2487
+ <td width="60" style="text-align: center;">1 x 160 SSD</td>
2488
+ <td>High</td>
2489
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2490
+ <td width="45" style="text-align: center;">2.5<br></td>
2491
+ <td width="39" style="text-align: center;">Yes<br></td>
2492
+ <td width="32" style="text-align: center;">Yes<br></td>
2493
+ <td width="30" style="text-align: center;">Yes<br></td>
2494
+ <td width="47" style="text-align: center;">Yes</td>
2495
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2496
+ </tr>
2497
+ <tr>
2498
+ <td width="65">r3.4xlarge</td>
2499
+ <td width="29" style="text-align: center;">16</td>
2500
+ <td width="42" style="text-align: center;">122</td>
2501
+ <td width="60" style="text-align: center;">1 x 320 SSD</td>
2502
+ <td>High</td>
2503
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2504
+ <td width="45" style="text-align: center;">2.5<br></td>
2505
+ <td width="39" style="text-align: center;">Yes<br></td>
2506
+ <td width="32" style="text-align: center;">Yes<br></td>
2507
+ <td width="30" style="text-align: center;">Yes<br></td>
2508
+ <td width="47" style="text-align: center;">Yes</td>
2509
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2510
+ </tr>
2511
+ <tr>
2512
+ <td>r3.8xlarge</td>
2513
+ <td style="text-align: center;">32</td>
2514
+ <td style="text-align: center;">244</td>
2515
+ <td style="text-align: center;">2 x 320 SSD</td>
2516
+ <td>10 Gigabit</td>
2517
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2518
+ <td width="45" style="text-align: center;">2.5<br></td>
2519
+ <td width="39" style="text-align: center;">Yes<br></td>
2520
+ <td width="32" style="text-align: center;">Yes<br></td>
2521
+ <td width="30" style="text-align: center;">Yes<br></td>
2522
+ <td style="text-align: center;">-</td>
2523
+ <td style="text-align: center;">Yes</td>
2524
+ </tr>
2525
+ <tr>
2526
+ <td width="65">i2.xlarge</td>
2527
+ <td width="29" style="text-align: center;">4</td>
2528
+ <td width="42" style="text-align: center;">30.5</td>
2529
+ <td width="60" style="text-align: center;">1 x 800 SSD</td>
2530
+ <td>Moderate</td>
2531
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2532
+ <td width="45" style="text-align: center;">2.5</td>
2533
+ <td width="39" style="text-align: center;">Yes</td>
2534
+ <td width="32" style="text-align: center;">Yes</td>
2535
+ <td width="30" style="text-align: center;">Yes</td>
2536
+ <td width="47" style="text-align: center;">Yes</td>
2537
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2538
+ </tr>
2539
+ <tr>
2540
+ <td width="65">i2.2xlarge</td>
2541
+ <td width="29" style="text-align: center;">8</td>
2542
+ <td width="42" style="text-align: center;">61</td>
2543
+ <td width="60" style="text-align: center;">2 x 800 SSD</td>
2544
+ <td>High</td>
2545
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2546
+ <td width="45" style="text-align: center;">2.5</td>
2547
+ <td width="39" style="text-align: center;">Yes</td>
2548
+ <td width="32" style="text-align: center;">Yes</td>
2549
+ <td width="30" style="text-align: center;">Yes</td>
2550
+ <td width="47" style="text-align: center;">Yes</td>
2551
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2552
+ </tr>
2553
+ <tr>
2554
+ <td width="65">i2.4xlarge</td>
2555
+ <td width="29" style="text-align: center;">16</td>
2556
+ <td width="42" style="text-align: center;">122</td>
2557
+ <td width="60" style="text-align: center;">4 x 800 SSD</td>
2558
+ <td>High</td>
2559
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2560
+ <td width="45" style="text-align: center;">2.5</td>
2561
+ <td width="39" style="text-align: center;">Yes</td>
2562
+ <td width="32" style="text-align: center;">Yes</td>
2563
+ <td width="30" style="text-align: center;">Yes</td>
2564
+ <td width="47" style="text-align: center;">Yes</td>
2565
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2566
+ </tr>
2567
+ <tr>
2568
+ <td width="65">i2.8xlarge</td>
2569
+ <td width="29" style="text-align: center;">32</td>
2570
+ <td width="42" style="text-align: center;">244</td>
2571
+ <td width="60" style="text-align: center;">8 x 800 SSD</td>
2572
+ <td>10 Gigabit</td>
2573
+ <td width="69" style="text-align: center;">Intel Xeon E5-2670 v2</td>
2574
+ <td width="45" style="text-align: center;">2.5</td>
2575
+ <td width="39" style="text-align: center;">Yes</td>
2576
+ <td width="32" style="text-align: center;">Yes</td>
2577
+ <td width="30" style="text-align: center;">Yes</td>
2578
+ <td width="47" style="text-align: center;">-</td>
2579
+ <td width="57" height="28" style="text-align: center;">Yes</td>
2580
+ </tr>
2581
+ <tr>
2582
+ <td width="65">hs1.8xlarge</td>
2583
+ <td width="29" style="text-align: center;">16</td>
2584
+ <td width="42" style="text-align: center;">117</td>
2585
+ <td width="60" style="text-align: center;">24 x 2,000</td>
2586
+ <td>10 Gigabit</td>
2587
+ <td width="69" style="text-align: center;">Intel Xeon Family</td>
2588
+ <td width="45" style="text-align: center;">2</td>
2589
+ <td width="39" style="text-align: center;">Yes</td>
2590
+ <td width="32" style="text-align: center;">-</td>
2591
+ <td width="30" style="text-align: center;">-</td>
2592
+ <td width="47" style="text-align: center;">-</td>
2593
+ <td width="57" height="28" style="text-align: center;">-</td>
2594
+ </tr>
2595
+ </tbody>
2596
+ </table>
2597
+ </div>
2598
+ </div>
2599
+ <div class="text-box section">
2600
+ <div class=" "><p>Each vCPU is a hyperthread of an Intel Xeon core for M3, C3, R3, HS1, G2, and
2601
+ I2.</p>
2602
+
2603
+ <p>*M3 instances may also launch as an Intel Xeon E5-2670 (Sandy Bridge) Processor running
2604
+ at 2.6 GHz.<br></p></div>
2605
+ </div>
2606
+ <div class="text-box section">
2607
+ <div class=" "><p>Looking for T1, M1, C1, CC2, M2, CR1, CG1, or HI1 Instances? See the <a
2608
+ href="http://aws.amazon.com/ec2/previous-generation/" adhocenable="false">Previous
2609
+ Generation Instances</a> page.</p>
2610
+
2611
+ <p> </p></div>
2612
+ </div>
2613
+ <div class="title-wrapper section">
2614
+ <div class="row title ">
2615
+ <div class="twelve columns"><h2 class=" " id="Instance_Features"><a
2616
+ name="Instance_Features"> Instance Features </a></h2></div>
2617
+ </div>
2618
+ </div>
2619
+ <div class="text-box section">
2620
+ <div class=" "><p>Amazon EC2 instances provide a number of additional features to help you
2621
+ deploy, manage, and scale your applications.<br></p></div>
2622
+ </div>
2623
+ <div class="title-wrapper section">
2624
+ <div class="row title ">
2625
+ <div class="twelve columns"><h3 class=" " id="burst"><a name="burst"> Burstable Performance
2626
+ Instances </a></h3></div>
2627
+ </div>
2628
+ </div>
2629
+ <div class="text-box section">
2630
+ <div class=" "><p>Amazon EC2 allows you to choose between Fixed Performance Instances (e.g. M3,
2631
+ C3, and R3) and Burstable Performance Instances (e.g. T2). Burstable Performance Instances
2632
+ provide a baseline level of CPU performance with the ability to burst above the baseline. T2
2633
+ instances are for workloads that don’t use the full CPU often or consistently, but
2634
+ occasionally need to burst.</p>
2635
+
2636
+ <p>T2 instances’ baseline performance and ability to burst are governed by CPU Credits. Each
2637
+ T2 instance receives CPU Credits continuously, the rate of which depends on the instance
2638
+ size. T2 instances accrue CPU Credits when they are idle, and use CPU credits when they
2639
+ are active. A CPU Credit provides the performance of a full CPU core for one minute.</p>
2640
+
2641
+ <p>For example, a t2.small instance receives credits continuously at a rate of 12 CPU
2642
+ Credits per hour. This capability provides baseline performance equivalent to 20% of a
2643
+ CPU core. If at any moment the instance does not need the credits it receives, it stores
2644
+ them in its CPU Credit balance for up to 24 hours. If and when your t2.small needs to
2645
+ burst to more than 20% of a core, it draws from its CPU Credit balance to handle this
2646
+ surge seamlessly. Over time, if you find your workload needs more CPU Credits than you
2647
+ have, or your instance does not maintain a positive CPU Credit balance, we recommend
2648
+ either a larger T2 size, such as the t2.medium, or a Fixed Performance Instance
2649
+ type.</p>
2650
+
2651
+ <p>Many applications such as web servers, developer environments and small databases don’t
2652
+ need consistently high levels of CPU, but benefit significantly from having full access
2653
+ to very fast CPUs when they need them.  T2 instances are engineered specifically for
2654
+ these use cases.  If you need consistently high CPU performance for applications such as
2655
+ video encoding, high volume websites or HPC applications, we recommend you use Fixed
2656
+ Performance Instances.  T2 instances are designed to perform as if they have dedicated
2657
+ high speed Intel cores available when your application really needs CPU performance,
2658
+ while protecting you from the variable performance or other common side effects you
2659
+ might typically see from over-subscription in other environments.<br></p></div>
2660
+ </div>
2661
+ <div class="title-wrapper section">
2662
+ <div class="row title ">
2663
+ <div class="twelve columns"><h3 class=" " id="Multiple_Storage_Options"><a
2664
+ name="Multiple_Storage_Options"> Multiple Storage Options </a></h3></div>
2665
+ </div>
2666
+ </div>
2667
+ <div class="text-box section">
2668
+ <div class=" "><p>Amazon EC2 allows you to choose between multiple storage options based on your
2669
+ requirements. <a adhocenable="false" href="/ebs/">Amazon EBS</a> is a durable, block-level
2670
+ storage volume that you can attach to a single, running Amazon EC2 instance. You can use
2671
+ Amazon EBS as a primary storage device for data that requires frequent and granular updates.
2672
+ For example, Amazon EBS is the recommended storage option when you run a database on Amazon
2673
+ EC2. Amazon EBS volumes persist independently from the running life of an Amazon EC2
2674
+ instance. Once a volume is attached to an instance you can use it like any other physical
2675
+ hard drive. Amazon EBS provides three volume types to best meet the needs of your workloads:
2676
+ General Purpose (SSD), Provisioned IOPS (SSD), and Magnetic. General Purpose (SSD) is the
2677
+ new, SSD-backed, general purpose EBS volume type that we recommend as the default choice for
2678
+ customers. General Purpose (SSD) volumes are suitable for a broad range of workloads,
2679
+ including small to medium sized databases, development and test environments, and boot
2680
+ volumes. Provisioned IOPS (SSD) volumes offer storage with consistent and low-latency
2681
+ performance, and are designed for I/O intensive applications such as large relational or
2682
+ NoSQL databases. Magnetic volumes provide the lowest cost per gigabyte of all EBS volume
2683
+ types. Magnetic volumes are ideal for workloads where data is accessed infrequently, and
2684
+ applications where the lowest storage cost is important.<br></p>
2685
+
2686
+ <p>Many Amazon EC2 instances can also include storage from disks that are physically
2687
+ attached to the host computer. This disk storage is referred to as instance store.
2688
+ Instance store provides temporary block-level storage for Amazon EC2 instances. The data
2689
+ on an instance store volume persists only during the life of the associated Amazon EC2
2690
+ instance.</p>
2691
+
2692
+ <p>In addition to block level storage via Amazon EBS or instance store, you can also use
2693
+ Amazon S3 for highly durable, highly available object storage. Learn more about Amazon
2694
+ EC2 storage options from the <a
2695
+ href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Storage.html"
2696
+ adhocenable="false">Amazon EC2 documentation</a>.<br></p></div>
2697
+ </div>
2698
+ <div class="title-wrapper section">
2699
+ <div class="row title ">
2700
+ <div class="twelve columns"><h3 class=" " id="ebs"><a name="ebs"> EBS-optimized
2701
+ Instances </a></h3></div>
2702
+ </div>
2703
+ </div>
2704
+ <div class="text-box section">
2705
+ <div class=" "><p>For an additional low, hourly fee, customers can launch selected Amazon EC2
2706
+ instances types as EBS-optimized instances. EBS-optimized instances enable EC2 instances to
2707
+ fully use the IOPS provisioned on an EBS volume. EBS-optimized instances deliver dedicated
2708
+ throughput between Amazon EC2 and Amazon EBS, with options between 500 and 2,000 Megabits
2709
+ per second (Mbps) depending on the instance type used. The dedicated throughput minimizes
2710
+ contention between Amazon EBS I/O and other traffic from your EC2 instance, providing the
2711
+ best performance for your EBS volumes. EBS-optimized instances are designed for use with
2712
+ both Standard and Provisioned IOPS Amazon EBS volumes. When attached to EBS-optimized
2713
+ instances, Provisioned IOPS volumes can achieve single digit millisecond latencies and are
2714
+ designed to deliver within 10% of the provisioned IOPS performance 99.9% of the time. We
2715
+ recommend using Provisioned IOPS volumes with EBS-optimized instances or instances that
2716
+ support cluster networking for applications with high storage I/O requirements.<br></p>
2717
+ </div>
2718
+ </div>
2719
+ <div class="title-wrapper section">
2720
+ <div class="row title ">
2721
+ <div class="twelve columns"><h3 class=" " id="enhanced_networking"><a
2722
+ name="enhanced_networking"> Enhanced Networking </a></h3></div>
2723
+ </div>
2724
+ </div>
2725
+ <div class="text-box section">
2726
+ <div class=" "><p>Enhanced Networking enables you to get significantly higher packet per second
2727
+ (PPS) performance, lower network jitter and lower latencies. This feature uses a new network
2728
+ virtualization stack that provides higher I/O performance and lower CPU utilization compared
2729
+ to traditional implementations. In order to take advantage of Enhanced Networking, you
2730
+ should launch an HVM AMI in VPC, and install the appropriate driver. Enhanced Networking is
2731
+ currently supported in C3, R3, and I2 instances. For instructions on how to enable Enhanced
2732
+ Networking on EC2 instances, see the <a adhocenable="false"
2733
+ href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/enhanced-networking.html">Enhanced
2734
+ Networking on Linux</a> and <a adhocenable="false"
2735
+ href="http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/enhanced-networking-windows.html">Enhanced
2736
+ Networking on Windows</a> tutorials. To learn more about this feature, check out the <a
2737
+ adhocenable="false" href="/ec2/faqs/">Enhanced Networking FAQ</a> section.<br></p>
2738
+ </div>
2739
+ </div>
2740
+ <div class="title-wrapper section">
2741
+ <div class="row title ">
2742
+ <div class="twelve columns"><h3 class=" " id="Cluster_Networking"><a
2743
+ name="Cluster_Networking"> Cluster Networking </a></h3></div>
2744
+ </div>
2745
+ </div>
2746
+ <div class="text-box section">
2747
+ <div class=" "><p>C3, I2, CR1, G2, and HS1 instances support cluster networking. Instances
2748
+ launched into a common cluster placement group are placed into a logical cluster that
2749
+ provides high-bandwidth, low-latency networking between all instances in the cluster.
2750
+ Cluster networking is ideal for high performance analytics systems and many science and
2751
+ engineering applications, especially those using the MPI library standard for parallel
2752
+ programming.<br></p></div>
2753
+ </div>
2754
+ <div class="title-wrapper section">
2755
+ <div class="row title ">
2756
+ <div class="twelve columns"><h3 class=" " id="Dedicated_Instances"><a
2757
+ name="Dedicated_Instances"> Dedicated Instances </a></h3></div>
2758
+ </div>
2759
+ </div>
2760
+ <div class="text-box section">
2761
+ <div class=" "><p><a adhocenable="false" href="/ec2/purchasing-options/dedicated-instances/">Dedicated
2762
+ Instances</a> are Amazon EC2 instances that run on single-tenant hardware dedicated to a
2763
+ single customer. They are ideal for workloads where corporate policies or industry
2764
+ regulations require that your EC2 instances be physically isolated at the host hardware
2765
+ level from instances that belong to other customers. Dedicated Instances let you take full
2766
+ advantage of the benefits of the AWS cloud – on-demand elastic provisioning, pay only for
2767
+ what you use, all while ensuring that your Amazon EC2 compute instances are isolated at the
2768
+ hardware level.<br></p></div>
2769
+ </div>
2770
+ <div class="columnbuilder parbase section">
2771
+ <div class="row column-builder ">
2772
+ <div class="eight columns ">
2773
+ <div class="parsys col1">
2774
+ <div class="title-wrapper section">
2775
+ <div class="row title ">
2776
+ <div class="twelve columns"><h3 class=" " id="intel"><a name="intel"> Intel
2777
+ Processor Features </a></h3></div>
2778
+ </div>
2779
+ </div>
2780
+ <div class="text-box section">
2781
+ <div class=" "><p>Amazon EC2 instances provide access to the following processor
2782
+ features from Intel including:</p>
2783
+ <ul>
2784
+ <li><b>Intel® AES New Instructions (AES-NI)</b>: Intel AES-NI encryption
2785
+ instruction set improves upon the original Advanced Encryption
2786
+ Standard (AES) algorithm to provide faster data protection and
2787
+ greater security.
2788
+ </li>
2789
+ <li><b>Intel® Advanced Vector Extensions (Intel® AVX)</b>: Intel AVX is
2790
+ a 256-bit instruction set extension designed for applications that
2791
+ are Floating Point (FP) intensive. It improves performance for
2792
+ applications like image and audio/video processing, scientific
2793
+ simulations, financial analytics, and 3D modeling and analysis.
2794
+ </li>
2795
+ <li><b>Intel® Turbo Boost Technology</b>: Intel Turbo Boost Technology
2796
+ provides more performance when needed. The processor is able to
2797
+ automatically run cores faster than the base operating frequency to
2798
+ help you get more done faster.
2799
+ </li>
2800
+ </ul>
2801
+ <p>Not all processor features are available in all instance types, check out
2802
+ the <a adhocenable="false" href="#instance-type-matrix">instance type
2803
+ matrix</a> for more detailed information on which features are
2804
+ available from which instance types.<br></p></div>
2805
+ </div>
2806
+ </div>
2807
+ </div>
2808
+ <div class="four columns ">
2809
+ <div class="parsys col2">
2810
+ <div class="image-box section">
2811
+ <figure class="image ">
2812
+ <div class="parbase image">
2813
+ <div id="aws-element-img-65562adf-522f-4dc5-bee0-94044b3d3dd8"><img
2814
+ title="intelinside_150" alt="intelinside_150"
2815
+ src="//d0.awsstatic.com/logos/marketplace/intelinside_150.png">
2816
+ </div>
2817
+ </div>
2818
+ </figure>
2819
+ </div>
2820
+ </div>
2821
+ </div>
2822
+ </div>
2823
+ </div>
2824
+ <div class="title-wrapper section">
2825
+ <div class="row title ">
2826
+ <div class="twelve columns"><h2 class=" " id="Measuring_Instance_Performance"><a
2827
+ name="Measuring_Instance_Performance"> Measuring Instance Performance </a></h2>
2828
+ </div>
2829
+ </div>
2830
+ </div>
2831
+ <div class="title-wrapper section">
2832
+ <div class="row title ">
2833
+ <div class="twelve columns"><h3 class=" " id="Why_should_you_measure_instance_performance?">
2834
+ <a name="Why_should_you_measure_instance_performance?"> Why should you measure instance
2835
+ performance? </a></h3></div>
2836
+ </div>
2837
+ </div>
2838
+ <div class="text-box section">
2839
+ <div class=" "><p> Amazon EC2 allows you to provision a variety of instances types, which
2840
+ provide different combinations of CPU, memory, disk, and networking. Launching new instances
2841
+ and running tests in parallel is easy, and we recommend measuring the performance of
2842
+ applications to identify appropriate instance types and validate application architecture.
2843
+ We also recommend rigorous load/scale testing to ensure that your applications can scale as
2844
+ you intend. <br></p></div>
2845
+ </div>
2846
+ <div class="title-wrapper section">
2847
+ <div class="row title ">
2848
+ <div class="twelve columns"><h3 class=" "
2849
+ id="Considerations_for_Amazon_EC2_performance_evaluation"><a
2850
+ name="Considerations_for_Amazon_EC2_performance_evaluation"> Considerations for
2851
+ Amazon EC2 performance evaluation </a></h3></div>
2852
+ </div>
2853
+ </div>
2854
+ <div class="text-box section">
2855
+ <div class=" "><p>Amazon EC2 provides you with a large number of options across ten different
2856
+ instance types, each with one or more size options, organized into six distinct instance
2857
+ families optimized for different types of applications. We recommend that you assess the
2858
+ requirements of your applications and select the appropriate instance family as a starting
2859
+ point for application performance testing. You should start evaluating the performance of
2860
+ your applications by (a) identifying how your application needs compare to different
2861
+ instance families (e.g. is the application compute-bound, memory-bound, etc.?), and (b)
2862
+ sizing your workload to identify the appropriate instance size. There is no substitute for
2863
+ measuring the performance of your full application since application performance can be
2864
+ impacted by the underlying infrastructure or by software and architectural limitations. We
2865
+ recommend application-level testing, including the use of application profiling and load
2866
+ testing tools and services.</p>
2867
+
2868
+ <p><a name="instance-details"></a><br></p>
2869
+
2870
+ <p></p></div>
2871
+ </div>
2872
+ </div>
2873
+ </section>
2874
+ </div>
2875
+ </div>
2876
+ <footer class="footer">
2877
+ <div class="wrapper row">
2878
+ <div class="three columns push-nine"><a
2879
+ href="https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc1=f_ct"
2880
+ class="button btn-gold btn-sign-up">Create a Free Account</a></div>
2881
+ <div class="nine columns pull-three social-media">
2882
+ <ul>
2883
+ <li class="twitter"><a href="http://twitter.com/#!/awscloud?nc1=f_so_tw"><i
2884
+ class="icon-twitter"></i>  AWS on Twitter</a></li>
2885
+ <li class="facebook"><a href="https://www.facebook.com/amazonwebservices?nc1=f_so_fb"><i
2886
+ class="icon-facebook"></i>  AWS on Facebook</a></li>
2887
+ <li class="gplus"><a href="https://plus.google.com/+amazonwebservices?nc1=f_so_go" rel="publisher"
2888
+ target="_top"><i class="icon-google-plus"></i>  AWS on Google+</a></li>
2889
+ <li class="blog"><a href="//aws.amazon.com/blogs/aws/?nc1=f_so_bl"><i class="icon-list-alt"></i>
2890
+  AWS Blog</a></li>
2891
+ <li class="rss"><a href="http://aws.amazon.com/rss/whats-new.rss?nc1=f_so_rs"><i
2892
+ class="icon-rss"></i>  What's New? RSS</a></li>
2893
+ </ul>
2894
+ </div>
2895
+ </div>
2896
+ <div class="wrapper row footer-nav">
2897
+ <div class="eight columns nav-wrapper">
2898
+ <div class="row">
2899
+ <div class="three columns">
2900
+ <ul class="unstyled">
2901
+ <li class="title">AWS &amp; Cloud Computing</li>
2902
+ <li><a href="//aws.amazon.com/what-is-cloud-computing/?nc1=f_cc">What is Cloud
2903
+ Computing?</a></li>
2904
+ <li><a href="//aws.amazon.com/products/?nc1=f_cc">Products &amp; Services</a></li>
2905
+ <li><a href="//aws.amazon.com/solutions/case-studies/?nc1=f_cc">Customer Success</a></li>
2906
+ <li><a href="//aws.amazon.com/economics/?nc1=f_cc">Economics Center</a></li>
2907
+ <li><a href="//aws.amazon.com/architecture/?nc1=f_cc">Architecture Center</a></li>
2908
+ <li><a href="//aws.amazon.com/security/?nc1=f_cc">Security Center</a></li>
2909
+ <li><a href="//aws.amazon.com/whitepapers/?nc1=f_cc">Whitepapers</a></li>
2910
+ <li><a href="//aws.amazon.com/blogs/aws/?nc1=f_cc">AWS Blog</a></li>
2911
+ <li><a href="//aws.amazon.com/about-aws/events/?nc1=f_cc">Events</a></li>
2912
+ <li>
2913
+ <a href="http://phx.corporate-ir.net/phoenix.zhtml?c=176060&amp;p=irol-newsWebServices&amp;nc1=f_cc">Press
2914
+ Releases</a></li>
2915
+ <li><a href="//aws.amazon.com/resources/analyst-reports/">Analyst Reports</a></li>
2916
+ <li><a href="//aws.amazon.com/legal/?nc1=f_cc">Legal</a></li>
2917
+ </ul>
2918
+ </div>
2919
+ <div class="three columns">
2920
+ <ul class="unstyled">
2921
+ <li class="title">Developer Resources</li>
2922
+ <li><a href="//aws.amazon.com/developers/?nc1=f_dr">Developers</a></li>
2923
+ <li><a href="//aws.amazon.com/java/?nc1=f_dr">Java on AWS</a></li>
2924
+ <li><a href="//aws.amazon.com/javascript/?nc1=f_dr">JavaScript on AWS</a></li>
2925
+ <li><a href="//aws.amazon.com/mobile/?nc1=f_dr">Mobile on AWS</a></li>
2926
+ <li><a href="//aws.amazon.com/php/?nc1=f_dr">PHP on AWS</a></li>
2927
+ <li><a href="//aws.amazon.com/python/?nc1=f_dr">Python on AWS</a></li>
2928
+ <li><a href="//aws.amazon.com/ruby/?nc1=f_dr">Ruby on AWS</a></li>
2929
+ <li><a href="//aws.amazon.com/net/?nc1=f_dr">Windows &amp; .NET on AWS</a></li>
2930
+ <li><a href="//aws.amazon.com/tools?nc1=f_dr">SDKs &amp; Tools</a></li>
2931
+ <li><a href="https://aws.amazon.com/marketplace/ref=mkt_ste_dev_resources_ftr?nc1=f_dr">AWS
2932
+ Marketplace</a></li>
2933
+ <li><a href="//aws.amazon.com/usergroups/">User Groups</a></li>
2934
+ </ul>
2935
+ </div>
2936
+ <div class="three columns">
2937
+ <ul class="unstyled">
2938
+ <li class="title">Developer Centers</li>
2939
+ <li><a href="//aws.amazon.com/premiumsupport/?nc1=f_dc">Support Plans</a></li>
2940
+ <li><a href="http://status.aws.amazon.com/?nc1=f_dc">Service Health Dashboard</a></li>
2941
+ <li><a href="https://forums.aws.amazon.com/?nc1=f_dc">Discussion Forums</a></li>
2942
+ <li><a href="//aws.amazon.com/faqs/?nc1=f_dc">FAQs</a></li>
2943
+ <li><a href="//aws.amazon.com/documentation/?nc1=f_dc">Documentation</a></li>
2944
+ <li><a href="//aws.amazon.com/articles/?nc1=f_dc">Articles &amp; Tutorials</a></li>
2945
+ <li><a href="//aws.amazon.com/contact-us/?nc1=f_dc">Contact Support</a></li>
2946
+ </ul>
2947
+ </div>
2948
+ <div class="three columns">
2949
+ <ul class="unstyled">
2950
+ <li class="title">Manage Your Account</li>
2951
+ <li><a href="//aws.amazon.com/console/?nc1=f_m">Management Console</a></li>
2952
+ <li><a href="https://console.aws.amazon.com/billing/home?nc1=f_m">Billing &amp; Cost
2953
+ Management</a></li>
2954
+ <li>
2955
+ <a href="https://portal.aws.amazon.com/gp/aws/developer/account/index.html?action=edit-aws-profile&amp;nc1=f_m">Personal
2956
+ Information</a></li>
2957
+ <li>
2958
+ <a href="https://portal.aws.amazon.com/gp/aws/developer/account/index.html?action=edit-payment-method&amp;nc1=f_m">Payment
2959
+ Method</a></li>
2960
+ <li><a href="//aws.amazon.com/iam/?nc1=f_m">AWS Identity &amp; Access Management</a></li>
2961
+ <li>
2962
+ <a href="https://portal.aws.amazon.com/gp/aws/developer/account/index.html?action=access-key&amp;nc1=f_m">Security
2963
+ Credentials</a></li>
2964
+ <li><a href="//aws.amazon.com/contact-us/?nc1=f_m">Request Service Limit Increases</a></li>
2965
+ </ul>
2966
+ </div>
2967
+ </div>
2968
+ </div>
2969
+ <div class="four columns hiring"><p><b>Amazon Web Services is Hiring.</b></p>
2970
+
2971
+ <p>Amazon Web Services (AWS) is a dynamic, growing business unit within Amazon.com. We are currently
2972
+ hiring Software Development Engineers, Product Managers, Account Managers, Solution Architects,
2973
+ Support Engineers, System Engineers, Designers and more. Visit our <a
2974
+ href="//aws.amazon.com/careers/?nc1=f_hi">Careers</a> page or our <a
2975
+ href="//aws.amazon.com/sdejobs?nc1=f_hi">Developer-specific Careers</a> page to learn more.
2976
+ </p>
2977
+
2978
+ <p>Amazon Web Services is an Equal Opportunity Employer.</p> <a href="//amazon.com">
2979
+ <div class="footer-logo hlp-ir"> An Amazon.com Company</div>
2980
+ </a></div>
2981
+ </div>
2982
+ <div class="wrapper row language">
2983
+ <div class="twelve column">
2984
+ <ul class="language-list">
2985
+ <li>Language</li>
2986
+ <li><a href="//aws.amazon.com/de/ec2/instance-types/?nc1=f_ls" data-language="de">Deutsch</a></li>
2987
+ <li><a href="//aws.amazon.com/ec2/instance-types/?nc1=f_ls" data-language="en">English</a></li>
2988
+ <li><a href="//aws.amazon.com/es/ec2/instance-types/?nc1=f_ls" data-language="es">Español</a></li>
2989
+ <li><a href="//aws.amazon.com/fr/ec2/instance-types/?nc1=f_ls" data-language="fr">Français</a></li>
2990
+ <li><a href="//aws.amazon.com/jp/ec2/instance-types/?nc1=f_ls" data-language="jp">日本語</a></li>
2991
+ <li><a href="//aws.amazon.com/pt/ec2/instance-types/?nc1=f_ls" data-language="pt">Português</a></li>
2992
+ <li><a href="//aws.amazon.com/ko/ec2/instance-types/?nc1=f_ls" data-language="ko">한국어</a></li>
2993
+ <li><a href="//aws.amazon.com/cn/ec2/instance-types/?nc1=f_ls" data-language="cn">中文 (简体)</a></li>
2994
+ </ul>
2995
+ </div>
2996
+ </div>
2997
+ <div class="wrapper row meta">
2998
+ <div class="four columns"><a href="//aws.amazon.com/terms/?nc1=f_st">Site Terms</a> | <a
2999
+ href="//aws.amazon.com/privacy/?nc1=f_pr">Privacy</a></div>
3000
+ <div class="eight columns copyright"> © 2014, Amazon Web Services, Inc. or its affiliates. All rights
3001
+ reserved.
3002
+ </div>
3003
+ </div>
3004
+ </footer>
3005
+ </div>
3006
+ <script> require(['jquery', 'scripts']);
3007
+ mboxLast(); </script>
3008
+ <!-- SiteCatalyst code version: H.25.1. Copyright 1996-2012 Adobe, Inc. All Rights Reserved -->
3009
+ <script><!--
3010
+ /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/ var s_code = s.t();
3011
+ if (s_code)document.write(s_code)//--></script>
3012
+ <script language="JavaScript" type="text/javascript"><!--
3013
+ if (navigator.appVersion.indexOf('MSIE') >= 0)document.write(unescape('%3C') + '\!-' + '-') //--></script>
3014
+ <noscript><img src="//amazonwebservices.d2.sc.omtrdc.net/b/ss/awsamazonalldev2/1/H.25.1--NS/0" height="1" width="1"
3015
+ border="0" alt=""></noscript>
3016
+ <!--/DO NOT REMOVE/--> <!-- End SiteCatalyst code version: H.25.1. --> <!-- updated_at: 1408463859395 -->
3017
+ </body>
3018
+ </html>