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 +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +56 -0
- data/aws-ec2-instance_types.gemspec +2 -3
- data/bin/aws-ec2-instance_types +4 -2
- data/lib/dldinternet/aws/ec2/instance_types/aws-pricing-api-client.rb +49 -0
- data/lib/dldinternet/aws/ec2/instance_types/cli.rb +8 -8
- data/lib/dldinternet/aws/ec2/instance_types/get.rb +3 -4
- data/lib/dldinternet/aws/ec2/instance_types/mixins/ec2_instance_types.rb +13 -17
- data/lib/dldinternet/aws/ec2/instance_types/version.rb +1 -1
- data/test/doc.html +3018 -0
- metadata +9 -35
- data/VERSION +0 -1
- data/lib/dldinternet/aws/ec2/instance_types/scraper.rb +0 -129
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c5e2c50d450266223b0a34be776ff82f56a1f21
|
4
|
+
data.tar.gz: defcdfd317055f373c94a666c38ef73707964229
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9152a86369f814f4d6ea13342162b26956e20af21b840cb421816eb5b62f4509886f2efc6a1d76cde7a32cb60e4149d17808fdfcd5e0cf76e424dfb20c2feca4
|
7
|
+
data.tar.gz: 141da44dc10506536897746a6e028399f1876c1a7a722d149e625309028c8206e46038b0979ed73630dedd4659e24f4d6eb17abbc43300f9274e77a15300f084
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -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.
|
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
|
+
|
data/bin/aws-ec2-instance_types
CHANGED
@@ -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?(
|
10
|
+
if rc.is_a?(Integer)
|
11
11
|
exit rc
|
12
|
+
elsif rc.is_a?(IO)
|
13
|
+
exit 0
|
12
14
|
else
|
13
|
-
|
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.
|
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
|
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.
|
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.
|
78
|
-
DLDInternet::AWS::EC2::Instance_Types.
|
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 =
|
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 =
|
36
|
-
|
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/
|
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
|
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
|
26
|
-
format =
|
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
|
47
|
-
format =
|
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
|
-
|
65
|
-
|
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
|
-
|
67
|
+
client = DLDInternet::AWS::EC2::Instance_Types::AWSPricingAPIClient.new()
|
73
68
|
|
74
69
|
begin
|
75
|
-
|
76
|
-
|
77
|
-
|
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
|
data/test/doc.html
ADDED
@@ -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 &
|
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 & 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 & 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 & 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 & 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 & Education</span></li>
|
154
|
+
</ul>
|
155
|
+
<ul class="service-list">
|
156
|
+
<li data-target="websites"><span>Websites & Web Apps</span></li>
|
157
|
+
<li data-target="archive"><span>Backup, Storage, & Archive</span></li>
|
158
|
+
<li data-target="hpc"><span>Big Data & 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 & 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 & 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&category=2649337011&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&category=2649364011&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&searchTerms=analytics&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&searchTerms=Application+services&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 & 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&category=2649276011&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&category=2649362011&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&category=2649367011&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&category=2649364011&nc1=h_l2_mp"><strong>Databases
|
646
|
+
& 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&category=2649366011&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&category=2649275011&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&category=2649336011&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&category=5018785011&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&category=2649338011&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&category=2649339011&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&category=2649274011&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&category=2649281011"><strong>Issue
|
674
|
+
& 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&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&category=2649282011&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&category=2649283011&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 & 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 &
|
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&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&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&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 & 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 & 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 & 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 & 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&category=2649338011&searchTerms=website&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, & 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&searchTerms=backup+archive&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 & 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&category=6153421011&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&searchTerms=gaming&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&category=2649341011&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 & 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 & 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 & 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 & .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 & 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 & 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 & 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 & 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&category=2649337011&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&category=2649364011&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&searchTerms=analytics&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&searchTerms=Application+services&nc1=h_l2_as">AWS
|
1298
|
+
Marketplace</a></li>
|
1299
|
+
</ul>
|
1300
|
+
</li>
|
1301
|
+
<li class="parent"><a href="javascript:void(0)">Deployment & 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&category=2649362011&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&category=2649367011&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&category=2649364011&nc1=h_l2_mp">Databases
|
1345
|
+
& Caching</a></li>
|
1346
|
+
<li>
|
1347
|
+
<a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_ntwk_infra/?page=1&category=2649366011&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&category=2649336011&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&category=5018785011&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&category=2649338011&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&category=2649339011&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&category=2649281011">Issue
|
1371
|
+
& Bug Tracking</a></li>
|
1372
|
+
<li>
|
1373
|
+
<a href="https://aws.amazon.com/marketplace/search/results/ref=mkt_ste_l2_mp_monitoring/?page=1&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&category=2649282011&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&category=2649283011&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 & 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 & Education</a>
|
1414
|
+
<ul>
|
1415
|
+
<li><a href="//aws.amazon.com/government-education/?nc1=h_l2_ge">Government & 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 & 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&category=2649338011&searchTerms=website&nc1=h_l2_wa">AWS
|
1432
|
+
Marketplace</a></li>
|
1433
|
+
</ul>
|
1434
|
+
</li>
|
1435
|
+
<li class="parent"><a href="javascript:void(0)">Backup, Storage, & 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&searchTerms=backup+archive&nc1=h_l2_bsa">AWS
|
1442
|
+
Marketplace</a></li>
|
1443
|
+
</ul>
|
1444
|
+
</li>
|
1445
|
+
<li class="parent"><a href="javascript:void(0)">Big Data & 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&category=6153421011&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&searchTerms=gaming&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&category=2649341011&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 & 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 & .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 & 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 & 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 & 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>
|