aws-sdk 1.5.2 → 1.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +6 -2
  2. data/lib/aws/api_config/{EC2-2012-04-01.yml → EC2-2012-06-01.yml} +12 -0
  3. data/lib/aws/api_config/STS-2011-06-15.yml +0 -4
  4. data/lib/aws/auto_scaling/client.rb +6 -2
  5. data/lib/aws/auto_scaling/launch_configuration.rb +8 -0
  6. data/lib/aws/auto_scaling/launch_configuration_collection.rb +14 -4
  7. data/lib/aws/auto_scaling/scaling_policy.rb +17 -0
  8. data/lib/aws/auto_scaling/scaling_policy_options.rb +2 -0
  9. data/lib/aws/core.rb +13 -11
  10. data/lib/aws/core/cacheable.rb +1 -1
  11. data/lib/aws/core/client.rb +40 -39
  12. data/lib/aws/core/configuration.rb +24 -15
  13. data/lib/aws/core/credential_providers.rb +395 -0
  14. data/lib/aws/core/http/net_http_handler.rb +1 -0
  15. data/lib/aws/core/http/request.rb +4 -4
  16. data/lib/aws/core/log_formatter.rb +2 -0
  17. data/lib/aws/core/signature/version_2.rb +18 -5
  18. data/lib/aws/core/signature/version_3.rb +10 -10
  19. data/lib/aws/core/signature/version_4.rb +13 -13
  20. data/lib/aws/core/signer.rb +46 -0
  21. data/lib/aws/dynamo_db/batch_write.rb +2 -1
  22. data/lib/aws/dynamo_db/client.rb +9 -24
  23. data/lib/aws/dynamo_db/table.rb +0 -23
  24. data/lib/aws/ec2/client.rb +19 -1
  25. data/lib/aws/ec2/image.rb +4 -4
  26. data/lib/aws/ec2/instance.rb +17 -5
  27. data/lib/aws/ec2/instance_collection.rb +16 -1
  28. data/lib/aws/errors.rb +40 -0
  29. data/lib/aws/s3/client.rb +2 -1
  30. data/lib/aws/s3/presigned_post.rb +10 -8
  31. data/lib/aws/s3/request.rb +7 -5
  32. data/lib/aws/s3/s3_object.rb +10 -9
  33. data/lib/aws/simple_email_service.rb +1 -1
  34. data/lib/aws/simple_email_service/identity_collection.rb +1 -1
  35. data/lib/aws/sts.rb +2 -6
  36. data/lib/aws/sts/client.rb +14 -17
  37. metadata +7 -9
  38. data/lib/aws/api_config/EC2-2011-12-15.yml +0 -3638
  39. data/lib/aws/core/default_signer.rb +0 -67
  40. data/lib/aws/core/session_signer.rb +0 -90
  41. data/lib/aws/core/signature/version_3_http.rb +0 -72
@@ -34,7 +34,8 @@ module AWS
34
34
  # @private
35
35
  EMPTY_BODY_ERRORS = {
36
36
  304 => Errors::NotModified,
37
- 404 => Errors::NoSuchKey
37
+ 403 => Errors::Forbidden,
38
+ 404 => Errors::NoSuchKey,
38
39
  }
39
40
 
40
41
  # @private
@@ -12,7 +12,6 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  require 'uri'
15
- require 'base64'
16
15
  require 'time'
17
16
 
18
17
  module AWS
@@ -82,7 +81,8 @@ module AWS
82
81
  :acl,
83
82
  :server_side_encryption,
84
83
  :success_action_redirect,
85
- :success_action_status]
84
+ :success_action_status,
85
+ :filename]
86
86
 
87
87
  # @private
88
88
  attr_reader :conditions
@@ -342,17 +342,19 @@ module AWS
342
342
  # {#where}).
343
343
  def fields
344
344
 
345
- signature = config.signer.sign(policy, "sha1")
345
+ secret = config.credential_provider.secret_access_key
346
+ signature = Core::Signer.sign(secret, policy, 'sha1')
346
347
 
347
348
  fields = {
348
- "AWSAccessKeyId" => config.signer.access_key_id,
349
+ "AWSAccessKeyId" => config.credential_provider.access_key_id,
349
350
  "key" => key,
350
351
  "policy" => policy,
351
352
  "signature" => signature
352
353
  }.merge(optional_fields)
353
354
 
354
- fields["x-amz-security-token"] = config.signer.session_token if
355
- config.signer.session_token
355
+ if token = config.credential_provider.session_token
356
+ fields["x-amz-security-token"] = token
357
+ end
356
358
 
357
359
  fields.merge(optional_fields)
358
360
 
@@ -500,8 +502,8 @@ module AWS
500
502
  conditions += range_conditions
501
503
  conditions += ignored_conditions
502
504
 
503
- if config.signer.session_token
504
- conditions << {"x-amz-security-token" => config.signer.session_token}
505
+ if token = config.credential_provider.session_token
506
+ conditions << { "x-amz-security-token" => token }
505
507
  end
506
508
 
507
509
  conditions
@@ -171,13 +171,15 @@ module AWS
171
171
  params.select { |p| self.class.query_parameters.include?(p.name) }
172
172
  end
173
173
 
174
- def add_authorization!(signer)
175
- if signer.respond_to?(:session_token) and
176
- token = signer.session_token
174
+ def add_authorization! credentials
175
+ if token = credentials.session_token
177
176
  headers["x-amz-security-token"] = token
178
177
  end
179
- signature = URI.escape(signer.sign(string_to_sign, 'sha1'))
180
- headers["authorization"] = "AWS #{signer.access_key_id}:#{signature}"
178
+
179
+ secret = credentials.secret_access_key
180
+ signature = Core::Signer.sign(secret, string_to_sign, 'sha1')
181
+ signature = URI.escape(signature)
182
+ headers["authorization"] = "AWS #{credentials.access_key_id}:#{signature}"
181
183
  end
182
184
 
183
185
  class << self
@@ -133,7 +133,7 @@ module AWS
133
133
 
134
134
  # @return [String,nil]
135
135
  def expiration_rule_id
136
- head.expiration_date
136
+ head.expiration_rule_id
137
137
  end
138
138
 
139
139
  # @return [Symbol, nil] Returns the algorithm used to encrypt
@@ -310,8 +310,8 @@ module AWS
310
310
  else
311
311
  opts = { :bucket_name => bucket.name, :key => key }
312
312
  resp = client.put_object(opts.merge(put_options).merge(data_options))
313
- if resp.version_id
314
- ObjectVersion.new(self, resp.version_id)
313
+ if resp.data[:version_id]
314
+ ObjectVersion.new(self, resp.data[:version_id])
315
315
  else
316
316
  self
317
317
  end
@@ -836,12 +836,12 @@ module AWS
836
836
 
837
837
  method = http_method(method)
838
838
  expires = expiration_timestamp(options[:expires])
839
- req.add_param("AWSAccessKeyId", config.signer.access_key_id)
839
+ req.add_param("AWSAccessKeyId", config.credential_provider.access_key_id)
840
840
  req.add_param("versionId", options[:version_id]) if options[:version_id]
841
841
  req.add_param("Signature", signature(method, expires, req))
842
842
  req.add_param("Expires", expires)
843
- req.add_param("x-amz-security-token", config.signer.session_token) if
844
- config.signer.session_token
843
+ req.add_param("x-amz-security-token", config.credential_provider.session_token) if
844
+ config.credential_provider.session_token
845
845
 
846
846
  build_uri(options[:secure] != false, req)
847
847
  end
@@ -906,13 +906,14 @@ module AWS
906
906
  parts << ""
907
907
  parts << ""
908
908
  parts << expires
909
- parts << "x-amz-security-token:#{config.signer.session_token}" if
910
- config.signer.session_token
909
+ parts << "x-amz-security-token:#{config.credential_provider.session_token}" if
910
+ config.credential_provider.session_token
911
911
  parts << request.canonicalized_resource
912
912
 
913
913
  string_to_sign = parts.join("\n")
914
914
 
915
- config.signer.sign(string_to_sign, "sha1")
915
+ secret = config.credential_provider.secret_access_key
916
+ Core::Signer.sign(secret, string_to_sign, 'sha1')
916
917
 
917
918
  end
918
919
 
@@ -146,7 +146,7 @@ module AWS
146
146
  # send and how quickly you can send it. These sending limits are defined
147
147
  # as follows:
148
148
  #
149
- # * +:max_send_rate+ Maximum number of emails you can send per second.
149
+ # * +:max_send_rate+ - Maximum number of emails you can send per second.
150
150
  # * +:max_24_hour_send+ - Maximum number of emails you can send in a
151
151
  # 24-hour period.
152
152
  #
@@ -25,7 +25,7 @@ module AWS
25
25
 
26
26
  # Request verification for an email address or a domain.
27
27
  # @param [String] email_or_domain
28
- # @return [Identity] Returns an {Iidentity} object. Identities for
28
+ # @return [Identity] Returns an {Identity} object. Identities for
29
29
  # domains will have a #verification_token.
30
30
  def verify email_or_domain
31
31
 
@@ -67,12 +67,7 @@ module AWS
67
67
  # account owners are restricted to a maximum of 3600s (one
68
68
  # hour).
69
69
  #
70
- # @option opts [String] :serial_number
71
- #
72
- # @option opts [String] :token_code
73
- #
74
70
  # @return [Session]
75
- #
76
71
  def new_session(opts = {})
77
72
  get_session(:get_session_token, opts) do |resp, session_opts|
78
73
  Session.new(session_opts)
@@ -137,7 +132,8 @@ module AWS
137
132
  # @private
138
133
  protected
139
134
  def get_session(method, opts = {})
140
- opts[:duration_seconds] = opts.delete(:duration) if opts[:duration]
135
+ opts[:duration_seconds] = opts.delete(:duration) if
136
+ opts[:duration]
141
137
  resp = client.send(method, opts)
142
138
  credentials = resp[:credentials].dup
143
139
  session_opts = {
@@ -43,19 +43,18 @@ module AWS
43
43
  # === Options:
44
44
  #
45
45
  # * +:name+ - *required* - (String) The name of the federated user
46
- # associated with the credentials. For information about limitations on
47
- # user names, go to Limitations on IAM Entities in Using AWS Identity
48
- # and Access Management.
49
- # * +:policy+ - (String) A policy specifying the permissions to associate
50
- # with the credentials. The caller can delegate their own permissions
51
- # by specifying a policy, and both policies will be checked when a
52
- # service call is made. For more information about how permissions work
53
- # in the context of temporary credentials, see Controlling Permissions
54
- # in Temporary Credentials in Using AWS Identity and Access Management.
46
+ # associated with the session.
47
+ # * +:policy+ - (String) A policy specifying the permissions associated
48
+ # with the session. The caller can delegate their own permissions by
49
+ # specifying a policy for the session, and both policies will be
50
+ # checked when a service call is made. In other words, permissions of
51
+ # the session credentials are the intersection of the policy specified
52
+ # in the API and the policies associated with the user who issued the
53
+ # session.
55
54
  # * +:duration_seconds+ - (Integer) The duration, in seconds, that the
56
55
  # session should last. Acceptable durations for federation sessions
57
- # range from 3600s (one hour) to 129600s (36 hours), with 43200s (12
58
- # hours) as the default.
56
+ # range from 3600s (1 hour) to 129600s (36 hours), with 43200 as the
57
+ # default.
59
58
  #
60
59
  # === Response Structure:
61
60
  #
@@ -79,12 +78,10 @@ module AWS
79
78
  # === Options:
80
79
  #
81
80
  # * +:duration_seconds+ - (Integer) The duration, in seconds, that the
82
- # credentials should remain valid. Acceptable durations for IAM user
83
- # sessions range from 3600s (one hour) to 129600s (36 hours), with
84
- # 43200s (12 hours) as the default. Sessions for AWS account owners are
85
- # restricted to a maximum of 3600s (one hour).
86
- # * +:serial_number+ - (String)
87
- # * +:token_code+ - (String)
81
+ # session should last. Acceptable durations for IAM user sessions range
82
+ # from 3600s (1 hour) to 129600s (36 hours), with 43200 as the default.
83
+ # Sessions started for AWS Account owners are restricted to a maximum
84
+ # 3600s.
88
85
  #
89
86
  # === Response Structure:
90
87
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.2
4
+ version: 1.5.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-15 00:00:00.000000000 Z
12
+ date: 2012-06-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: uuidtools
@@ -132,8 +132,8 @@ files:
132
132
  - lib/aws/core/collection/simple.rb
133
133
  - lib/aws/core/collection.rb
134
134
  - lib/aws/core/configuration.rb
135
+ - lib/aws/core/credential_providers.rb
135
136
  - lib/aws/core/data.rb
136
- - lib/aws/core/default_signer.rb
137
137
  - lib/aws/core/http/curb_handler.rb
138
138
  - lib/aws/core/http/handler.rb
139
139
  - lib/aws/core/http/httparty_handler.rb
@@ -155,11 +155,10 @@ files:
155
155
  - lib/aws/core/response.rb
156
156
  - lib/aws/core/response_cache.rb
157
157
  - lib/aws/core/service_interface.rb
158
- - lib/aws/core/session_signer.rb
159
158
  - lib/aws/core/signature/version_2.rb
160
159
  - lib/aws/core/signature/version_3.rb
161
- - lib/aws/core/signature/version_3_http.rb
162
160
  - lib/aws/core/signature/version_4.rb
161
+ - lib/aws/core/signer.rb
163
162
  - lib/aws/core/uri_escape.rb
164
163
  - lib/aws/core/xml/frame.rb
165
164
  - lib/aws/core/xml/frame_stack.rb
@@ -462,8 +461,7 @@ files:
462
461
  - lib/aws/api_config/AutoScaling-2011-01-01.yml
463
462
  - lib/aws/api_config/CloudFormation-2010-05-15.yml
464
463
  - lib/aws/api_config/DynamoDB-2011-12-05.yml
465
- - lib/aws/api_config/EC2-2011-12-15.yml
466
- - lib/aws/api_config/EC2-2012-04-01.yml
464
+ - lib/aws/api_config/EC2-2012-06-01.yml
467
465
  - lib/aws/api_config/ELB-2011-08-15.yml
468
466
  - lib/aws/api_config/IAM-2010-05-08.yml
469
467
  - lib/aws/api_config/SimpleDB-2009-04-15.yml
@@ -492,7 +490,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
492
490
  version: '0'
493
491
  segments:
494
492
  - 0
495
- hash: 2608412966865873950
493
+ hash: -352312075848361752
496
494
  required_rubygems_version: !ruby/object:Gem::Requirement
497
495
  none: false
498
496
  requirements:
@@ -501,7 +499,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
501
499
  version: '0'
502
500
  requirements: []
503
501
  rubyforge_project:
504
- rubygems_version: 1.8.21
502
+ rubygems_version: 1.8.24
505
503
  signing_key:
506
504
  specification_version: 3
507
505
  summary: AWS SDK for Ruby
@@ -1,3638 +0,0 @@
1
- # Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License"). You
4
- # may not use this file except in compliance with the License. A copy of
5
- # the License is located at
6
- #
7
- # http://aws.amazon.com/apache2.0/
8
- #
9
- # or in the "license" file accompanying this file. This file is
10
- # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
- # ANY KIND, either express or implied. See the License for the specific
12
- # language governing permissions and limitations under the License.
13
-
14
- ---
15
- :operations:
16
- - :name: ActivateLicense
17
- :method: :activate_license
18
- :inputs:
19
- LicenseId:
20
- - :string
21
- - :required
22
- Capacity:
23
- - :integer
24
- - :required
25
- :outputs: {}
26
- - :name: AllocateAddress
27
- :method: :allocate_address
28
- :inputs:
29
- Domain:
30
- - :string
31
- :outputs: {}
32
- - :name: AssociateAddress
33
- :method: :associate_address
34
- :inputs:
35
- InstanceId:
36
- - :string
37
- - :required
38
- PublicIp:
39
- - :string
40
- AllocationId:
41
- - :string
42
- NetworkInterfaceId:
43
- - :string
44
- :outputs: {}
45
- - :name: AssociateDhcpOptions
46
- :method: :associate_dhcp_options
47
- :inputs:
48
- DhcpOptionsId:
49
- - :string
50
- - :required
51
- VpcId:
52
- - :string
53
- - :required
54
- :outputs: {}
55
- - :name: AssociateRouteTable
56
- :method: :associate_route_table
57
- :inputs:
58
- SubnetId:
59
- - :string
60
- - :required
61
- RouteTableId:
62
- - :string
63
- - :required
64
- :outputs: {}
65
- - :name: AttachInternetGateway
66
- :method: :attach_internet_gateway
67
- :inputs:
68
- InternetGatewayId:
69
- - :string
70
- - :required
71
- VpcId:
72
- - :string
73
- - :required
74
- :outputs: {}
75
- - :name: AttachNetworkInterface
76
- :method: :attach_network_interface
77
- :inputs:
78
- NetworkInterfaceId:
79
- - :string
80
- - :required
81
- InstanceId:
82
- - :string
83
- - :required
84
- DeviceIndex:
85
- - :integer
86
- - :required
87
- :outputs: {}
88
- - :name: AttachVolume
89
- :method: :attach_volume
90
- :inputs:
91
- VolumeId:
92
- - :string
93
- - :required
94
- InstanceId:
95
- - :string
96
- - :required
97
- Device:
98
- - :string
99
- - :required
100
- :outputs:
101
- :children:
102
- attachTime:
103
- :type: :time
104
- deleteOnTermination:
105
- :type: :boolean
106
- - :name: AttachVpnGateway
107
- :method: :attach_vpn_gateway
108
- :inputs:
109
- VpnGatewayId:
110
- - :string
111
- - :required
112
- VpcId:
113
- - :string
114
- - :required
115
- :outputs: {}
116
- - :name: AuthorizeSecurityGroupEgress
117
- :method: :authorize_security_group_egress
118
- :inputs:
119
- GroupId:
120
- - :string
121
- - :required
122
- SourceSecurityGroupName:
123
- - :string
124
- SourceSecurityGroupOwnerId:
125
- - :string
126
- IpProtocol:
127
- - :string
128
- FromPort:
129
- - :integer
130
- ToPort:
131
- - :integer
132
- CidrIp:
133
- - :string
134
- IpPermissions:
135
- - :list:
136
- - :structure:
137
- IpProtocol:
138
- - :string
139
- - :rename: IpProtocol
140
- FromPort:
141
- - :integer
142
- - :rename: FromPort
143
- ToPort:
144
- - :integer
145
- - :rename: ToPort
146
- Groups:
147
- - :list:
148
- - :structure:
149
- UserId:
150
- - :string
151
- - :rename: UserId
152
- GroupName:
153
- - :string
154
- - :rename: GroupName
155
- GroupId:
156
- - :string
157
- - :rename: GroupId
158
- - :rename: UserIdGroupPairs
159
- IpRanges:
160
- - :list:
161
- - :structure:
162
- CidrIp:
163
- - :string
164
- - :rename: CidrIp
165
- - :rename: IpRanges
166
- :outputs: {}
167
- - :name: AuthorizeSecurityGroupIngress
168
- :method: :authorize_security_group_ingress
169
- :inputs:
170
- GroupName:
171
- - :string
172
- GroupId:
173
- - :string
174
- SourceSecurityGroupName:
175
- - :string
176
- SourceSecurityGroupOwnerId:
177
- - :string
178
- IpProtocol:
179
- - :string
180
- FromPort:
181
- - :integer
182
- ToPort:
183
- - :integer
184
- CidrIp:
185
- - :string
186
- IpPermissions:
187
- - :list:
188
- - :structure:
189
- IpProtocol:
190
- - :string
191
- - :rename: IpProtocol
192
- FromPort:
193
- - :integer
194
- - :rename: FromPort
195
- ToPort:
196
- - :integer
197
- - :rename: ToPort
198
- Groups:
199
- - :list:
200
- - :structure:
201
- UserId:
202
- - :string
203
- - :rename: UserId
204
- GroupName:
205
- - :string
206
- - :rename: GroupName
207
- GroupId:
208
- - :string
209
- - :rename: GroupId
210
- - :rename: UserIdGroupPairs
211
- IpRanges:
212
- - :list:
213
- - :structure:
214
- CidrIp:
215
- - :string
216
- - :rename: CidrIp
217
- - :rename: IpRanges
218
- :outputs: {}
219
- - :name: BundleInstance
220
- :method: :bundle_instance
221
- :inputs:
222
- InstanceId:
223
- - :string
224
- - :required
225
- Storage:
226
- - :structure:
227
- S3:
228
- - :structure:
229
- Bucket:
230
- - :string
231
- - :rename: Bucket
232
- Prefix:
233
- - :string
234
- - :rename: Prefix
235
- AWSAccessKeyId:
236
- - :string
237
- UploadPolicy:
238
- - :string
239
- - :rename: UploadPolicy
240
- UploadPolicySignature:
241
- - :string
242
- - :rename: UploadPolicySignature
243
- - :required
244
- :outputs:
245
- :children:
246
- bundleInstanceTask:
247
- :children:
248
- startTime:
249
- :type: :time
250
- updateTime:
251
- :type: :time
252
- - :name: CancelBundleTask
253
- :method: :cancel_bundle_task
254
- :inputs:
255
- BundleId:
256
- - :string
257
- - :required
258
- :outputs:
259
- :children:
260
- bundleInstanceTask:
261
- :children:
262
- startTime:
263
- :type: :time
264
- updateTime:
265
- :type: :time
266
- - :name: CancelConversionTask
267
- :method: :cancel_conversion_task
268
- :inputs:
269
- ConversionTaskId:
270
- - :string
271
- - :required
272
- ReasonMessage:
273
- - :string
274
- :outputs: {}
275
- - :name: CancelSpotInstanceRequests
276
- :method: :cancel_spot_instance_requests
277
- :inputs:
278
- SpotInstanceRequestId:
279
- - :list:
280
- - :string
281
- - :required
282
- - :rename: spotInstanceRequestIds
283
- :outputs:
284
- :children:
285
- spotInstanceRequestSet:
286
- :ignore: true
287
- :children:
288
- item:
289
- :rename: :spot_instance_request_set
290
- :list: true
291
- - :name: ConfirmProductInstance
292
- :method: :confirm_product_instance
293
- :inputs:
294
- ProductCode:
295
- - :string
296
- - :required
297
- InstanceId:
298
- - :string
299
- - :required
300
- :outputs: {}
301
- - :name: CreateCustomerGateway
302
- :method: :create_customer_gateway
303
- :inputs:
304
- Type:
305
- - :string
306
- - :required
307
- IpAddress:
308
- - :string
309
- - :required
310
- - :rename: PublicIp
311
- BgpAsn:
312
- - :integer
313
- - :required
314
- :outputs:
315
- :children:
316
- customerGateway:
317
- :children:
318
- tagSet:
319
- :ignore: true
320
- :children:
321
- item:
322
- :rename: :tag_set
323
- :list: true
324
- - :name: CreateDhcpOptions
325
- :method: :create_dhcp_options
326
- :inputs:
327
- DhcpConfiguration:
328
- - :list:
329
- - :structure:
330
- Key:
331
- - :string
332
- - :rename: Key
333
- Value:
334
- - :list:
335
- - :string
336
- - :rename: Values
337
- - :required
338
- - :rename: DhcpConfigurations
339
- :outputs:
340
- :children:
341
- dhcpOptions:
342
- :children:
343
- dhcpConfigurationSet:
344
- :ignore: true
345
- :children:
346
- item:
347
- :rename: :dhcp_configuration_set
348
- :list: true
349
- :children:
350
- valueSet:
351
- :ignore: true
352
- :children:
353
- item:
354
- :rename: :value_set
355
- :list: true
356
- tagSet:
357
- :ignore: true
358
- :children:
359
- item:
360
- :rename: :tag_set
361
- :list: true
362
- - :name: CreateImage
363
- :method: :create_image
364
- :inputs:
365
- InstanceId:
366
- - :string
367
- - :required
368
- Name:
369
- - :string
370
- - :required
371
- Description:
372
- - :string
373
- NoReboot:
374
- - :boolean
375
- :outputs: {}
376
- - :name: CreateInternetGateway
377
- :method: :create_internet_gateway
378
- :inputs: {}
379
- :outputs:
380
- :children:
381
- internetGateway:
382
- :children:
383
- attachmentSet:
384
- :ignore: true
385
- :children:
386
- item:
387
- :rename: :attachment_set
388
- :list: true
389
- tagSet:
390
- :ignore: true
391
- :children:
392
- item:
393
- :rename: :tag_set
394
- :list: true
395
- - :name: CreateKeyPair
396
- :method: :create_key_pair
397
- :inputs:
398
- KeyName:
399
- - :string
400
- - :required
401
- :outputs: {}
402
- - :name: CreateNetworkAcl
403
- :method: :create_network_acl
404
- :inputs:
405
- VpcId:
406
- - :string
407
- - :required
408
- :outputs:
409
- :children:
410
- networkAcl:
411
- :children:
412
- default:
413
- :type: :boolean
414
- entrySet:
415
- :ignore: true
416
- :children:
417
- item:
418
- :rename: :entry_set
419
- :list: true
420
- :children:
421
- ruleNumber:
422
- :type: :integer
423
- egress:
424
- :type: :boolean
425
- icmpTypeCode:
426
- :children:
427
- type:
428
- :type: :integer
429
- code:
430
- :type: :integer
431
- portRange:
432
- :children:
433
- from:
434
- :type: :integer
435
- to:
436
- :type: :integer
437
- associationSet:
438
- :ignore: true
439
- :children:
440
- item:
441
- :rename: :association_set
442
- :list: true
443
- tagSet:
444
- :ignore: true
445
- :children:
446
- item:
447
- :rename: :tag_set
448
- :list: true
449
- - :name: CreateNetworkAclEntry
450
- :method: :create_network_acl_entry
451
- :inputs:
452
- NetworkAclId:
453
- - :string
454
- - :required
455
- RuleNumber:
456
- - :integer
457
- - :required
458
- Protocol:
459
- - :string
460
- - :required
461
- RuleAction:
462
- - :string
463
- - :required
464
- Egress:
465
- - :boolean
466
- - :required
467
- CidrBlock:
468
- - :string
469
- - :required
470
- Icmp:
471
- - :structure:
472
- Type:
473
- - :integer
474
- Code:
475
- - :integer
476
- - :rename: icmpTypeCode
477
- PortRange:
478
- - :structure:
479
- From:
480
- - :integer
481
- To:
482
- - :integer
483
- :outputs: {}
484
- - :name: CreateNetworkInterface
485
- :method: :create_network_interface
486
- :inputs:
487
- SubnetId:
488
- - :string
489
- - :required
490
- Description:
491
- - :string
492
- PrivateIpAddress:
493
- - :string
494
- SecurityGroupId:
495
- - :list:
496
- - :string
497
- - :rename: groups
498
- :outputs:
499
- :children:
500
- networkInterface:
501
- :children:
502
- requesterManaged:
503
- :type: :boolean
504
- sourceDestCheck:
505
- :type: :boolean
506
- groupSet:
507
- :ignore: true
508
- :children:
509
- item:
510
- :rename: :group_set
511
- :list: true
512
- attachment:
513
- :children:
514
- deviceIndex:
515
- :type: :integer
516
- attachTime:
517
- :type: :time
518
- deleteOnTermination:
519
- :type: :boolean
520
- tagSet:
521
- :ignore: true
522
- :children:
523
- item:
524
- :rename: :tag_set
525
- :list: true
526
- - :name: CreatePlacementGroup
527
- :method: :create_placement_group
528
- :inputs:
529
- GroupName:
530
- - :string
531
- - :required
532
- Strategy:
533
- - :string
534
- - :required
535
- :outputs: {}
536
- - :name: CreateRoute
537
- :method: :create_route
538
- :inputs:
539
- RouteTableId:
540
- - :string
541
- - :required
542
- DestinationCidrBlock:
543
- - :string
544
- - :required
545
- GatewayId:
546
- - :string
547
- InstanceId:
548
- - :string
549
- NetworkInterfaceId:
550
- - :string
551
- :outputs: {}
552
- - :name: CreateRouteTable
553
- :method: :create_route_table
554
- :inputs:
555
- VpcId:
556
- - :string
557
- - :required
558
- :outputs:
559
- :children:
560
- routeTable:
561
- :children:
562
- routeSet:
563
- :ignore: true
564
- :children:
565
- item:
566
- :rename: :route_set
567
- :list: true
568
- associationSet:
569
- :ignore: true
570
- :children:
571
- item:
572
- :rename: :association_set
573
- :list: true
574
- :children:
575
- main:
576
- :type: :boolean
577
- tagSet:
578
- :ignore: true
579
- :children:
580
- item:
581
- :rename: :tag_set
582
- :list: true
583
- - :name: CreateSecurityGroup
584
- :method: :create_security_group
585
- :inputs:
586
- GroupName:
587
- - :string
588
- - :required
589
- GroupDescription:
590
- - :string
591
- - :required
592
- - :rename: Description
593
- VpcId:
594
- - :string
595
- :outputs: {}
596
- - :name: CreateSnapshot
597
- :method: :create_snapshot
598
- :inputs:
599
- VolumeId:
600
- - :string
601
- - :required
602
- Description:
603
- - :string
604
- :outputs:
605
- :children:
606
- startTime:
607
- :type: :time
608
- volumeSize:
609
- :type: :integer
610
- tagSet:
611
- :ignore: true
612
- :children:
613
- item:
614
- :rename: :tag_set
615
- :list: true
616
- - :name: CreateSpotDatafeedSubscription
617
- :method: :create_spot_datafeed_subscription
618
- :inputs:
619
- Bucket:
620
- - :string
621
- - :required
622
- Prefix:
623
- - :string
624
- :outputs: {}
625
- - :name: CreateSubnet
626
- :method: :create_subnet
627
- :inputs:
628
- VpcId:
629
- - :string
630
- - :required
631
- CidrBlock:
632
- - :string
633
- - :required
634
- AvailabilityZone:
635
- - :string
636
- :outputs:
637
- :children:
638
- subnet:
639
- :children:
640
- availableIpAddressCount:
641
- :type: :integer
642
- tagSet:
643
- :ignore: true
644
- :children:
645
- item:
646
- :rename: :tag_set
647
- :list: true
648
- - :name: CreateTags
649
- :method: :create_tags
650
- :inputs:
651
- ResourceId:
652
- - :list:
653
- - :string
654
- - :required
655
- - :rename: resources
656
- Tag:
657
- - :list:
658
- - :structure:
659
- Key:
660
- - :string
661
- Value:
662
- - :string
663
- - :required
664
- - :rename: tags
665
- :outputs: {}
666
- - :name: CreateVolume
667
- :method: :create_volume
668
- :inputs:
669
- Size:
670
- - :integer
671
- SnapshotId:
672
- - :string
673
- AvailabilityZone:
674
- - :string
675
- - :required
676
- :outputs:
677
- :children:
678
- size:
679
- :type: :integer
680
- createTime:
681
- :type: :time
682
- attachmentSet:
683
- :ignore: true
684
- :children:
685
- item:
686
- :rename: :attachment_set
687
- :list: true
688
- :children:
689
- attachTime:
690
- :type: :time
691
- deleteOnTermination:
692
- :type: :boolean
693
- tagSet:
694
- :ignore: true
695
- :children:
696
- item:
697
- :rename: :tag_set
698
- :list: true
699
- - :name: CreateVpc
700
- :method: :create_vpc
701
- :inputs:
702
- CidrBlock:
703
- - :string
704
- - :required
705
- InstanceTenancy:
706
- - :string
707
- :outputs:
708
- :children:
709
- vpc:
710
- :children:
711
- tagSet:
712
- :ignore: true
713
- :children:
714
- item:
715
- :rename: :tag_set
716
- :list: true
717
- - :name: CreateVpnConnection
718
- :method: :create_vpn_connection
719
- :inputs:
720
- Type:
721
- - :string
722
- - :required
723
- CustomerGatewayId:
724
- - :string
725
- - :required
726
- VpnGatewayId:
727
- - :string
728
- - :required
729
- :outputs:
730
- :children:
731
- vpnConnection:
732
- :children:
733
- tagSet:
734
- :ignore: true
735
- :children:
736
- item:
737
- :rename: :tag_set
738
- :list: true
739
- vgwTelemetry:
740
- :ignore: true
741
- :children:
742
- item:
743
- :rename: :vgw_telemetry
744
- :list: true
745
- :children:
746
- lastStatusChange:
747
- :type: :time
748
- acceptedRouteCount:
749
- :type: :integer
750
- - :name: CreateVpnGateway
751
- :method: :create_vpn_gateway
752
- :inputs:
753
- Type:
754
- - :string
755
- - :required
756
- AvailabilityZone:
757
- - :string
758
- :outputs:
759
- :children:
760
- vpnGateway:
761
- :children:
762
- attachments:
763
- :ignore: true
764
- :children:
765
- item:
766
- :rename: :attachments
767
- :list: true
768
- tagSet:
769
- :ignore: true
770
- :children:
771
- item:
772
- :rename: :tag_set
773
- :list: true
774
- type:
775
- :rename: :vpn_type
776
- - :name: DeactivateLicense
777
- :method: :deactivate_license
778
- :inputs:
779
- LicenseId:
780
- - :string
781
- - :required
782
- Capacity:
783
- - :integer
784
- - :required
785
- :outputs: {}
786
- - :name: DeleteCustomerGateway
787
- :method: :delete_customer_gateway
788
- :inputs:
789
- CustomerGatewayId:
790
- - :string
791
- - :required
792
- :outputs: {}
793
- - :name: DeleteDhcpOptions
794
- :method: :delete_dhcp_options
795
- :inputs:
796
- DhcpOptionsId:
797
- - :string
798
- - :required
799
- :outputs: {}
800
- - :name: DeleteInternetGateway
801
- :method: :delete_internet_gateway
802
- :inputs:
803
- InternetGatewayId:
804
- - :string
805
- - :required
806
- :outputs: {}
807
- - :name: DeleteKeyPair
808
- :method: :delete_key_pair
809
- :inputs:
810
- KeyName:
811
- - :string
812
- - :required
813
- :outputs: {}
814
- - :name: DeleteNetworkAcl
815
- :method: :delete_network_acl
816
- :inputs:
817
- NetworkAclId:
818
- - :string
819
- - :required
820
- :outputs: {}
821
- - :name: DeleteNetworkAclEntry
822
- :method: :delete_network_acl_entry
823
- :inputs:
824
- NetworkAclId:
825
- - :string
826
- - :required
827
- RuleNumber:
828
- - :integer
829
- - :required
830
- Egress:
831
- - :boolean
832
- - :required
833
- :outputs: {}
834
- - :name: DeleteNetworkInterface
835
- :method: :delete_network_interface
836
- :inputs:
837
- NetworkInterfaceId:
838
- - :string
839
- - :required
840
- :outputs: {}
841
- - :name: DeletePlacementGroup
842
- :method: :delete_placement_group
843
- :inputs:
844
- GroupName:
845
- - :string
846
- - :required
847
- :outputs: {}
848
- - :name: DeleteRoute
849
- :method: :delete_route
850
- :inputs:
851
- RouteTableId:
852
- - :string
853
- - :required
854
- DestinationCidrBlock:
855
- - :string
856
- - :required
857
- :outputs: {}
858
- - :name: DeleteRouteTable
859
- :method: :delete_route_table
860
- :inputs:
861
- RouteTableId:
862
- - :string
863
- - :required
864
- :outputs: {}
865
- - :name: DeleteSecurityGroup
866
- :method: :delete_security_group
867
- :inputs:
868
- GroupName:
869
- - :string
870
- GroupId:
871
- - :string
872
- :outputs: {}
873
- - :name: DeleteSnapshot
874
- :method: :delete_snapshot
875
- :inputs:
876
- SnapshotId:
877
- - :string
878
- - :required
879
- :outputs: {}
880
- - :name: DeleteSpotDatafeedSubscription
881
- :method: :delete_spot_datafeed_subscription
882
- :inputs: {}
883
- :outputs: {}
884
- - :name: DeleteSubnet
885
- :method: :delete_subnet
886
- :inputs:
887
- SubnetId:
888
- - :string
889
- - :required
890
- :outputs: {}
891
- - :name: DeleteTags
892
- :method: :delete_tags
893
- :inputs:
894
- ResourceId:
895
- - :list:
896
- - :string
897
- - :required
898
- - :rename: resources
899
- Tag:
900
- - :list:
901
- - :structure:
902
- Key:
903
- - :string
904
- Value:
905
- - :string
906
- - :rename: tags
907
- :outputs: {}
908
- - :name: DeleteVolume
909
- :method: :delete_volume
910
- :inputs:
911
- VolumeId:
912
- - :string
913
- - :required
914
- :outputs: {}
915
- - :name: DeleteVpc
916
- :method: :delete_vpc
917
- :inputs:
918
- VpcId:
919
- - :string
920
- - :required
921
- :outputs: {}
922
- - :name: DeleteVpnConnection
923
- :method: :delete_vpn_connection
924
- :inputs:
925
- VpnConnectionId:
926
- - :string
927
- - :required
928
- :outputs: {}
929
- - :name: DeleteVpnGateway
930
- :method: :delete_vpn_gateway
931
- :inputs:
932
- VpnGatewayId:
933
- - :string
934
- - :required
935
- :outputs: {}
936
- - :name: DeregisterImage
937
- :method: :deregister_image
938
- :inputs:
939
- ImageId:
940
- - :string
941
- - :required
942
- :outputs: {}
943
- - :name: DescribeAddresses
944
- :method: :describe_addresses
945
- :inputs:
946
- PublicIp:
947
- - :list:
948
- - :string
949
- - :rename: PublicIps
950
- Filter:
951
- - :list:
952
- - :structure:
953
- Name:
954
- - :string
955
- Value:
956
- - :list:
957
- - :string
958
- - :rename: Values
959
- - :rename: filters
960
- AllocationId:
961
- - :list:
962
- - :string
963
- - :rename: allocationIds
964
- :outputs:
965
- :children:
966
- addressesSet:
967
- :ignore: true
968
- :children:
969
- item:
970
- :rename: :addresses_set
971
- :list: true
972
- :index:
973
- :key: :public_ip
974
- :name: :address_index
975
- - :name: DescribeAvailabilityZones
976
- :method: :describe_availability_zones
977
- :inputs:
978
- ZoneName:
979
- - :list:
980
- - :string
981
- - :rename: ZoneNames
982
- Filter:
983
- - :list:
984
- - :structure:
985
- Name:
986
- - :string
987
- Value:
988
- - :list:
989
- - :string
990
- - :rename: Values
991
- - :rename: filters
992
- :outputs:
993
- :children:
994
- availabilityZoneInfo:
995
- :ignore: true
996
- :children:
997
- item:
998
- :rename: :availability_zone_info
999
- :list: true
1000
- :children:
1001
- messageSet:
1002
- :ignore: true
1003
- :children:
1004
- item:
1005
- :rename: :message_set
1006
- :list: true
1007
- - :name: DescribeBundleTasks
1008
- :method: :describe_bundle_tasks
1009
- :inputs:
1010
- BundleId:
1011
- - :list:
1012
- - :string
1013
- - :rename: BundleIds
1014
- Filter:
1015
- - :list:
1016
- - :structure:
1017
- Name:
1018
- - :string
1019
- Value:
1020
- - :list:
1021
- - :string
1022
- - :rename: Values
1023
- - :rename: filters
1024
- :outputs:
1025
- :children:
1026
- bundleInstanceTasksSet:
1027
- :ignore: true
1028
- :children:
1029
- item:
1030
- :rename: :bundle_instance_tasks_set
1031
- :list: true
1032
- :children:
1033
- startTime:
1034
- :type: :time
1035
- updateTime:
1036
- :type: :time
1037
- - :name: DescribeConversionTasks
1038
- :method: :describe_conversion_tasks
1039
- :inputs:
1040
- Filter:
1041
- - :list:
1042
- - :structure:
1043
- Name:
1044
- - :string
1045
- Value:
1046
- - :list:
1047
- - :string
1048
- - :rename: Values
1049
- - :rename: filters
1050
- ConversionTaskId:
1051
- - :list:
1052
- - :string
1053
- - :rename: conversionTaskIds
1054
- :outputs:
1055
- :children:
1056
- conversionTasks:
1057
- :ignore: true
1058
- :children:
1059
- item:
1060
- :rename: :conversion_tasks
1061
- :list: true
1062
- :children:
1063
- importInstance:
1064
- :children:
1065
- volumes:
1066
- :ignore: true
1067
- :children:
1068
- item:
1069
- :rename: :volumes
1070
- :list: true
1071
- :children:
1072
- bytesConverted:
1073
- :type: :integer
1074
- image:
1075
- :children:
1076
- size:
1077
- :type: :integer
1078
- volume:
1079
- :children:
1080
- size:
1081
- :type: :integer
1082
- importVolume:
1083
- :children:
1084
- bytesConverted:
1085
- :type: :integer
1086
- image:
1087
- :children:
1088
- size:
1089
- :type: :integer
1090
- volume:
1091
- :children:
1092
- size:
1093
- :type: :integer
1094
- tagSet:
1095
- :ignore: true
1096
- :children:
1097
- item:
1098
- :rename: :tag_set
1099
- :list: true
1100
- - :name: DescribeCustomerGateways
1101
- :method: :describe_customer_gateways
1102
- :inputs:
1103
- CustomerGatewayId:
1104
- - :list:
1105
- - :string
1106
- - :rename: CustomerGatewayIds
1107
- Filter:
1108
- - :list:
1109
- - :structure:
1110
- Name:
1111
- - :string
1112
- Value:
1113
- - :list:
1114
- - :string
1115
- - :rename: Values
1116
- - :rename: Filters
1117
- :outputs:
1118
- :children:
1119
- customerGatewaySet:
1120
- :ignore: true
1121
- :children:
1122
- item:
1123
- :rename: :customer_gateway_set
1124
- :list: true
1125
- :children:
1126
- tagSet:
1127
- :ignore: true
1128
- :children:
1129
- item:
1130
- :rename: :tag_set
1131
- :list: true
1132
- type:
1133
- :rename: :vpn_type
1134
- - :name: DescribeDhcpOptions
1135
- :method: :describe_dhcp_options
1136
- :inputs:
1137
- DhcpOptionsId:
1138
- - :list:
1139
- - :string
1140
- - :rename: DhcpOptionsIds
1141
- Filter:
1142
- - :list:
1143
- - :structure:
1144
- Name:
1145
- - :string
1146
- Value:
1147
- - :list:
1148
- - :string
1149
- - :rename: Values
1150
- - :rename: filters
1151
- :outputs:
1152
- :children:
1153
- dhcpOptionsSet:
1154
- :ignore: true
1155
- :children:
1156
- item:
1157
- :rename: :dhcp_options_set
1158
- :list: true
1159
- :children:
1160
- dhcpConfigurationSet:
1161
- :ignore: true
1162
- :children:
1163
- item:
1164
- :rename: :dhcp_configuration_set
1165
- :list: true
1166
- :children:
1167
- valueSet:
1168
- :ignore: true
1169
- :children:
1170
- item:
1171
- :rename: :value_set
1172
- :list: true
1173
- tagSet:
1174
- :ignore: true
1175
- :children:
1176
- item:
1177
- :rename: :tag_set
1178
- :list: true
1179
- - :name: DescribeImageAttribute
1180
- :method: :describe_image_attribute
1181
- :inputs:
1182
- ImageId:
1183
- - :string
1184
- - :required
1185
- Attribute:
1186
- - :string
1187
- - :required
1188
- :outputs:
1189
- :children:
1190
- launchPermission:
1191
- :ignore: true
1192
- :children:
1193
- item:
1194
- :rename: :launch_permission
1195
- :list: true
1196
- productCodes:
1197
- :ignore: true
1198
- :children:
1199
- item:
1200
- :rename: :product_codes
1201
- :list: true
1202
- blockDeviceMapping:
1203
- :ignore: true
1204
- :children:
1205
- item:
1206
- :rename: :block_device_mapping
1207
- :list: true
1208
- :children:
1209
- ebs:
1210
- :children:
1211
- volumeSize:
1212
- :type: :integer
1213
- deleteOnTermination:
1214
- :type: :boolean
1215
- - :name: DescribeImages
1216
- :method: :describe_images
1217
- :inputs:
1218
- ImageId:
1219
- - :list:
1220
- - :string
1221
- - :rename: ImageIds
1222
- Owner:
1223
- - :list:
1224
- - :string
1225
- - :rename: Owners
1226
- ExecutableBy:
1227
- - :list:
1228
- - :string
1229
- - :rename: ExecutableUsers
1230
- Filter:
1231
- - :list:
1232
- - :structure:
1233
- Name:
1234
- - :string
1235
- Value:
1236
- - :list:
1237
- - :string
1238
- - :rename: Values
1239
- - :rename: filters
1240
- :outputs:
1241
- :children:
1242
- imagesSet:
1243
- :ignore: true
1244
- :children:
1245
- item:
1246
- :rename: :images_set
1247
- :list: true
1248
- :children:
1249
- isPublic:
1250
- :type: :boolean
1251
- productCodes:
1252
- :ignore: true
1253
- :children:
1254
- item:
1255
- :rename: :product_codes
1256
- :list: true
1257
- blockDeviceMapping:
1258
- :ignore: true
1259
- :children:
1260
- item:
1261
- :rename: :block_device_mapping
1262
- :list: true
1263
- :children:
1264
- ebs:
1265
- :children:
1266
- volumeSize:
1267
- :type: :integer
1268
- deleteOnTermination:
1269
- :type: :boolean
1270
- tagSet:
1271
- :ignore: true
1272
- :children:
1273
- item:
1274
- :rename: :tag_set
1275
- :list: true
1276
- :index:
1277
- :key: :image_id
1278
- :name: :image_index
1279
- - :name: DescribeInstanceAttribute
1280
- :method: :describe_instance_attribute
1281
- :inputs:
1282
- InstanceId:
1283
- - :string
1284
- - :required
1285
- Attribute:
1286
- - :string
1287
- - :required
1288
- :outputs:
1289
- :children:
1290
- disableApiTermination:
1291
- :children:
1292
- value:
1293
- :type: :boolean
1294
- blockDeviceMapping:
1295
- :ignore: true
1296
- :children:
1297
- item:
1298
- :rename: :block_device_mapping
1299
- :list: true
1300
- :children:
1301
- ebs:
1302
- :children:
1303
- attachTime:
1304
- :type: :time
1305
- deleteOnTermination:
1306
- :type: :boolean
1307
- - :name: DescribeInstanceStatus
1308
- :method: :describe_instance_status
1309
- :inputs:
1310
- InstanceId:
1311
- - :list:
1312
- - :string
1313
- - :rename: InstanceIds
1314
- Filter:
1315
- - :list:
1316
- - :structure:
1317
- Name:
1318
- - :string
1319
- Value:
1320
- - :list:
1321
- - :string
1322
- - :rename: Values
1323
- - :rename: filters
1324
- NextToken:
1325
- - :string
1326
- MaxResults:
1327
- - :integer
1328
- :outputs:
1329
- :children:
1330
- instanceStatusSet:
1331
- :ignore: true
1332
- :children:
1333
- item:
1334
- :rename: :instance_status_set
1335
- :list: true
1336
- :children:
1337
- eventsSet:
1338
- :ignore: true
1339
- :children:
1340
- item:
1341
- :rename: :events_set
1342
- :list: true
1343
- :children:
1344
- notBefore:
1345
- :type: :time
1346
- notAfter:
1347
- :type: :time
1348
- instanceState:
1349
- :children:
1350
- code:
1351
- :type: :integer
1352
- systemStatus:
1353
- :children:
1354
- details:
1355
- :ignore: true
1356
- :children:
1357
- item:
1358
- :rename: :details
1359
- :list: true
1360
- instanceStatus:
1361
- :children:
1362
- details:
1363
- :ignore: true
1364
- :children:
1365
- item:
1366
- :rename: :details
1367
- :list: true
1368
- - :name: DescribeInstances
1369
- :method: :describe_instances
1370
- :inputs:
1371
- InstanceId:
1372
- - :list:
1373
- - :string
1374
- - :rename: InstanceIds
1375
- Filter:
1376
- - :list:
1377
- - :structure:
1378
- Name:
1379
- - :string
1380
- Value:
1381
- - :list:
1382
- - :string
1383
- - :rename: Values
1384
- - :rename: filters
1385
- :outputs:
1386
- :children:
1387
- reservationSet:
1388
- :ignore: true
1389
- :children:
1390
- item:
1391
- :rename: :reservation_set
1392
- :list: true
1393
- :children:
1394
- groupSet:
1395
- :ignore: true
1396
- :children:
1397
- item:
1398
- :rename: :group_set
1399
- :list: true
1400
- instancesSet:
1401
- :ignore: true
1402
- :children:
1403
- item:
1404
- :rename: :instances_set
1405
- :list: true
1406
- :children:
1407
- instanceState:
1408
- :children:
1409
- code:
1410
- :type: :integer
1411
- amiLaunchIndex:
1412
- :type: :integer
1413
- productCodes:
1414
- :ignore: true
1415
- :children:
1416
- item:
1417
- :rename: :product_codes
1418
- :list: true
1419
- launchTime:
1420
- :type: :time
1421
- blockDeviceMapping:
1422
- :ignore: true
1423
- :children:
1424
- item:
1425
- :rename: :block_device_mapping
1426
- :list: true
1427
- :children:
1428
- ebs:
1429
- :children:
1430
- attachTime:
1431
- :type: :time
1432
- deleteOnTermination:
1433
- :type: :boolean
1434
- tagSet:
1435
- :ignore: true
1436
- :children:
1437
- item:
1438
- :rename: :tag_set
1439
- :list: true
1440
- groupSet:
1441
- :ignore: true
1442
- :children:
1443
- item:
1444
- :rename: :group_set
1445
- :list: true
1446
- sourceDestCheck:
1447
- :type: :boolean
1448
- networkInterfaceSet:
1449
- :ignore: true
1450
- :children:
1451
- item:
1452
- :rename: :network_interface_set
1453
- :list: true
1454
- :children:
1455
- sourceDestCheck:
1456
- :type: :boolean
1457
- groupSet:
1458
- :ignore: true
1459
- :children:
1460
- item:
1461
- :rename: :group_set
1462
- :list: true
1463
- attachment:
1464
- :children:
1465
- deviceIndex:
1466
- :type: :integer
1467
- attachTime:
1468
- :type: :time
1469
- deleteOnTermination:
1470
- :type: :boolean
1471
- :index:
1472
- :key: :instance_id
1473
- :name: :instance_index
1474
- :index:
1475
- :key_path:
1476
- - :instances_set
1477
- - :instance_id
1478
- :name: :reservation_index
1479
- - :name: DescribeInternetGateways
1480
- :method: :describe_internet_gateways
1481
- :inputs:
1482
- InternetGatewayId:
1483
- - :list:
1484
- - :string
1485
- - :rename: internetGatewayIds
1486
- Filter:
1487
- - :list:
1488
- - :structure:
1489
- Name:
1490
- - :string
1491
- Value:
1492
- - :list:
1493
- - :string
1494
- - :rename: Values
1495
- - :rename: filters
1496
- :outputs:
1497
- :children:
1498
- internetGatewaySet:
1499
- :ignore: true
1500
- :children:
1501
- item:
1502
- :rename: :internet_gateway_set
1503
- :list: true
1504
- :children:
1505
- attachmentSet:
1506
- :ignore: true
1507
- :children:
1508
- item:
1509
- :rename: :attachment_set
1510
- :list: true
1511
- tagSet:
1512
- :ignore: true
1513
- :children:
1514
- item:
1515
- :rename: :tag_set
1516
- :list: true
1517
- - :name: DescribeKeyPairs
1518
- :method: :describe_key_pairs
1519
- :inputs:
1520
- KeyName:
1521
- - :list:
1522
- - :string
1523
- - :rename: KeyNames
1524
- Filter:
1525
- - :list:
1526
- - :structure:
1527
- Name:
1528
- - :string
1529
- Value:
1530
- - :list:
1531
- - :string
1532
- - :rename: Values
1533
- - :rename: filters
1534
- :outputs:
1535
- :children:
1536
- keySet:
1537
- :ignore: true
1538
- :children:
1539
- item:
1540
- :rename: :key_set
1541
- :list: true
1542
- :index:
1543
- :key: :key_name
1544
- :name: :key_index
1545
- - :name: DescribeLicenses
1546
- :method: :describe_licenses
1547
- :inputs:
1548
- LicenseId:
1549
- - :list:
1550
- - :string
1551
- - :rename: licenseIds
1552
- Filter:
1553
- - :list:
1554
- - :structure:
1555
- Name:
1556
- - :string
1557
- Value:
1558
- - :list:
1559
- - :string
1560
- - :rename: Values
1561
- - :rename: filters
1562
- :outputs:
1563
- :children:
1564
- licenseSet:
1565
- :ignore: true
1566
- :children:
1567
- item:
1568
- :rename: :license_set
1569
- :list: true
1570
- :children:
1571
- capacitySet:
1572
- :ignore: true
1573
- :children:
1574
- item:
1575
- :rename: :capacity_set
1576
- :list: true
1577
- :children:
1578
- capacity:
1579
- :type: :integer
1580
- instanceCapacity:
1581
- :type: :integer
1582
- earliestAllowedDeactivationTime:
1583
- :type: :time
1584
- tagSet:
1585
- :ignore: true
1586
- :children:
1587
- item:
1588
- :rename: :tag_set
1589
- :list: true
1590
- - :name: DescribeNetworkAcls
1591
- :method: :describe_network_acls
1592
- :inputs:
1593
- NetworkAclId:
1594
- - :list:
1595
- - :string
1596
- - :rename: networkAclIds
1597
- Filter:
1598
- - :list:
1599
- - :structure:
1600
- Name:
1601
- - :string
1602
- Value:
1603
- - :list:
1604
- - :string
1605
- - :rename: Values
1606
- - :rename: filters
1607
- :outputs:
1608
- :children:
1609
- networkAclSet:
1610
- :ignore: true
1611
- :children:
1612
- item:
1613
- :rename: :network_acl_set
1614
- :list: true
1615
- :children:
1616
- default:
1617
- :type: :boolean
1618
- entrySet:
1619
- :ignore: true
1620
- :children:
1621
- item:
1622
- :rename: :entry_set
1623
- :list: true
1624
- :children:
1625
- ruleNumber:
1626
- :type: :integer
1627
- egress:
1628
- :type: :boolean
1629
- icmpTypeCode:
1630
- :children:
1631
- type:
1632
- :type: :integer
1633
- code:
1634
- :type: :integer
1635
- portRange:
1636
- :children:
1637
- from:
1638
- :type: :integer
1639
- to:
1640
- :type: :integer
1641
- associationSet:
1642
- :ignore: true
1643
- :children:
1644
- item:
1645
- :rename: :association_set
1646
- :list: true
1647
- tagSet:
1648
- :ignore: true
1649
- :children:
1650
- item:
1651
- :rename: :tag_set
1652
- :list: true
1653
- - :name: DescribeNetworkInterfaceAttribute
1654
- :method: :describe_network_interface_attribute
1655
- :inputs:
1656
- NetworkInterfaceId:
1657
- - :string
1658
- - :required
1659
- Description:
1660
- - :string
1661
- SourceDestCheck:
1662
- - :string
1663
- GroupSet:
1664
- - :string
1665
- - :rename: groups
1666
- Attachment:
1667
- - :string
1668
- :outputs:
1669
- :children:
1670
- sourceDestCheck:
1671
- :children:
1672
- value:
1673
- :type: :boolean
1674
- groupSet:
1675
- :ignore: true
1676
- :children:
1677
- item:
1678
- :rename: :group_set
1679
- :list: true
1680
- attachment:
1681
- :children:
1682
- deviceIndex:
1683
- :type: :integer
1684
- attachTime:
1685
- :type: :time
1686
- deleteOnTermination:
1687
- :type: :boolean
1688
- - :name: DescribeNetworkInterfaces
1689
- :method: :describe_network_interfaces
1690
- :inputs:
1691
- NetworkInterfaceId:
1692
- - :list:
1693
- - :string
1694
- - :rename: networkInterfaceIds
1695
- Filter:
1696
- - :list:
1697
- - :structure:
1698
- Name:
1699
- - :string
1700
- Value:
1701
- - :list:
1702
- - :string
1703
- - :rename: Values
1704
- - :rename: filters
1705
- :outputs:
1706
- :children:
1707
- networkInterfaceSet:
1708
- :ignore: true
1709
- :children:
1710
- item:
1711
- :rename: :network_interface_set
1712
- :list: true
1713
- :children:
1714
- requesterManaged:
1715
- :type: :boolean
1716
- sourceDestCheck:
1717
- :type: :boolean
1718
- groupSet:
1719
- :ignore: true
1720
- :children:
1721
- item:
1722
- :rename: :groups
1723
- :list: true
1724
- attachment:
1725
- :children:
1726
- deviceIndex:
1727
- :type: :integer
1728
- attachTime:
1729
- :type: :time
1730
- deleteOnTermination:
1731
- :type: :boolean
1732
- tagSet:
1733
- :ignore: true
1734
- :children:
1735
- item:
1736
- :rename: :tag_set
1737
- :list: true
1738
- :rename: :set
1739
- - :name: DescribePlacementGroups
1740
- :method: :describe_placement_groups
1741
- :inputs:
1742
- GroupName:
1743
- - :list:
1744
- - :string
1745
- - :rename: groupNames
1746
- Filter:
1747
- - :list:
1748
- - :structure:
1749
- Name:
1750
- - :string
1751
- Value:
1752
- - :list:
1753
- - :string
1754
- - :rename: Values
1755
- - :rename: filters
1756
- :outputs:
1757
- :children:
1758
- placementGroupSet:
1759
- :ignore: true
1760
- :children:
1761
- item:
1762
- :rename: :placement_group_set
1763
- :list: true
1764
- - :name: DescribeRegions
1765
- :method: :describe_regions
1766
- :inputs:
1767
- RegionName:
1768
- - :list:
1769
- - :string
1770
- - :rename: RegionNames
1771
- Filter:
1772
- - :list:
1773
- - :structure:
1774
- Name:
1775
- - :string
1776
- Value:
1777
- - :list:
1778
- - :string
1779
- - :rename: Values
1780
- - :rename: filters
1781
- :outputs:
1782
- :children:
1783
- regionInfo:
1784
- :ignore: true
1785
- :children:
1786
- item:
1787
- :rename: :region_info
1788
- :list: true
1789
- - :name: DescribeReservedInstances
1790
- :method: :describe_reserved_instances
1791
- :inputs:
1792
- ReservedInstancesId:
1793
- - :list:
1794
- - :string
1795
- - :rename: ReservedInstancesIds
1796
- Filter:
1797
- - :list:
1798
- - :structure:
1799
- Name:
1800
- - :string
1801
- Value:
1802
- - :list:
1803
- - :string
1804
- - :rename: Values
1805
- - :rename: filters
1806
- OfferingType:
1807
- - :string
1808
- :outputs:
1809
- :children:
1810
- reservedInstancesSet:
1811
- :ignore: true
1812
- :children:
1813
- item:
1814
- :rename: :reserved_instances_set
1815
- :list: true
1816
- :children:
1817
- start:
1818
- :type: :time
1819
- duration:
1820
- :type: :integer
1821
- usagePrice:
1822
- :type: :float
1823
- fixedPrice:
1824
- :type: :float
1825
- instanceCount:
1826
- :type: :integer
1827
- tagSet:
1828
- :ignore: true
1829
- :children:
1830
- item:
1831
- :rename: :tag_set
1832
- :list: true
1833
- recurringCharges:
1834
- :ignore: true
1835
- :children:
1836
- item:
1837
- :rename: :recurring_charges
1838
- :list: true
1839
- :children:
1840
- amount:
1841
- :type: :float
1842
- - :name: DescribeReservedInstancesOfferings
1843
- :method: :describe_reserved_instances_offerings
1844
- :inputs:
1845
- ReservedInstancesOfferingId:
1846
- - :list:
1847
- - :string
1848
- - :rename: ReservedInstancesOfferingIds
1849
- InstanceType:
1850
- - :string
1851
- AvailabilityZone:
1852
- - :string
1853
- ProductDescription:
1854
- - :string
1855
- Filter:
1856
- - :list:
1857
- - :structure:
1858
- Name:
1859
- - :string
1860
- Value:
1861
- - :list:
1862
- - :string
1863
- - :rename: Values
1864
- - :rename: filters
1865
- InstanceTenancy:
1866
- - :string
1867
- OfferingType:
1868
- - :string
1869
- :outputs:
1870
- :children:
1871
- reservedInstancesOfferingsSet:
1872
- :ignore: true
1873
- :children:
1874
- item:
1875
- :rename: :reserved_instances_offerings_set
1876
- :list: true
1877
- :children:
1878
- duration:
1879
- :type: :integer
1880
- usagePrice:
1881
- :type: :float
1882
- fixedPrice:
1883
- :type: :float
1884
- recurringCharges:
1885
- :ignore: true
1886
- :children:
1887
- item:
1888
- :rename: :recurring_charges
1889
- :list: true
1890
- :children:
1891
- amount:
1892
- :type: :float
1893
- - :name: DescribeRouteTables
1894
- :method: :describe_route_tables
1895
- :inputs:
1896
- RouteTableId:
1897
- - :list:
1898
- - :string
1899
- - :rename: routeTableIds
1900
- Filter:
1901
- - :list:
1902
- - :structure:
1903
- Name:
1904
- - :string
1905
- Value:
1906
- - :list:
1907
- - :string
1908
- - :rename: Values
1909
- - :rename: filters
1910
- :outputs:
1911
- :children:
1912
- routeTableSet:
1913
- :ignore: true
1914
- :children:
1915
- item:
1916
- :rename: :route_table_set
1917
- :list: true
1918
- :children:
1919
- routeSet:
1920
- :ignore: true
1921
- :children:
1922
- item:
1923
- :rename: :route_set
1924
- :list: true
1925
- associationSet:
1926
- :ignore: true
1927
- :children:
1928
- item:
1929
- :rename: :association_set
1930
- :list: true
1931
- :children:
1932
- main:
1933
- :type: :boolean
1934
- tagSet:
1935
- :ignore: true
1936
- :children:
1937
- item:
1938
- :rename: :tag_set
1939
- :list: true
1940
- - :name: DescribeSecurityGroups
1941
- :method: :describe_security_groups
1942
- :inputs:
1943
- GroupName:
1944
- - :list:
1945
- - :string
1946
- - :rename: GroupNames
1947
- GroupId:
1948
- - :list:
1949
- - :string
1950
- - :rename: GroupIds
1951
- Filter:
1952
- - :list:
1953
- - :structure:
1954
- Name:
1955
- - :string
1956
- Value:
1957
- - :list:
1958
- - :string
1959
- - :rename: Values
1960
- - :rename: filters
1961
- :outputs:
1962
- :children:
1963
- securityGroupInfo:
1964
- :ignore: true
1965
- :children:
1966
- item:
1967
- :rename: :security_group_info
1968
- :list: true
1969
- :children:
1970
- ipPermissions:
1971
- :ignore: true
1972
- :children:
1973
- item:
1974
- :rename: :ip_permissions
1975
- :list: true
1976
- :children:
1977
- fromPort:
1978
- :type: :integer
1979
- toPort:
1980
- :type: :integer
1981
- groups:
1982
- :ignore: true
1983
- :children:
1984
- item:
1985
- :rename: :groups
1986
- :list: true
1987
- ipRanges:
1988
- :ignore: true
1989
- :children:
1990
- item:
1991
- :rename: :ip_ranges
1992
- :list: true
1993
- ipProtocol:
1994
- :type: :symbol
1995
- ipPermissionsEgress:
1996
- :ignore: true
1997
- :children:
1998
- item:
1999
- :rename: :ip_permissions_egress
2000
- :list: true
2001
- :children:
2002
- fromPort:
2003
- :type: :integer
2004
- toPort:
2005
- :type: :integer
2006
- groups:
2007
- :ignore: true
2008
- :children:
2009
- item:
2010
- :rename: :groups
2011
- :list: true
2012
- ipRanges:
2013
- :ignore: true
2014
- :children:
2015
- item:
2016
- :rename: :ip_ranges
2017
- :list: true
2018
- tagSet:
2019
- :ignore: true
2020
- :children:
2021
- item:
2022
- :rename: :tag_set
2023
- :list: true
2024
- :index:
2025
- :key: :group_id
2026
- :name: :security_group_index
2027
- - :name: DescribeSnapshotAttribute
2028
- :method: :describe_snapshot_attribute
2029
- :inputs:
2030
- SnapshotId:
2031
- - :string
2032
- - :required
2033
- Attribute:
2034
- - :string
2035
- - :required
2036
- :outputs:
2037
- :children:
2038
- createVolumePermission:
2039
- :ignore: true
2040
- :children:
2041
- item:
2042
- :rename: :create_volume_permission
2043
- :list: true
2044
- - :name: DescribeSnapshots
2045
- :method: :describe_snapshots
2046
- :inputs:
2047
- SnapshotId:
2048
- - :list:
2049
- - :string
2050
- - :rename: SnapshotIds
2051
- Owner:
2052
- - :list:
2053
- - :string
2054
- - :rename: OwnerIds
2055
- RestorableBy:
2056
- - :list:
2057
- - :string
2058
- - :rename: RestorableByUserIds
2059
- Filter:
2060
- - :list:
2061
- - :structure:
2062
- Name:
2063
- - :string
2064
- Value:
2065
- - :list:
2066
- - :string
2067
- - :rename: Values
2068
- - :rename: filters
2069
- :outputs:
2070
- :children:
2071
- snapshotSet:
2072
- :ignore: true
2073
- :children:
2074
- item:
2075
- :rename: :snapshot_set
2076
- :list: true
2077
- :children:
2078
- startTime:
2079
- :type: :time
2080
- volumeSize:
2081
- :type: :integer
2082
- tagSet:
2083
- :ignore: true
2084
- :children:
2085
- item:
2086
- :rename: :tag_set
2087
- :list: true
2088
- :index:
2089
- :key: :snapshot_id
2090
- :name: :snapshot_index
2091
- - :name: DescribeSpotDatafeedSubscription
2092
- :method: :describe_spot_datafeed_subscription
2093
- :inputs: {}
2094
- :outputs: {}
2095
- - :name: DescribeSpotInstanceRequests
2096
- :method: :describe_spot_instance_requests
2097
- :inputs:
2098
- SpotInstanceRequestId:
2099
- - :list:
2100
- - :string
2101
- - :rename: spotInstanceRequestIds
2102
- Filter:
2103
- - :list:
2104
- - :structure:
2105
- Name:
2106
- - :string
2107
- Value:
2108
- - :list:
2109
- - :string
2110
- - :rename: Values
2111
- - :rename: filters
2112
- :outputs:
2113
- :children:
2114
- spotInstanceRequestSet:
2115
- :ignore: true
2116
- :children:
2117
- item:
2118
- :rename: :spot_instance_request_set
2119
- :list: true
2120
- :children:
2121
- validFrom:
2122
- :type: :time
2123
- validUntil:
2124
- :type: :time
2125
- launchSpecification:
2126
- :children:
2127
- groupSet:
2128
- :ignore: true
2129
- :children:
2130
- item:
2131
- :rename: :group_set
2132
- :list: true
2133
- blockDeviceMapping:
2134
- :ignore: true
2135
- :children:
2136
- item:
2137
- :rename: :block_device_mapping
2138
- :list: true
2139
- :children:
2140
- ebs:
2141
- :children:
2142
- volumeSize:
2143
- :type: :integer
2144
- deleteOnTermination:
2145
- :type: :boolean
2146
- monitoringEnabled:
2147
- :type: :boolean
2148
- networkInterfaceSet:
2149
- :ignore: true
2150
- :children:
2151
- item:
2152
- :rename: :network_interface_set
2153
- :list: true
2154
- :children:
2155
- deviceIndex:
2156
- :type: :integer
2157
- SecurityGroupId:
2158
- :ignore: true
2159
- :children:
2160
- SecurityGroupId:
2161
- :rename: :security_group_id
2162
- :list: true
2163
- deleteOnTermination:
2164
- :type: :boolean
2165
- createTime:
2166
- :type: :time
2167
- tagSet:
2168
- :ignore: true
2169
- :children:
2170
- item:
2171
- :rename: :tag_set
2172
- :list: true
2173
- - :name: DescribeSpotPriceHistory
2174
- :method: :describe_spot_price_history
2175
- :inputs:
2176
- StartTime:
2177
- - :timestamp
2178
- EndTime:
2179
- - :timestamp
2180
- InstanceType:
2181
- - :list:
2182
- - :string
2183
- - :rename: instanceTypes
2184
- ProductDescription:
2185
- - :list:
2186
- - :string
2187
- - :rename: productDescriptions
2188
- Filter:
2189
- - :list:
2190
- - :structure:
2191
- Name:
2192
- - :string
2193
- Value:
2194
- - :list:
2195
- - :string
2196
- - :rename: Values
2197
- - :rename: filters
2198
- AvailabilityZone:
2199
- - :string
2200
- MaxResults:
2201
- - :integer
2202
- NextToken:
2203
- - :string
2204
- :outputs:
2205
- :children:
2206
- spotPriceHistorySet:
2207
- :ignore: true
2208
- :children:
2209
- item:
2210
- :rename: :spot_price_history_set
2211
- :list: true
2212
- :children:
2213
- timestamp:
2214
- :type: :time
2215
- - :name: DescribeSubnets
2216
- :method: :describe_subnets
2217
- :inputs:
2218
- SubnetId:
2219
- - :list:
2220
- - :string
2221
- - :rename: SubnetIds
2222
- Filter:
2223
- - :list:
2224
- - :structure:
2225
- Name:
2226
- - :string
2227
- Value:
2228
- - :list:
2229
- - :string
2230
- - :rename: Values
2231
- - :rename: Filters
2232
- :outputs:
2233
- :children:
2234
- subnetSet:
2235
- :ignore: true
2236
- :children:
2237
- item:
2238
- :rename: :subnet_set
2239
- :list: true
2240
- :children:
2241
- availableIpAddressCount:
2242
- :type: :integer
2243
- tagSet:
2244
- :ignore: true
2245
- :children:
2246
- item:
2247
- :rename: :tag_set
2248
- :list: true
2249
- - :name: DescribeTags
2250
- :method: :describe_tags
2251
- :inputs:
2252
- Filter:
2253
- - :list:
2254
- - :structure:
2255
- Name:
2256
- - :string
2257
- Value:
2258
- - :list:
2259
- - :string
2260
- - :rename: Values
2261
- - :rename: filters
2262
- :outputs:
2263
- :children:
2264
- tagSet:
2265
- :ignore: true
2266
- :children:
2267
- item:
2268
- :rename: :tag_set
2269
- :list: true
2270
- :index:
2271
- :keys:
2272
- - :resource_type
2273
- - :resource_id
2274
- - :key
2275
- :name: :tag_index
2276
- - :name: DescribeVolumes
2277
- :method: :describe_volumes
2278
- :inputs:
2279
- VolumeId:
2280
- - :list:
2281
- - :string
2282
- - :rename: VolumeIds
2283
- Filter:
2284
- - :list:
2285
- - :structure:
2286
- Name:
2287
- - :string
2288
- Value:
2289
- - :list:
2290
- - :string
2291
- - :rename: Values
2292
- - :rename: filters
2293
- :outputs:
2294
- :children:
2295
- volumeSet:
2296
- :ignore: true
2297
- :children:
2298
- item:
2299
- :rename: :volume_set
2300
- :list: true
2301
- :children:
2302
- size:
2303
- :type: :integer
2304
- createTime:
2305
- :type: :time
2306
- attachmentSet:
2307
- :ignore: true
2308
- :children:
2309
- item:
2310
- :rename: :attachment_set
2311
- :list: true
2312
- :children:
2313
- attachTime:
2314
- :type: :time
2315
- deleteOnTermination:
2316
- :type: :boolean
2317
- tagSet:
2318
- :ignore: true
2319
- :children:
2320
- item:
2321
- :rename: :tag_set
2322
- :list: true
2323
- :index:
2324
- :key: :volume_id
2325
- :name: :volume_index
2326
- - :name: DescribeVpcs
2327
- :method: :describe_vpcs
2328
- :inputs:
2329
- VpcId:
2330
- - :list:
2331
- - :string
2332
- - :rename: VpcIds
2333
- Filter:
2334
- - :list:
2335
- - :structure:
2336
- Name:
2337
- - :string
2338
- Value:
2339
- - :list:
2340
- - :string
2341
- - :rename: Values
2342
- - :rename: Filters
2343
- :outputs:
2344
- :children:
2345
- vpcSet:
2346
- :ignore: true
2347
- :children:
2348
- item:
2349
- :rename: :vpc_set
2350
- :list: true
2351
- :children:
2352
- tagSet:
2353
- :ignore: true
2354
- :children:
2355
- item:
2356
- :rename: :tag_set
2357
- :list: true
2358
- - :name: DescribeVpnConnections
2359
- :method: :describe_vpn_connections
2360
- :inputs:
2361
- VpnConnectionId:
2362
- - :list:
2363
- - :string
2364
- - :rename: VpnConnectionIds
2365
- Filter:
2366
- - :list:
2367
- - :structure:
2368
- Name:
2369
- - :string
2370
- Value:
2371
- - :list:
2372
- - :string
2373
- - :rename: Values
2374
- - :rename: Filters
2375
- :outputs:
2376
- :children:
2377
- vpnConnectionSet:
2378
- :ignore: true
2379
- :children:
2380
- item:
2381
- :rename: :vpn_connection_set
2382
- :list: true
2383
- :children:
2384
- tagSet:
2385
- :ignore: true
2386
- :children:
2387
- item:
2388
- :rename: :tag_set
2389
- :list: true
2390
- vgwTelemetry:
2391
- :ignore: true
2392
- :children:
2393
- item:
2394
- :rename: :vgw_telemetry
2395
- :list: true
2396
- :children:
2397
- lastStatusChange:
2398
- :type: :time
2399
- acceptedRouteCount:
2400
- :type: :integer
2401
- type:
2402
- :rename: :vpn_type
2403
- - :name: DescribeVpnGateways
2404
- :method: :describe_vpn_gateways
2405
- :inputs:
2406
- VpnGatewayId:
2407
- - :list:
2408
- - :string
2409
- - :rename: VpnGatewayIds
2410
- Filter:
2411
- - :list:
2412
- - :structure:
2413
- Name:
2414
- - :string
2415
- Value:
2416
- - :list:
2417
- - :string
2418
- - :rename: Values
2419
- - :rename: Filters
2420
- :outputs:
2421
- :children:
2422
- vpnGatewaySet:
2423
- :ignore: true
2424
- :children:
2425
- item:
2426
- :rename: :vpn_gateway_set
2427
- :list: true
2428
- :children:
2429
- attachments:
2430
- :ignore: true
2431
- :children:
2432
- item:
2433
- :rename: :attachments
2434
- :list: true
2435
- tagSet:
2436
- :ignore: true
2437
- :children:
2438
- item:
2439
- :rename: :tag_set
2440
- :list: true
2441
- type:
2442
- :rename: :vpn_type
2443
- - :name: DetachInternetGateway
2444
- :method: :detach_internet_gateway
2445
- :inputs:
2446
- InternetGatewayId:
2447
- - :string
2448
- - :required
2449
- VpcId:
2450
- - :string
2451
- - :required
2452
- :outputs: {}
2453
- - :name: DetachNetworkInterface
2454
- :method: :detach_network_interface
2455
- :inputs:
2456
- AttachmentId:
2457
- - :string
2458
- - :required
2459
- Force:
2460
- - :boolean
2461
- :outputs: {}
2462
- - :name: DetachVolume
2463
- :method: :detach_volume
2464
- :inputs:
2465
- VolumeId:
2466
- - :string
2467
- - :required
2468
- InstanceId:
2469
- - :string
2470
- Device:
2471
- - :string
2472
- Force:
2473
- - :boolean
2474
- :outputs:
2475
- :children:
2476
- attachTime:
2477
- :type: :time
2478
- deleteOnTermination:
2479
- :type: :boolean
2480
- - :name: DetachVpnGateway
2481
- :method: :detach_vpn_gateway
2482
- :inputs:
2483
- VpnGatewayId:
2484
- - :string
2485
- - :required
2486
- VpcId:
2487
- - :string
2488
- - :required
2489
- :outputs: {}
2490
- - :name: DisassociateAddress
2491
- :method: :disassociate_address
2492
- :inputs:
2493
- PublicIp:
2494
- - :string
2495
- AssociationId:
2496
- - :string
2497
- :outputs: {}
2498
- - :name: DisassociateRouteTable
2499
- :method: :disassociate_route_table
2500
- :inputs:
2501
- AssociationId:
2502
- - :string
2503
- - :required
2504
- :outputs: {}
2505
- - :name: GetConsoleOutput
2506
- :method: :get_console_output
2507
- :inputs:
2508
- InstanceId:
2509
- - :string
2510
- - :required
2511
- :outputs:
2512
- :children:
2513
- timestamp:
2514
- :type: :time
2515
- - :name: GetPasswordData
2516
- :method: :get_password_data
2517
- :inputs:
2518
- InstanceId:
2519
- - :string
2520
- - :required
2521
- :outputs:
2522
- :children:
2523
- timestamp:
2524
- :type: :time
2525
- - :name: ImportInstance
2526
- :method: :import_instance
2527
- :inputs:
2528
- Description:
2529
- - :string
2530
- LaunchSpecification:
2531
- - :structure:
2532
- Architecture:
2533
- - :string
2534
- SecurityGroup:
2535
- - :list:
2536
- - :string
2537
- - :rename: securityGroups
2538
- AdditionalInfo:
2539
- - :string
2540
- UserData:
2541
- - :string
2542
- InstanceType:
2543
- - :string
2544
- Placement:
2545
- - :structure:
2546
- AvailabilityZone:
2547
- - :string
2548
- - :rename: AvailabilityZone
2549
- GroupName:
2550
- - :string
2551
- Tenancy:
2552
- - :string
2553
- BlockDeviceMapping:
2554
- - :list:
2555
- - :structure:
2556
- VirtualName:
2557
- - :string
2558
- - :rename: VirtualName
2559
- DeviceName:
2560
- - :string
2561
- - :rename: DeviceName
2562
- Ebs:
2563
- - :structure:
2564
- SnapshotId:
2565
- - :string
2566
- VolumeSize:
2567
- - :integer
2568
- DeleteOnTermination:
2569
- - :boolean
2570
- NoDevice:
2571
- - :string
2572
- - :rename: blockDeviceMappings
2573
- Monitoring:
2574
- - :boolean
2575
- SubnetId:
2576
- - :string
2577
- DisableApiTermination:
2578
- - :boolean
2579
- InstanceInitiatedShutdownBehavior:
2580
- - :string
2581
- PrivateIpAddress:
2582
- - :string
2583
- DiskImage:
2584
- - :list:
2585
- - :structure:
2586
- Image:
2587
- - :structure:
2588
- Format:
2589
- - :string
2590
- - :required
2591
- Bytes:
2592
- - :long
2593
- - :required
2594
- ImportManifestUrl:
2595
- - :string
2596
- - :required
2597
- Description:
2598
- - :string
2599
- Volume:
2600
- - :structure:
2601
- Size:
2602
- - :long
2603
- - :required
2604
- - :rename: diskImages
2605
- Platform:
2606
- - :string
2607
- - :required
2608
- :outputs:
2609
- :children:
2610
- conversionTask:
2611
- :children:
2612
- importInstance:
2613
- :children:
2614
- volumes:
2615
- :ignore: true
2616
- :children:
2617
- item:
2618
- :rename: :volumes
2619
- :list: true
2620
- :children:
2621
- bytesConverted:
2622
- :type: :integer
2623
- image:
2624
- :children:
2625
- size:
2626
- :type: :integer
2627
- volume:
2628
- :children:
2629
- size:
2630
- :type: :integer
2631
- importVolume:
2632
- :children:
2633
- bytesConverted:
2634
- :type: :integer
2635
- image:
2636
- :children:
2637
- size:
2638
- :type: :integer
2639
- volume:
2640
- :children:
2641
- size:
2642
- :type: :integer
2643
- tagSet:
2644
- :ignore: true
2645
- :children:
2646
- item:
2647
- :rename: :tag_set
2648
- :list: true
2649
- - :name: ImportKeyPair
2650
- :method: :import_key_pair
2651
- :inputs:
2652
- KeyName:
2653
- - :string
2654
- - :required
2655
- PublicKeyMaterial:
2656
- - :string
2657
- - :required
2658
- :outputs: {}
2659
- - :name: ImportVolume
2660
- :method: :import_volume
2661
- :inputs:
2662
- AvailabilityZone:
2663
- - :string
2664
- Image:
2665
- - :structure:
2666
- Format:
2667
- - :string
2668
- - :required
2669
- Bytes:
2670
- - :long
2671
- - :required
2672
- ImportManifestUrl:
2673
- - :string
2674
- - :required
2675
- Description:
2676
- - :string
2677
- Volume:
2678
- - :structure:
2679
- Size:
2680
- - :long
2681
- - :required
2682
- :outputs:
2683
- :children:
2684
- conversionTask:
2685
- :children:
2686
- importInstance:
2687
- :children:
2688
- volumes:
2689
- :ignore: true
2690
- :children:
2691
- item:
2692
- :rename: :volumes
2693
- :list: true
2694
- :children:
2695
- bytesConverted:
2696
- :type: :integer
2697
- image:
2698
- :children:
2699
- size:
2700
- :type: :integer
2701
- volume:
2702
- :children:
2703
- size:
2704
- :type: :integer
2705
- importVolume:
2706
- :children:
2707
- bytesConverted:
2708
- :type: :integer
2709
- image:
2710
- :children:
2711
- size:
2712
- :type: :integer
2713
- volume:
2714
- :children:
2715
- size:
2716
- :type: :integer
2717
- tagSet:
2718
- :ignore: true
2719
- :children:
2720
- item:
2721
- :rename: :tag_set
2722
- :list: true
2723
- - :name: ModifyImageAttribute
2724
- :method: :modify_image_attribute
2725
- :inputs:
2726
- ImageId:
2727
- - :string
2728
- - :required
2729
- Attribute:
2730
- - :string
2731
- OperationType:
2732
- - :string
2733
- UserId:
2734
- - :list:
2735
- - :string
2736
- - :rename: UserIds
2737
- UserGroup:
2738
- - :list:
2739
- - :string
2740
- - :rename: UserGroups
2741
- ProductCode:
2742
- - :list:
2743
- - :string
2744
- - :rename: ProductCodes
2745
- Value:
2746
- - :string
2747
- LaunchPermission:
2748
- - :structure:
2749
- Add:
2750
- - :list:
2751
- - :structure:
2752
- UserId:
2753
- - :string
2754
- - :rename: UserId
2755
- Group:
2756
- - :string
2757
- - :rename: Group
2758
- Remove:
2759
- - :list:
2760
- - :structure:
2761
- UserId:
2762
- - :string
2763
- - :rename: UserId
2764
- Group:
2765
- - :string
2766
- - :rename: Group
2767
- Description:
2768
- - :structure:
2769
- Value:
2770
- - :string
2771
- :outputs: {}
2772
- - :name: ModifyInstanceAttribute
2773
- :method: :modify_instance_attribute
2774
- :inputs:
2775
- InstanceId:
2776
- - :string
2777
- - :required
2778
- Attribute:
2779
- - :string
2780
- Value:
2781
- - :string
2782
- BlockDeviceMapping:
2783
- - :list:
2784
- - :structure:
2785
- DeviceName:
2786
- - :string
2787
- Ebs:
2788
- - :structure:
2789
- VolumeId:
2790
- - :string
2791
- DeleteOnTermination:
2792
- - :boolean
2793
- VirtualName:
2794
- - :string
2795
- NoDevice:
2796
- - :string
2797
- - :rename: blockDeviceMappings
2798
- SourceDestCheck:
2799
- - :structure:
2800
- Value:
2801
- - :boolean
2802
- DisableApiTermination:
2803
- - :structure:
2804
- Value:
2805
- - :boolean
2806
- InstanceType:
2807
- - :structure:
2808
- Value:
2809
- - :string
2810
- Kernel:
2811
- - :structure:
2812
- Value:
2813
- - :string
2814
- Ramdisk:
2815
- - :structure:
2816
- Value:
2817
- - :string
2818
- UserData:
2819
- - :structure:
2820
- Value:
2821
- - :string
2822
- InstanceInitiatedShutdownBehavior:
2823
- - :structure:
2824
- Value:
2825
- - :string
2826
- GroupId:
2827
- - :list:
2828
- - :string
2829
- - :rename: groups
2830
- :outputs: {}
2831
- - :name: ModifyNetworkInterfaceAttribute
2832
- :method: :modify_network_interface_attribute
2833
- :inputs:
2834
- NetworkInterfaceId:
2835
- - :string
2836
- - :required
2837
- Description:
2838
- - :structure:
2839
- Value:
2840
- - :string
2841
- SourceDestCheck:
2842
- - :structure:
2843
- Value:
2844
- - :boolean
2845
- SecurityGroupId:
2846
- - :list:
2847
- - :string
2848
- - :rename: groups
2849
- Attachment:
2850
- - :structure:
2851
- AttachmentId:
2852
- - :string
2853
- DeleteOnTermination:
2854
- - :boolean
2855
- :outputs: {}
2856
- - :name: ModifySnapshotAttribute
2857
- :method: :modify_snapshot_attribute
2858
- :inputs:
2859
- SnapshotId:
2860
- - :string
2861
- - :required
2862
- Attribute:
2863
- - :string
2864
- OperationType:
2865
- - :string
2866
- UserId:
2867
- - :list:
2868
- - :string
2869
- - :rename: UserIds
2870
- UserGroup:
2871
- - :list:
2872
- - :string
2873
- - :rename: GroupNames
2874
- CreateVolumePermission:
2875
- - :structure:
2876
- Add:
2877
- - :list:
2878
- - :structure:
2879
- UserId:
2880
- - :string
2881
- - :rename: UserId
2882
- Group:
2883
- - :string
2884
- - :rename: Group
2885
- Remove:
2886
- - :list:
2887
- - :structure:
2888
- UserId:
2889
- - :string
2890
- - :rename: UserId
2891
- Group:
2892
- - :string
2893
- - :rename: Group
2894
- :outputs: {}
2895
- - :name: MonitorInstances
2896
- :method: :monitor_instances
2897
- :inputs:
2898
- InstanceId:
2899
- - :list:
2900
- - :string
2901
- - :required
2902
- - :rename: InstanceIds
2903
- :outputs:
2904
- :children:
2905
- instancesSet:
2906
- :ignore: true
2907
- :children:
2908
- item:
2909
- :rename: :instances_set
2910
- :list: true
2911
- - :name: PurchaseReservedInstancesOffering
2912
- :method: :purchase_reserved_instances_offering
2913
- :inputs:
2914
- ReservedInstancesOfferingId:
2915
- - :string
2916
- - :required
2917
- InstanceCount:
2918
- - :integer
2919
- - :required
2920
- :outputs: {}
2921
- - :name: RebootInstances
2922
- :method: :reboot_instances
2923
- :inputs:
2924
- InstanceId:
2925
- - :list:
2926
- - :string
2927
- - :required
2928
- - :rename: InstanceIds
2929
- :outputs: {}
2930
- - :name: RegisterImage
2931
- :method: :register_image
2932
- :inputs:
2933
- ImageLocation:
2934
- - :string
2935
- Name:
2936
- - :string
2937
- Description:
2938
- - :string
2939
- Architecture:
2940
- - :string
2941
- KernelId:
2942
- - :string
2943
- RamdiskId:
2944
- - :string
2945
- RootDeviceName:
2946
- - :string
2947
- BlockDeviceMapping:
2948
- - :list:
2949
- - :structure:
2950
- VirtualName:
2951
- - :string
2952
- - :rename: VirtualName
2953
- DeviceName:
2954
- - :string
2955
- - :rename: DeviceName
2956
- Ebs:
2957
- - :structure:
2958
- SnapshotId:
2959
- - :string
2960
- VolumeSize:
2961
- - :integer
2962
- DeleteOnTermination:
2963
- - :boolean
2964
- NoDevice:
2965
- - :string
2966
- - :rename: blockDeviceMappings
2967
- :outputs: {}
2968
- - :name: ReleaseAddress
2969
- :method: :release_address
2970
- :inputs:
2971
- PublicIp:
2972
- - :string
2973
- AllocationId:
2974
- - :string
2975
- :outputs: {}
2976
- - :name: ReplaceNetworkAclAssociation
2977
- :method: :replace_network_acl_association
2978
- :inputs:
2979
- AssociationId:
2980
- - :string
2981
- - :required
2982
- NetworkAclId:
2983
- - :string
2984
- - :required
2985
- :outputs: {}
2986
- - :name: ReplaceNetworkAclEntry
2987
- :method: :replace_network_acl_entry
2988
- :inputs:
2989
- NetworkAclId:
2990
- - :string
2991
- - :required
2992
- RuleNumber:
2993
- - :integer
2994
- - :required
2995
- Protocol:
2996
- - :string
2997
- - :required
2998
- RuleAction:
2999
- - :string
3000
- - :required
3001
- Egress:
3002
- - :boolean
3003
- - :required
3004
- CidrBlock:
3005
- - :string
3006
- - :required
3007
- Icmp:
3008
- - :structure:
3009
- Type:
3010
- - :integer
3011
- Code:
3012
- - :integer
3013
- - :rename: icmpTypeCode
3014
- PortRange:
3015
- - :structure:
3016
- From:
3017
- - :integer
3018
- To:
3019
- - :integer
3020
- :outputs: {}
3021
- - :name: ReplaceRoute
3022
- :method: :replace_route
3023
- :inputs:
3024
- RouteTableId:
3025
- - :string
3026
- - :required
3027
- DestinationCidrBlock:
3028
- - :string
3029
- - :required
3030
- GatewayId:
3031
- - :string
3032
- InstanceId:
3033
- - :string
3034
- NetworkInterfaceId:
3035
- - :string
3036
- :outputs: {}
3037
- - :name: ReplaceRouteTableAssociation
3038
- :method: :replace_route_table_association
3039
- :inputs:
3040
- AssociationId:
3041
- - :string
3042
- - :required
3043
- RouteTableId:
3044
- - :string
3045
- - :required
3046
- :outputs: {}
3047
- - :name: ReportInstanceStatus
3048
- :method: :report_instance_status
3049
- :inputs:
3050
- InstanceId:
3051
- - :list:
3052
- - :string
3053
- - :rename: instances
3054
- Status:
3055
- - :string
3056
- StartTime:
3057
- - :timestamp
3058
- EndTime:
3059
- - :timestamp
3060
- ReasonCode:
3061
- - :list:
3062
- - :structure:
3063
- ReasonCode:
3064
- - :string
3065
- - :rename: reasonCodes
3066
- Description:
3067
- - :string
3068
- :outputs: {}
3069
- - :name: RequestSpotInstances
3070
- :method: :request_spot_instances
3071
- :inputs:
3072
- SpotPrice:
3073
- - :string
3074
- - :required
3075
- InstanceCount:
3076
- - :integer
3077
- Type:
3078
- - :string
3079
- ValidFrom:
3080
- - :timestamp
3081
- ValidUntil:
3082
- - :timestamp
3083
- LaunchGroup:
3084
- - :string
3085
- AvailabilityZoneGroup:
3086
- - :string
3087
- LaunchSpecification:
3088
- - :structure:
3089
- ImageId:
3090
- - :string
3091
- KeyName:
3092
- - :string
3093
- GroupSet:
3094
- - :list:
3095
- - :structure:
3096
- GroupName:
3097
- - :string
3098
- - :rename: GroupName
3099
- GroupId:
3100
- - :string
3101
- - :rename: SecurityGroups
3102
- UserData:
3103
- - :string
3104
- AddressingType:
3105
- - :string
3106
- InstanceType:
3107
- - :string
3108
- Placement:
3109
- - :structure:
3110
- AvailabilityZone:
3111
- - :string
3112
- GroupName:
3113
- - :string
3114
- KernelId:
3115
- - :string
3116
- RamdiskId:
3117
- - :string
3118
- BlockDeviceMapping:
3119
- - :list:
3120
- - :structure:
3121
- VirtualName:
3122
- - :string
3123
- - :rename: VirtualName
3124
- DeviceName:
3125
- - :string
3126
- - :rename: DeviceName
3127
- Ebs:
3128
- - :structure:
3129
- SnapshotId:
3130
- - :string
3131
- VolumeSize:
3132
- - :integer
3133
- DeleteOnTermination:
3134
- - :boolean
3135
- NoDevice:
3136
- - :string
3137
- - :rename: blockDeviceMappings
3138
- MonitoringEnabled:
3139
- - :boolean
3140
- SubnetId:
3141
- - :string
3142
- NetworkInterfaceSet:
3143
- - :list:
3144
- - :structure:
3145
- NetworkInterfaceId:
3146
- - :string
3147
- DeviceIndex:
3148
- - :integer
3149
- SubnetId:
3150
- - :string
3151
- Description:
3152
- - :string
3153
- PrivateIpAddress:
3154
- - :string
3155
- SecurityGroupId:
3156
- - :list:
3157
- - :string
3158
- - :rename: groups
3159
- DeleteOnTermination:
3160
- - :boolean
3161
- - :rename: networkInterfaces
3162
- :outputs:
3163
- :children:
3164
- spotInstanceRequestSet:
3165
- :ignore: true
3166
- :children:
3167
- item:
3168
- :rename: :spot_instance_request_set
3169
- :list: true
3170
- :children:
3171
- validFrom:
3172
- :type: :time
3173
- validUntil:
3174
- :type: :time
3175
- launchSpecification:
3176
- :children:
3177
- groupSet:
3178
- :ignore: true
3179
- :children:
3180
- item:
3181
- :rename: :group_set
3182
- :list: true
3183
- blockDeviceMapping:
3184
- :ignore: true
3185
- :children:
3186
- item:
3187
- :rename: :block_device_mapping
3188
- :list: true
3189
- :children:
3190
- ebs:
3191
- :children:
3192
- volumeSize:
3193
- :type: :integer
3194
- deleteOnTermination:
3195
- :type: :boolean
3196
- monitoringEnabled:
3197
- :type: :boolean
3198
- networkInterfaceSet:
3199
- :ignore: true
3200
- :children:
3201
- item:
3202
- :rename: :network_interface_set
3203
- :list: true
3204
- :children:
3205
- deviceIndex:
3206
- :type: :integer
3207
- SecurityGroupId:
3208
- :ignore: true
3209
- :children:
3210
- SecurityGroupId:
3211
- :rename: :security_group_id
3212
- :list: true
3213
- deleteOnTermination:
3214
- :type: :boolean
3215
- createTime:
3216
- :type: :time
3217
- tagSet:
3218
- :ignore: true
3219
- :children:
3220
- item:
3221
- :rename: :tag_set
3222
- :list: true
3223
- - :name: ResetImageAttribute
3224
- :method: :reset_image_attribute
3225
- :inputs:
3226
- ImageId:
3227
- - :string
3228
- - :required
3229
- Attribute:
3230
- - :string
3231
- - :required
3232
- :outputs: {}
3233
- - :name: ResetInstanceAttribute
3234
- :method: :reset_instance_attribute
3235
- :inputs:
3236
- InstanceId:
3237
- - :string
3238
- - :required
3239
- Attribute:
3240
- - :string
3241
- - :required
3242
- :outputs: {}
3243
- - :name: ResetNetworkInterfaceAttribute
3244
- :method: :reset_network_interface_attribute
3245
- :inputs:
3246
- NetworkInterfaceId:
3247
- - :string
3248
- - :required
3249
- SourceDestCheck:
3250
- - :string
3251
- :outputs: {}
3252
- - :name: ResetSnapshotAttribute
3253
- :method: :reset_snapshot_attribute
3254
- :inputs:
3255
- SnapshotId:
3256
- - :string
3257
- - :required
3258
- Attribute:
3259
- - :string
3260
- - :required
3261
- :outputs: {}
3262
- - :name: RevokeSecurityGroupEgress
3263
- :method: :revoke_security_group_egress
3264
- :inputs:
3265
- GroupId:
3266
- - :string
3267
- - :required
3268
- SourceSecurityGroupName:
3269
- - :string
3270
- SourceSecurityGroupOwnerId:
3271
- - :string
3272
- IpProtocol:
3273
- - :string
3274
- FromPort:
3275
- - :integer
3276
- ToPort:
3277
- - :integer
3278
- CidrIp:
3279
- - :string
3280
- IpPermissions:
3281
- - :list:
3282
- - :structure:
3283
- IpProtocol:
3284
- - :string
3285
- - :rename: IpProtocol
3286
- FromPort:
3287
- - :integer
3288
- - :rename: FromPort
3289
- ToPort:
3290
- - :integer
3291
- - :rename: ToPort
3292
- Groups:
3293
- - :list:
3294
- - :structure:
3295
- UserId:
3296
- - :string
3297
- - :rename: UserId
3298
- GroupName:
3299
- - :string
3300
- - :rename: GroupName
3301
- GroupId:
3302
- - :string
3303
- - :rename: GroupId
3304
- - :rename: UserIdGroupPairs
3305
- IpRanges:
3306
- - :list:
3307
- - :structure:
3308
- CidrIp:
3309
- - :string
3310
- - :rename: CidrIp
3311
- - :rename: IpRanges
3312
- :outputs: {}
3313
- - :name: RevokeSecurityGroupIngress
3314
- :method: :revoke_security_group_ingress
3315
- :inputs:
3316
- GroupName:
3317
- - :string
3318
- GroupId:
3319
- - :string
3320
- SourceSecurityGroupName:
3321
- - :string
3322
- SourceSecurityGroupOwnerId:
3323
- - :string
3324
- IpProtocol:
3325
- - :string
3326
- FromPort:
3327
- - :integer
3328
- ToPort:
3329
- - :integer
3330
- CidrIp:
3331
- - :string
3332
- IpPermissions:
3333
- - :list:
3334
- - :structure:
3335
- IpProtocol:
3336
- - :string
3337
- - :rename: IpProtocol
3338
- FromPort:
3339
- - :integer
3340
- - :rename: FromPort
3341
- ToPort:
3342
- - :integer
3343
- - :rename: ToPort
3344
- Groups:
3345
- - :list:
3346
- - :structure:
3347
- UserId:
3348
- - :string
3349
- - :rename: UserId
3350
- GroupName:
3351
- - :string
3352
- - :rename: GroupName
3353
- GroupId:
3354
- - :string
3355
- - :rename: GroupId
3356
- - :rename: UserIdGroupPairs
3357
- IpRanges:
3358
- - :list:
3359
- - :structure:
3360
- CidrIp:
3361
- - :string
3362
- - :rename: CidrIp
3363
- - :rename: IpRanges
3364
- :outputs: {}
3365
- - :name: RunInstances
3366
- :method: :run_instances
3367
- :inputs:
3368
- ImageId:
3369
- - :string
3370
- - :required
3371
- MinCount:
3372
- - :integer
3373
- - :required
3374
- MaxCount:
3375
- - :integer
3376
- - :required
3377
- KeyName:
3378
- - :string
3379
- SecurityGroup:
3380
- - :list:
3381
- - :string
3382
- - :rename: SecurityGroups
3383
- SecurityGroupId:
3384
- - :list:
3385
- - :string
3386
- - :rename: SecurityGroupIds
3387
- UserData:
3388
- - :string
3389
- AddressingType:
3390
- - :string
3391
- InstanceType:
3392
- - :string
3393
- Placement:
3394
- - :structure:
3395
- AvailabilityZone:
3396
- - :string
3397
- - :rename: AvailabilityZone
3398
- GroupName:
3399
- - :string
3400
- Tenancy:
3401
- - :string
3402
- KernelId:
3403
- - :string
3404
- RamdiskId:
3405
- - :string
3406
- BlockDeviceMapping:
3407
- - :list:
3408
- - :structure:
3409
- VirtualName:
3410
- - :string
3411
- - :rename: VirtualName
3412
- DeviceName:
3413
- - :string
3414
- - :rename: DeviceName
3415
- Ebs:
3416
- - :structure:
3417
- SnapshotId:
3418
- - :string
3419
- VolumeSize:
3420
- - :integer
3421
- DeleteOnTermination:
3422
- - :boolean
3423
- NoDevice:
3424
- - :string
3425
- - :rename: BlockDeviceMappings
3426
- Monitoring:
3427
- - :structure:
3428
- Enabled:
3429
- - :boolean
3430
- - :required
3431
- SubnetId:
3432
- - :string
3433
- DisableApiTermination:
3434
- - :boolean
3435
- InstanceInitiatedShutdownBehavior:
3436
- - :string
3437
- License:
3438
- - :structure:
3439
- Pool:
3440
- - :string
3441
- PrivateIpAddress:
3442
- - :string
3443
- ClientToken:
3444
- - :string
3445
- AdditionalInfo:
3446
- - :string
3447
- NetworkInterface:
3448
- - :list:
3449
- - :structure:
3450
- NetworkInterfaceId:
3451
- - :string
3452
- DeviceIndex:
3453
- - :integer
3454
- SubnetId:
3455
- - :string
3456
- Description:
3457
- - :string
3458
- PrivateIpAddress:
3459
- - :string
3460
- SecurityGroupId:
3461
- - :list:
3462
- - :string
3463
- - :rename: groups
3464
- DeleteOnTermination:
3465
- - :boolean
3466
- - :rename: networkInterfaces
3467
- :outputs:
3468
- :children:
3469
- groupSet:
3470
- :ignore: true
3471
- :children:
3472
- item:
3473
- :rename: :group_set
3474
- :list: true
3475
- instancesSet:
3476
- :ignore: true
3477
- :children:
3478
- item:
3479
- :rename: :instances_set
3480
- :list: true
3481
- :children:
3482
- instanceState:
3483
- :children:
3484
- code:
3485
- :type: :integer
3486
- amiLaunchIndex:
3487
- :type: :integer
3488
- productCodes:
3489
- :ignore: true
3490
- :children:
3491
- item:
3492
- :rename: :product_codes
3493
- :list: true
3494
- launchTime:
3495
- :type: :time
3496
- blockDeviceMapping:
3497
- :ignore: true
3498
- :children:
3499
- item:
3500
- :rename: :block_device_mapping
3501
- :list: true
3502
- :children:
3503
- ebs:
3504
- :children:
3505
- attachTime:
3506
- :type: :time
3507
- deleteOnTermination:
3508
- :type: :boolean
3509
- tagSet:
3510
- :ignore: true
3511
- :children:
3512
- item:
3513
- :rename: :tag_set
3514
- :list: true
3515
- groupSet:
3516
- :ignore: true
3517
- :children:
3518
- item:
3519
- :rename: :group_set
3520
- :list: true
3521
- sourceDestCheck:
3522
- :type: :boolean
3523
- networkInterfaceSet:
3524
- :ignore: true
3525
- :children:
3526
- item:
3527
- :rename: :network_interface_set
3528
- :list: true
3529
- :children:
3530
- sourceDestCheck:
3531
- :type: :boolean
3532
- groupSet:
3533
- :ignore: true
3534
- :children:
3535
- item:
3536
- :rename: :group_set
3537
- :list: true
3538
- attachment:
3539
- :children:
3540
- deviceIndex:
3541
- :type: :integer
3542
- attachTime:
3543
- :type: :time
3544
- deleteOnTermination:
3545
- :type: :boolean
3546
- - :name: StartInstances
3547
- :method: :start_instances
3548
- :inputs:
3549
- InstanceId:
3550
- - :list:
3551
- - :string
3552
- - :required
3553
- - :rename: InstanceIds
3554
- :outputs:
3555
- :children:
3556
- instancesSet:
3557
- :ignore: true
3558
- :children:
3559
- item:
3560
- :rename: :instances_set
3561
- :list: true
3562
- :children:
3563
- currentState:
3564
- :children:
3565
- code:
3566
- :type: :integer
3567
- previousState:
3568
- :children:
3569
- code:
3570
- :type: :integer
3571
- - :name: StopInstances
3572
- :method: :stop_instances
3573
- :inputs:
3574
- InstanceId:
3575
- - :list:
3576
- - :string
3577
- - :required
3578
- - :rename: InstanceIds
3579
- Force:
3580
- - :boolean
3581
- :outputs:
3582
- :children:
3583
- instancesSet:
3584
- :ignore: true
3585
- :children:
3586
- item:
3587
- :rename: :instances_set
3588
- :list: true
3589
- :children:
3590
- currentState:
3591
- :children:
3592
- code:
3593
- :type: :integer
3594
- previousState:
3595
- :children:
3596
- code:
3597
- :type: :integer
3598
- - :name: TerminateInstances
3599
- :method: :terminate_instances
3600
- :inputs:
3601
- InstanceId:
3602
- - :list:
3603
- - :string
3604
- - :required
3605
- - :rename: InstanceIds
3606
- :outputs:
3607
- :children:
3608
- instancesSet:
3609
- :ignore: true
3610
- :children:
3611
- item:
3612
- :rename: :instances_set
3613
- :list: true
3614
- :children:
3615
- currentState:
3616
- :children:
3617
- code:
3618
- :type: :integer
3619
- previousState:
3620
- :children:
3621
- code:
3622
- :type: :integer
3623
- - :name: UnmonitorInstances
3624
- :method: :unmonitor_instances
3625
- :inputs:
3626
- InstanceId:
3627
- - :list:
3628
- - :string
3629
- - :required
3630
- - :rename: InstanceIds
3631
- :outputs:
3632
- :children:
3633
- instancesSet:
3634
- :ignore: true
3635
- :children:
3636
- item:
3637
- :rename: :instances_set
3638
- :list: true