aws-sdk 1.6.6 → 1.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,6 +17,8 @@ module AWS
17
17
  # Client class for Cloud Watch
18
18
  class Client < Core::QueryClient
19
19
 
20
+ define_client_methods('2010-08-01')
21
+
20
22
  # @private
21
23
  CACHEABLE_REQUESTS = Set[
22
24
  :describe_alarm_history,
@@ -27,14 +29,14 @@ module AWS
27
29
 
28
30
  ## client methods ##
29
31
 
32
+ # @!method delete_alarms(options = {})
30
33
  # Calls the DeleteAlarms API operation.
31
- # @method delete_alarms(options = {})
32
34
  # @param [Hash] options
33
35
  # * +:alarm_names+ - *required* - (Array<String>)
34
36
  # @return [Core::Response]
35
37
 
38
+ # @!method describe_alarm_history(options = {})
36
39
  # Calls the DescribeAlarmHistory API operation.
37
- # @method describe_alarm_history(options = {})
38
40
  # @param [Hash] options
39
41
  # * +:alarm_name+ - (String)
40
42
  # * +:history_item_type+ - (String)
@@ -53,8 +55,8 @@ module AWS
53
55
  # * +:history_data+ - (String)
54
56
  # * +:next_token+ - (String)
55
57
 
58
+ # @!method describe_alarms(options = {})
56
59
  # Calls the DescribeAlarms API operation.
57
- # @method describe_alarms(options = {})
58
60
  # @param [Hash] options
59
61
  # * +:alarm_names+ - (Array<String>)
60
62
  # * +:alarm_name_prefix+ - (String)
@@ -91,8 +93,8 @@ module AWS
91
93
  # * +:comparison_operator+ - (String)
92
94
  # * +:next_token+ - (String)
93
95
 
96
+ # @!method describe_alarms_for_metric(options = {})
94
97
  # Calls the DescribeAlarmsForMetric API operation.
95
- # @method describe_alarms_for_metric(options = {})
96
98
  # @param [Hash] options
97
99
  # * +:metric_name+ - *required* - (String)
98
100
  # * +:namespace+ - *required* - (String)
@@ -130,20 +132,20 @@ module AWS
130
132
  # * +:threshold+ - (Numeric)
131
133
  # * +:comparison_operator+ - (String)
132
134
 
135
+ # @!method disable_alarm_actions(options = {})
133
136
  # Calls the DisableAlarmActions API operation.
134
- # @method disable_alarm_actions(options = {})
135
137
  # @param [Hash] options
136
138
  # * +:alarm_names+ - *required* - (Array<String>)
137
139
  # @return [Core::Response]
138
140
 
141
+ # @!method enable_alarm_actions(options = {})
139
142
  # Calls the EnableAlarmActions API operation.
140
- # @method enable_alarm_actions(options = {})
141
143
  # @param [Hash] options
142
144
  # * +:alarm_names+ - *required* - (Array<String>)
143
145
  # @return [Core::Response]
144
146
 
147
+ # @!method get_metric_statistics(options = {})
145
148
  # Calls the GetMetricStatistics API operation.
146
- # @method get_metric_statistics(options = {})
147
149
  # @param [Hash] options
148
150
  # * +:namespace+ - *required* - (String)
149
151
  # * +:metric_name+ - *required* - (String)
@@ -168,8 +170,8 @@ module AWS
168
170
  # * +:maximum+ - (Numeric)
169
171
  # * +:unit+ - (String)
170
172
 
173
+ # @!method list_metrics(options = {})
171
174
  # Calls the ListMetrics API operation.
172
- # @method list_metrics(options = {})
173
175
  # @param [Hash] options
174
176
  # * +:namespace+ - (String)
175
177
  # * +:metric_name+ - (String)
@@ -188,8 +190,8 @@ module AWS
188
190
  # * +:value+ - (String)
189
191
  # * +:next_token+ - (String)
190
192
 
193
+ # @!method put_metric_alarm(options = {})
191
194
  # Calls the PutMetricAlarm API operation.
192
- # @method put_metric_alarm(options = {})
193
195
  # @param [Hash] options
194
196
  # * +:alarm_name+ - *required* - (String)
195
197
  # * +:alarm_description+ - (String)
@@ -210,8 +212,8 @@ module AWS
210
212
  # * +:comparison_operator+ - *required* - (String)
211
213
  # @return [Core::Response]
212
214
 
215
+ # @!method put_metric_data(options = {})
213
216
  # Calls the PutMetricData API operation.
214
- # @method put_metric_data(options = {})
215
217
  # @param [Hash] options
216
218
  # * +:namespace+ - *required* - (String)
217
219
  # * +:metric_data+ - *required* - (Array<Hash>)
@@ -229,8 +231,8 @@ module AWS
229
231
  # * +:unit+ - (String)
230
232
  # @return [Core::Response]
231
233
 
234
+ # @!method set_alarm_state(options = {})
232
235
  # Calls the SetAlarmState API operation.
233
- # @method set_alarm_state(options = {})
234
236
  # @param [Hash] options
235
237
  # * +:alarm_name+ - *required* - (String)
236
238
  # * +:state_value+ - *required* - (String)
@@ -240,8 +242,6 @@ module AWS
240
242
 
241
243
  ## end client methods ##
242
244
 
243
- define_client_methods('2010-08-01')
244
-
245
245
  end
246
246
  end
247
247
  end
@@ -69,7 +69,7 @@ require 'aws/core/autoloader'
69
69
  module AWS
70
70
 
71
71
  # Current version of the AWS SDK for Ruby
72
- VERSION = "1.6.6"
72
+ VERSION = "1.6.7"
73
73
 
74
74
  register_autoloads(self) do
75
75
  autoload :Errors, 'errors'
@@ -160,7 +160,7 @@ module AWS
160
160
  def body= body
161
161
  @body = body
162
162
  if body
163
- headers['content-length'] = body.size if body
163
+ headers['content-length'] = body.bytesize if body
164
164
  else
165
165
  headers.delete('content-length')
166
166
  end
@@ -112,11 +112,11 @@ module AWS
112
112
  end
113
113
 
114
114
  def encode_value(value)
115
- Base64.encode64(value.to_s)
115
+ Base64.strict_encode64(value.to_s)
116
116
  end
117
117
 
118
118
  def hash_format(value)
119
- Base64.encode64(value.to_s).strip
119
+ Base64.strict_encode64(value.to_s)
120
120
  end
121
121
 
122
122
  end
@@ -104,7 +104,7 @@ module AWS
104
104
 
105
105
  def canonical_header_values values
106
106
  values = [values] unless values.is_a?(Array)
107
- values.map(&:to_s).map(&:strip).join(',')
107
+ values.map(&:to_s).join(',').gsub(/\s+/, ' ').strip
108
108
  end
109
109
 
110
110
  def hex16 string
@@ -17,6 +17,8 @@ module AWS
17
17
  # Client class for Amazon DynamoDB.
18
18
  class Client < Core::JSONClient
19
19
 
20
+ define_client_methods('2011-12-05')
21
+
20
22
  # @private
21
23
  REGION_US_E1 = 'dynamodb.us-east-1.amazonaws.com'
22
24
 
@@ -25,8 +27,8 @@ module AWS
25
27
 
26
28
  ## client methods ##
27
29
 
30
+ # @!method batch_get_item(options = {})
28
31
  # Calls the BatchGetItem API operation.
29
- # @method batch_get_item(options = {})
30
32
  # @param [Hash] options
31
33
  # * +:request_items+ - *required* - (Hash<String,Hash>)
32
34
  # * +:keys+ - *required* - (Array<Hash>)
@@ -94,8 +96,8 @@ module AWS
94
96
  # * +BS+ - (Array<Blob>)
95
97
  # * +AttributesToGet+ - (Array<String>)
96
98
 
99
+ # @!method batch_write_item(options = {})
97
100
  # Calls the BatchWriteItem API operation.
98
- # @method batch_write_item(options = {})
99
101
  # @param [Hash] options
100
102
  # * +:request_items+ - *required* - (Hash<String,Array<Hash>>) A map of
101
103
  # table name to list-of-write-requests. Used as input to the
@@ -181,8 +183,8 @@ module AWS
181
183
  # * +NS+ - (Array<String>)
182
184
  # * +BS+ - (Array<Blob>)
183
185
 
186
+ # @!method create_table(options = {})
184
187
  # Calls the CreateTable API operation.
185
- # @method create_table(options = {})
186
188
  # @param [Hash] options
187
189
  # * +:table_name+ - *required* - (String) The name of the table you
188
190
  # want to create. Allowed characters are a-z, A-Z, 0-9, _
@@ -237,8 +239,8 @@ module AWS
237
239
  # * +TableSizeBytes+ - (Integer)
238
240
  # * +ItemCount+ - (Integer)
239
241
 
242
+ # @!method delete_item(options = {})
240
243
  # Calls the DeleteItem API operation.
241
- # @method delete_item(options = {})
242
244
  # @param [Hash] options
243
245
  # * +:table_name+ - *required* - (String) The name of the table in
244
246
  # which you want to delete an item. Allowed characters are a-z, A-Z,
@@ -307,8 +309,8 @@ module AWS
307
309
  # * +BS+ - (Array<Blob>)
308
310
  # * +ConsumedCapacityUnits+ - (Numeric)
309
311
 
312
+ # @!method delete_table(options = {})
310
313
  # Calls the DeleteTable API operation.
311
- # @method delete_table(options = {})
312
314
  # @param [Hash] options
313
315
  # * +:table_name+ - *required* - (String) The name of the table you
314
316
  # want to delete. Allowed characters are a-z, A-Z, 0-9, _
@@ -335,8 +337,8 @@ module AWS
335
337
  # * +TableSizeBytes+ - (Integer)
336
338
  # * +ItemCount+ - (Integer)
337
339
 
340
+ # @!method describe_table(options = {})
338
341
  # Calls the DescribeTable API operation.
339
- # @method describe_table(options = {})
340
342
  # @param [Hash] options
341
343
  # * +:table_name+ - *required* - (String) The name of the table you
342
344
  # want to describe. Allowed characters are a-z, A-Z, 0-9, _
@@ -363,8 +365,8 @@ module AWS
363
365
  # * +TableSizeBytes+ - (Integer)
364
366
  # * +ItemCount+ - (Integer)
365
367
 
368
+ # @!method get_item(options = {})
366
369
  # Calls the GetItem API operation.
367
- # @method get_item(options = {})
368
370
  # @param [Hash] options
369
371
  # * +:table_name+ - *required* - (String) The name of the table in
370
372
  # which you want to get an item. Allowed characters are a-z, A-Z,
@@ -417,8 +419,8 @@ module AWS
417
419
  # * +BS+ - (Array<Blob>)
418
420
  # * +ConsumedCapacityUnits+ - (Numeric)
419
421
 
422
+ # @!method list_tables(options = {})
420
423
  # Calls the ListTables API operation.
421
- # @method list_tables(options = {})
422
424
  # @param [Hash] options
423
425
  # * +:exclusive_start_table_name+ - (String) The name of the table that
424
426
  # starts the list. If you already ran a ListTables operation and
@@ -431,8 +433,8 @@ module AWS
431
433
  # * +TableNames+ - (Array<String>)
432
434
  # * +LastEvaluatedTableName+ - (String)
433
435
 
436
+ # @!method put_item(options = {})
434
437
  # Calls the PutItem API operation.
435
- # @method put_item(options = {})
436
438
  # @param [Hash] options
437
439
  # * +:table_name+ - *required* - (String) The name of the table in
438
440
  # which you want to put an item. Allowed characters are a-z, A-Z,
@@ -480,8 +482,8 @@ module AWS
480
482
  # * +BS+ - (Array<Blob>)
481
483
  # * +ConsumedCapacityUnits+ - (Numeric)
482
484
 
485
+ # @!method query(options = {})
483
486
  # Calls the Query API operation.
484
- # @method query(options = {})
485
487
  # @param [Hash] options
486
488
  # * +:table_name+ - *required* - (String) The name of the table in
487
489
  # which you want to query. Allowed characters are a-z, A-Z, 0-9, _
@@ -603,8 +605,8 @@ module AWS
603
605
  # * +BS+ - (Array<Blob>)
604
606
  # * +ConsumedCapacityUnits+ - (Numeric)
605
607
 
608
+ # @!method scan(options = {})
606
609
  # Calls the Scan API operation.
607
- # @method scan(options = {})
608
610
  # @param [Hash] options
609
611
  # * +:table_name+ - *required* - (String) The name of the table in
610
612
  # which you want to scan. Allowed characters are a-z, A-Z, 0-9, _
@@ -707,8 +709,8 @@ module AWS
707
709
  # * +BS+ - (Array<Blob>)
708
710
  # * +ConsumedCapacityUnits+ - (Numeric)
709
711
 
712
+ # @!method update_item(options = {})
710
713
  # Calls the UpdateItem API operation.
711
- # @method update_item(options = {})
712
714
  # @param [Hash] options
713
715
  # * +:table_name+ - *required* - (String) The name of the table in
714
716
  # which you want to update an item. Allowed characters are a-z, A-Z,
@@ -792,8 +794,8 @@ module AWS
792
794
  # * +BS+ - (Array<Blob>)
793
795
  # * +ConsumedCapacityUnits+ - (Numeric)
794
796
 
797
+ # @!method update_table(options = {})
795
798
  # Calls the UpdateTable API operation.
796
- # @method update_table(options = {})
797
799
  # @param [Hash] options
798
800
  # * +:table_name+ - *required* - (String) The name of the table you
799
801
  # want to update. Allowed characters are a-z, A-Z, 0-9, _
@@ -871,8 +873,6 @@ module AWS
871
873
 
872
874
  end
873
875
 
874
- define_client_methods('2011-12-05')
875
-
876
876
  end
877
877
  end
878
878
  end
@@ -60,8 +60,8 @@ module AWS
60
60
 
61
61
  ## client methods ##
62
62
 
63
+ # @!method activate_license(options = {})
63
64
  # Calls the ActivateLicense API operation.
64
- # @method activate_license(options = {})
65
65
  # @param [Hash] options
66
66
  # * +:license_id+ - *required* - (String) Specifies the ID for the
67
67
  # specific license to activate against.
@@ -69,8 +69,8 @@ module AWS
69
69
  # number of licenses to activate.
70
70
  # @return [Core::Response]
71
71
 
72
+ # @!method allocate_address(options = {})
72
73
  # Calls the AllocateAddress API operation.
73
- # @method allocate_address(options = {})
74
74
  # @param [Hash] options
75
75
  # * +:domain+ - (String) Set to vpc to allocate the address to your
76
76
  # VPC. By default, will allocate to EC2.
@@ -81,8 +81,8 @@ module AWS
81
81
  # * +:domain+ - (String)
82
82
  # * +:allocation_id+ - (String)
83
83
 
84
+ # @!method assign_private_ip_addresses(options = {})
84
85
  # Calls the AssignPrivateIpAddresses API operation.
85
- # @method assign_private_ip_addresses(options = {})
86
86
  # @param [Hash] options
87
87
  # * +:network_interface_id+ - *required* - (String)
88
88
  # * +:private_ip_addresses+ - (Array<String>)
@@ -90,8 +90,8 @@ module AWS
90
90
  # * +:allow_reassignment+ - (Boolean)
91
91
  # @return [Core::Response]
92
92
 
93
+ # @!method associate_address(options = {})
93
94
  # Calls the AssociateAddress API operation.
94
- # @method associate_address(options = {})
95
95
  # @param [Hash] options
96
96
  # * +:instance_id+ - (String) The instance to associate with the IP
97
97
  # address.
@@ -107,8 +107,8 @@ module AWS
107
107
  # a hash with the following structure:
108
108
  # * +:association_id+ - (String)
109
109
 
110
+ # @!method associate_dhcp_options(options = {})
110
111
  # Calls the AssociateDhcpOptions API operation.
111
- # @method associate_dhcp_options(options = {})
112
112
  # @param [Hash] options
113
113
  # * +:dhcp_options_id+ - *required* - (String) The ID of the DHCP
114
114
  # options to associate with the VPC. Specify "default" to associate
@@ -117,8 +117,8 @@ module AWS
117
117
  # the DHCP options with.
118
118
  # @return [Core::Response]
119
119
 
120
+ # @!method associate_route_table(options = {})
120
121
  # Calls the AssociateRouteTable API operation.
121
- # @method associate_route_table(options = {})
122
122
  # @param [Hash] options
123
123
  # * +:subnet_id+ - *required* - (String) The ID of the subnet.
124
124
  # * +:route_table_id+ - *required* - (String) The ID of the route
@@ -128,16 +128,16 @@ module AWS
128
128
  # a hash with the following structure:
129
129
  # * +:association_id+ - (String)
130
130
 
131
+ # @!method attach_internet_gateway(options = {})
131
132
  # Calls the AttachInternetGateway API operation.
132
- # @method attach_internet_gateway(options = {})
133
133
  # @param [Hash] options
134
134
  # * +:internet_gateway_id+ - *required* - (String) The ID of the
135
135
  # Internet gateway to attach.
136
136
  # * +:vpc_id+ - *required* - (String) The ID of the VPC.
137
137
  # @return [Core::Response]
138
138
 
139
+ # @!method attach_network_interface(options = {})
139
140
  # Calls the AttachNetworkInterface API operation.
140
- # @method attach_network_interface(options = {})
141
141
  # @param [Hash] options
142
142
  # * +:network_interface_id+ - *required* - (String)
143
143
  # * +:instance_id+ - *required* - (String)
@@ -147,8 +147,8 @@ module AWS
147
147
  # a hash with the following structure:
148
148
  # * +:attachment_id+ - (String)
149
149
 
150
+ # @!method attach_volume(options = {})
150
151
  # Calls the AttachVolume API operation.
151
- # @method attach_volume(options = {})
152
152
  # @param [Hash] options
153
153
  # * +:volume_id+ - *required* - (String) The ID of the Amazon EBS
154
154
  # volume. The volume and instance must be within the same
@@ -168,8 +168,8 @@ module AWS
168
168
  # * +:attach_time+ - (Time)
169
169
  # * +:delete_on_termination+ - (Boolean)
170
170
 
171
+ # @!method attach_vpn_gateway(options = {})
171
172
  # Calls the AttachVpnGateway API operation.
172
- # @method attach_vpn_gateway(options = {})
173
173
  # @param [Hash] options
174
174
  # * +:vpn_gateway_id+ - *required* - (String) The ID of the VPN gateway
175
175
  # to attach to the VPC.
@@ -182,8 +182,8 @@ module AWS
182
182
  # * +:vpc_id+ - (String)
183
183
  # * +:state+ - (String)
184
184
 
185
+ # @!method authorize_security_group_egress(options = {})
185
186
  # Calls the AuthorizeSecurityGroupEgress API operation.
186
- # @method authorize_security_group_egress(options = {})
187
187
  # @param [Hash] options
188
188
  # * +:group_id+ - *required* - (String) ID of the VPC security group to
189
189
  # modify.
@@ -219,8 +219,8 @@ module AWS
219
219
  # * +:cidr_ip+ - (String) The list of CIDR IP ranges.
220
220
  # @return [Core::Response]
221
221
 
222
+ # @!method authorize_security_group_ingress(options = {})
222
223
  # Calls the AuthorizeSecurityGroupIngress API operation.
223
- # @method authorize_security_group_ingress(options = {})
224
224
  # @param [Hash] options
225
225
  # * +:group_name+ - (String) Name of the standard (EC2) security group
226
226
  # to modify. The group must belong to your account. Can be used
@@ -261,8 +261,8 @@ module AWS
261
261
  # * +:cidr_ip+ - (String) The list of CIDR IP ranges.
262
262
  # @return [Core::Response]
263
263
 
264
+ # @!method bundle_instance(options = {})
264
265
  # Calls the BundleInstance API operation.
265
- # @method bundle_instance(options = {})
266
266
  # @param [Hash] options
267
267
  # * +:instance_id+ - *required* - (String) The ID of the instance to
268
268
  # bundle.
@@ -303,8 +303,8 @@ module AWS
303
303
  # * +:code+ - (String)
304
304
  # * +:message+ - (String)
305
305
 
306
+ # @!method cancel_bundle_task(options = {})
306
307
  # Calls the CancelBundleTask API operation.
307
- # @method cancel_bundle_task(options = {})
308
308
  # @param [Hash] options
309
309
  # * +:bundle_id+ - *required* - (String) The ID of the bundle task to
310
310
  # cancel.
@@ -329,21 +329,21 @@ module AWS
329
329
  # * +:code+ - (String)
330
330
  # * +:message+ - (String)
331
331
 
332
+ # @!method cancel_conversion_task(options = {})
332
333
  # Calls the CancelConversionTask API operation.
333
- # @method cancel_conversion_task(options = {})
334
334
  # @param [Hash] options
335
335
  # * +:conversion_task_id+ - *required* - (String)
336
336
  # * +:reason_message+ - (String)
337
337
  # @return [Core::Response]
338
338
 
339
+ # @!method cancel_export_task(options = {})
339
340
  # Calls the CancelExportTask API operation.
340
- # @method cancel_export_task(options = {})
341
341
  # @param [Hash] options
342
342
  # * +:export_task_id+ - *required* - (String)
343
343
  # @return [Core::Response]
344
344
 
345
+ # @!method cancel_reserved_instances_listing(options = {})
345
346
  # Calls the CancelReservedInstancesListing API operation.
346
- # @method cancel_reserved_instances_listing(options = {})
347
347
  # @param [Hash] options
348
348
  # * +:reserved_instances_listing_id+ - *required* - (String)
349
349
  # @return [Core::Response]
@@ -369,8 +369,8 @@ module AWS
369
369
  # * +:value+ - (String)
370
370
  # * +:client_token+ - (String)
371
371
 
372
+ # @!method cancel_spot_instance_requests(options = {})
372
373
  # Calls the CancelSpotInstanceRequests API operation.
373
- # @method cancel_spot_instance_requests(options = {})
374
374
  # @param [Hash] options
375
375
  # * +:spot_instance_request_ids+ - *required* - (Array<String>)
376
376
  # Specifies the ID of the Spot Instance request.
@@ -381,8 +381,8 @@ module AWS
381
381
  # * +:spot_instance_request_id+ - (String)
382
382
  # * +:state+ - (String)
383
383
 
384
+ # @!method confirm_product_instance(options = {})
384
385
  # Calls the ConfirmProductInstance API operation.
385
- # @method confirm_product_instance(options = {})
386
386
  # @param [Hash] options
387
387
  # * +:product_code+ - *required* - (String) The product code to
388
388
  # confirm.
@@ -393,8 +393,8 @@ module AWS
393
393
  # a hash with the following structure:
394
394
  # * +:owner_id+ - (String)
395
395
 
396
+ # @!method create_customer_gateway(options = {})
396
397
  # Calls the CreateCustomerGateway API operation.
397
- # @method create_customer_gateway(options = {})
398
398
  # @param [Hash] options
399
399
  # * +:type+ - *required* - (String) The type of VPN connection this
400
400
  # customer gateway supports.
@@ -416,8 +416,8 @@ module AWS
416
416
  # * +:key+ - (String)
417
417
  # * +:value+ - (String)
418
418
 
419
+ # @!method create_dhcp_options(options = {})
419
420
  # Calls the CreateDhcpOptions API operation.
420
- # @method create_dhcp_options(options = {})
421
421
  # @param [Hash] options
422
422
  # * +:dhcp_configurations+ - *required* - (Array<Hash>) A set of one or
423
423
  # more DHCP configurations.
@@ -436,8 +436,8 @@ module AWS
436
436
  # * +:key+ - (String)
437
437
  # * +:value+ - (String)
438
438
 
439
+ # @!method create_image(options = {})
439
440
  # Calls the CreateImage API operation.
440
- # @method create_image(options = {})
441
441
  # @param [Hash] options
442
442
  # * +:instance_id+ - *required* - (String) The ID of the instance from
443
443
  # which to create the new image.
@@ -472,8 +472,8 @@ module AWS
472
472
  # a hash with the following structure:
473
473
  # * +:image_id+ - (String)
474
474
 
475
+ # @!method create_instance_export_task(options = {})
475
476
  # Calls the CreateInstanceExportTask API operation.
476
- # @method create_instance_export_task(options = {})
477
477
  # @param [Hash] options
478
478
  # * +:description+ - (String)
479
479
  # * +:instance_id+ - *required* - (String)
@@ -500,8 +500,8 @@ module AWS
500
500
  # * +:s3_bucket+ - (String)
501
501
  # * +:s3_key+ - (String)
502
502
 
503
+ # @!method create_internet_gateway(options = {})
503
504
  # Calls the CreateInternetGateway API operation.
504
- # @method create_internet_gateway(options = {})
505
505
  # @param [Hash] options
506
506
  # @return [Core::Response]
507
507
  # The #data method of the response object returns
@@ -515,8 +515,8 @@ module AWS
515
515
  # * +:key+ - (String)
516
516
  # * +:value+ - (String)
517
517
 
518
+ # @!method create_key_pair(options = {})
518
519
  # Calls the CreateKeyPair API operation.
519
- # @method create_key_pair(options = {})
520
520
  # @param [Hash] options
521
521
  # * +:key_name+ - *required* - (String) The unique name for the new key
522
522
  # pair.
@@ -528,8 +528,8 @@ module AWS
528
528
  # * +:key_fingerprint+ - (String)
529
529
  # * +:key_material+ - (String)
530
530
 
531
+ # @!method create_network_acl(options = {})
531
532
  # Calls the CreateNetworkAcl API operation.
532
- # @method create_network_acl(options = {})
533
533
  # @param [Hash] options
534
534
  # * +:vpc_id+ - *required* - (String) The ID of the VPC where the
535
535
  # network ACL will be created.
@@ -560,8 +560,8 @@ module AWS
560
560
  # * +:key+ - (String)
561
561
  # * +:value+ - (String)
562
562
 
563
+ # @!method create_network_acl_entry(options = {})
563
564
  # Calls the CreateNetworkAclEntry API operation.
564
- # @method create_network_acl_entry(options = {})
565
565
  # @param [Hash] options
566
566
  # * +:network_acl_id+ - *required* - (String) ID of the ACL where the
567
567
  # entry will be created.
@@ -591,8 +591,8 @@ module AWS
591
591
  # specifying tcp or udp for the protocol.
592
592
  # @return [Core::Response]
593
593
 
594
+ # @!method create_network_interface(options = {})
594
595
  # Calls the CreateNetworkInterface API operation.
595
- # @method create_network_interface(options = {})
596
596
  # @param [Hash] options
597
597
  # * +:subnet_id+ - *required* - (String)
598
598
  # * +:description+ - (String)
@@ -647,16 +647,16 @@ module AWS
647
647
  # * +:allocation_id+ - (String)
648
648
  # * +:association_id+ - (String)
649
649
 
650
+ # @!method create_placement_group(options = {})
650
651
  # Calls the CreatePlacementGroup API operation.
651
- # @method create_placement_group(options = {})
652
652
  # @param [Hash] options
653
653
  # * +:group_name+ - *required* - (String) The name of the
654
654
  # PlacementGroup.
655
655
  # * +:strategy+ - *required* - (String) The PlacementGroup strategy.
656
656
  # @return [Core::Response]
657
657
 
658
+ # @!method create_reserved_instances_listing(options = {})
658
659
  # Calls the CreateReservedInstancesListing API operation.
659
- # @method create_reserved_instances_listing(options = {})
660
660
  # @param [Hash] options
661
661
  # * +:reserved_instances_id+ - *required* - (String)
662
662
  # * +:instance_count+ - *required* - (Integer)
@@ -688,8 +688,8 @@ module AWS
688
688
  # * +:value+ - (String)
689
689
  # * +:client_token+ - (String)
690
690
 
691
+ # @!method create_route(options = {})
691
692
  # Calls the CreateRoute API operation.
692
- # @method create_route(options = {})
693
693
  # @param [Hash] options
694
694
  # * +:route_table_id+ - *required* - (String) The ID of the route table
695
695
  # where the route will be added.
@@ -704,8 +704,8 @@ module AWS
704
704
  # * +:network_interface_id+ - (String)
705
705
  # @return [Core::Response]
706
706
 
707
+ # @!method create_route_table(options = {})
707
708
  # Calls the CreateRouteTable API operation.
708
- # @method create_route_table(options = {})
709
709
  # @param [Hash] options
710
710
  # * +:vpc_id+ - *required* - (String) The ID of the VPC where the route
711
711
  # table will be created.
@@ -738,8 +738,8 @@ module AWS
738
738
  # * +:status+ - (String)
739
739
  # * +:source_id+ - (String)
740
740
 
741
+ # @!method create_security_group(options = {})
741
742
  # Calls the CreateSecurityGroup API operation.
742
- # @method create_security_group(options = {})
743
743
  # @param [Hash] options
744
744
  # * +:group_name+ - *required* - (String) Name of the security group.
745
745
  # * +:description+ - *required* - (String) Description of the group.
@@ -750,8 +750,8 @@ module AWS
750
750
  # a hash with the following structure:
751
751
  # * +:group_id+ - (String)
752
752
 
753
+ # @!method create_snapshot(options = {})
753
754
  # Calls the CreateSnapshot API operation.
754
- # @method create_snapshot(options = {})
755
755
  # @param [Hash] options
756
756
  # * +:volume_id+ - *required* - (String) The ID of the volume from
757
757
  # which to create the snapshot.
@@ -772,8 +772,8 @@ module AWS
772
772
  # * +:key+ - (String)
773
773
  # * +:value+ - (String)
774
774
 
775
+ # @!method create_spot_datafeed_subscription(options = {})
775
776
  # Calls the CreateSpotDatafeedSubscription API operation.
776
- # @method create_spot_datafeed_subscription(options = {})
777
777
  # @param [Hash] options
778
778
  # * +:bucket+ - *required* - (String) The Amazon S3 bucket in which to
779
779
  # store the Spot Instance datafeed.
@@ -791,8 +791,8 @@ module AWS
791
791
  # * +:code+ - (String)
792
792
  # * +:message+ - (String)
793
793
 
794
+ # @!method create_subnet(options = {})
794
795
  # Calls the CreateSubnet API operation.
795
- # @method create_subnet(options = {})
796
796
  # @param [Hash] options
797
797
  # * +:vpc_id+ - *required* - (String) The ID of the VPC to create the
798
798
  # subnet in.
@@ -814,8 +814,8 @@ module AWS
814
814
  # * +:key+ - (String)
815
815
  # * +:value+ - (String)
816
816
 
817
+ # @!method create_tags(options = {})
817
818
  # Calls the CreateTags API operation.
818
- # @method create_tags(options = {})
819
819
  # @param [Hash] options
820
820
  # * +:resources+ - *required* - (Array<String>) One or more IDs of
821
821
  # resources to tag. This could be the ID of an AMI, an instance, an
@@ -827,8 +827,8 @@ module AWS
827
827
  # * +:value+ - (String) The tag's value.
828
828
  # @return [Core::Response]
829
829
 
830
+ # @!method create_volume(options = {})
830
831
  # Calls the CreateVolume API operation.
831
- # @method create_volume(options = {})
832
832
  # @param [Hash] options
833
833
  # * +:size+ - (Integer) The size of the volume, in gigabytes. Required
834
834
  # if you are not creating a volume from a snapshot.
@@ -860,8 +860,8 @@ module AWS
860
860
  # * +:volume_type+ - (String)
861
861
  # * +:iops+ - (Integer)
862
862
 
863
+ # @!method create_vpc(options = {})
863
864
  # Calls the CreateVpc API operation.
864
- # @method create_vpc(options = {})
865
865
  # @param [Hash] options
866
866
  # * +:cidr_block+ - *required* - (String) A valid CIDR block.
867
867
  # * +:instance_tenancy+ - (String) The allowed tenancy of instances
@@ -881,8 +881,8 @@ module AWS
881
881
  # * +:value+ - (String)
882
882
  # * +:instance_tenancy+ - (String)
883
883
 
884
+ # @!method create_vpn_connection(options = {})
884
885
  # Calls the CreateVpnConnection API operation.
885
- # @method create_vpn_connection(options = {})
886
886
  # @param [Hash] options
887
887
  # * +:type+ - *required* - (String) The type of VPN connection.
888
888
  # * +:customer_gateway_id+ - *required* - (String) The ID of the
@@ -917,15 +917,15 @@ module AWS
917
917
  # * +:source+ - (String)
918
918
  # * +:state+ - (String)
919
919
 
920
+ # @!method create_vpn_connection_route(options = {})
920
921
  # Calls the CreateVpnConnectionRoute API operation.
921
- # @method create_vpn_connection_route(options = {})
922
922
  # @param [Hash] options
923
923
  # * +:vpn_connection_id+ - *required* - (String)
924
924
  # * +:destination_cidr_block+ - *required* - (String)
925
925
  # @return [Core::Response]
926
926
 
927
+ # @!method create_vpn_gateway(options = {})
927
928
  # Calls the CreateVpnGateway API operation.
928
- # @method create_vpn_gateway(options = {})
929
929
  # @param [Hash] options
930
930
  # * +:type+ - *required* - (String) The type of VPN connection this VPN
931
931
  # gateway supports.
@@ -946,8 +946,8 @@ module AWS
946
946
  # * +:key+ - (String)
947
947
  # * +:value+ - (String)
948
948
 
949
+ # @!method deactivate_license(options = {})
949
950
  # Calls the DeactivateLicense API operation.
950
- # @method deactivate_license(options = {})
951
951
  # @param [Hash] options
952
952
  # * +:license_id+ - *required* - (String) Specifies the ID for the
953
953
  # specific license to deactivate against.
@@ -955,43 +955,43 @@ module AWS
955
955
  # capacity to deactivate against the license.
956
956
  # @return [Core::Response]
957
957
 
958
+ # @!method delete_customer_gateway(options = {})
958
959
  # Calls the DeleteCustomerGateway API operation.
959
- # @method delete_customer_gateway(options = {})
960
960
  # @param [Hash] options
961
961
  # * +:customer_gateway_id+ - *required* - (String) The ID of the
962
962
  # customer gateway to delete.
963
963
  # @return [Core::Response]
964
964
 
965
+ # @!method delete_dhcp_options(options = {})
965
966
  # Calls the DeleteDhcpOptions API operation.
966
- # @method delete_dhcp_options(options = {})
967
967
  # @param [Hash] options
968
968
  # * +:dhcp_options_id+ - *required* - (String) The ID of the DHCP
969
969
  # options set to delete.
970
970
  # @return [Core::Response]
971
971
 
972
+ # @!method delete_internet_gateway(options = {})
972
973
  # Calls the DeleteInternetGateway API operation.
973
- # @method delete_internet_gateway(options = {})
974
974
  # @param [Hash] options
975
975
  # * +:internet_gateway_id+ - *required* - (String) The ID of the
976
976
  # Internet gateway to be deleted.
977
977
  # @return [Core::Response]
978
978
 
979
+ # @!method delete_key_pair(options = {})
979
980
  # Calls the DeleteKeyPair API operation.
980
- # @method delete_key_pair(options = {})
981
981
  # @param [Hash] options
982
982
  # * +:key_name+ - *required* - (String) The name of the Amazon EC2 key
983
983
  # pair to delete.
984
984
  # @return [Core::Response]
985
985
 
986
+ # @!method delete_network_acl(options = {})
986
987
  # Calls the DeleteNetworkAcl API operation.
987
- # @method delete_network_acl(options = {})
988
988
  # @param [Hash] options
989
989
  # * +:network_acl_id+ - *required* - (String) The ID of the network ACL
990
990
  # to be deleted.
991
991
  # @return [Core::Response]
992
992
 
993
+ # @!method delete_network_acl_entry(options = {})
993
994
  # Calls the DeleteNetworkAclEntry API operation.
994
- # @method delete_network_acl_entry(options = {})
995
995
  # @param [Hash] options
996
996
  # * +:network_acl_id+ - *required* - (String) ID of the network ACL.
997
997
  # * +:rule_number+ - *required* - (Integer) Rule number for the entry
@@ -1000,21 +1000,21 @@ module AWS
1000
1000
  # egress rule ( +true+ ) or ingress rule ( +false+ ).
1001
1001
  # @return [Core::Response]
1002
1002
 
1003
+ # @!method delete_network_interface(options = {})
1003
1004
  # Calls the DeleteNetworkInterface API operation.
1004
- # @method delete_network_interface(options = {})
1005
1005
  # @param [Hash] options
1006
1006
  # * +:network_interface_id+ - *required* - (String)
1007
1007
  # @return [Core::Response]
1008
1008
 
1009
+ # @!method delete_placement_group(options = {})
1009
1010
  # Calls the DeletePlacementGroup API operation.
1010
- # @method delete_placement_group(options = {})
1011
1011
  # @param [Hash] options
1012
1012
  # * +:group_name+ - *required* - (String) The name of the
1013
1013
  # PlacementGroup to delete.
1014
1014
  # @return [Core::Response]
1015
1015
 
1016
+ # @!method delete_route(options = {})
1016
1017
  # Calls the DeleteRoute API operation.
1017
- # @method delete_route(options = {})
1018
1018
  # @param [Hash] options
1019
1019
  # * +:route_table_id+ - *required* - (String) The ID of the route table
1020
1020
  # where the route will be deleted.
@@ -1023,15 +1023,15 @@ module AWS
1023
1023
  # exactly match the CIDR for the route you want to delete.
1024
1024
  # @return [Core::Response]
1025
1025
 
1026
+ # @!method delete_route_table(options = {})
1026
1027
  # Calls the DeleteRouteTable API operation.
1027
- # @method delete_route_table(options = {})
1028
1028
  # @param [Hash] options
1029
1029
  # * +:route_table_id+ - *required* - (String) The ID of the route table
1030
1030
  # to be deleted.
1031
1031
  # @return [Core::Response]
1032
1032
 
1033
+ # @!method delete_security_group(options = {})
1033
1034
  # Calls the DeleteSecurityGroup API operation.
1034
- # @method delete_security_group(options = {})
1035
1035
  # @param [Hash] options
1036
1036
  # * +:group_name+ - (String) The name of the Amazon EC2 security group
1037
1037
  # to delete.
@@ -1039,27 +1039,27 @@ module AWS
1039
1039
  # delete.
1040
1040
  # @return [Core::Response]
1041
1041
 
1042
+ # @!method delete_snapshot(options = {})
1042
1043
  # Calls the DeleteSnapshot API operation.
1043
- # @method delete_snapshot(options = {})
1044
1044
  # @param [Hash] options
1045
1045
  # * +:snapshot_id+ - *required* - (String) The ID of the snapshot to
1046
1046
  # delete.
1047
1047
  # @return [Core::Response]
1048
1048
 
1049
+ # @!method delete_spot_datafeed_subscription(options = {})
1049
1050
  # Calls the DeleteSpotDatafeedSubscription API operation.
1050
- # @method delete_spot_datafeed_subscription(options = {})
1051
1051
  # @param [Hash] options
1052
1052
  # @return [Core::Response]
1053
1053
 
1054
+ # @!method delete_subnet(options = {})
1054
1055
  # Calls the DeleteSubnet API operation.
1055
- # @method delete_subnet(options = {})
1056
1056
  # @param [Hash] options
1057
1057
  # * +:subnet_id+ - *required* - (String) The ID of the subnet you want
1058
1058
  # to delete.
1059
1059
  # @return [Core::Response]
1060
1060
 
1061
+ # @!method delete_tags(options = {})
1061
1062
  # Calls the DeleteTags API operation.
1062
- # @method delete_tags(options = {})
1063
1063
  # @param [Hash] options
1064
1064
  # * +:resources+ - *required* - (Array<String>) A list of one or more
1065
1065
  # resource IDs. This could be the ID of an AMI, an instance, an EBS
@@ -1072,50 +1072,50 @@ module AWS
1072
1072
  # * +:value+ - (String) The tag's value.
1073
1073
  # @return [Core::Response]
1074
1074
 
1075
+ # @!method delete_volume(options = {})
1075
1076
  # Calls the DeleteVolume API operation.
1076
- # @method delete_volume(options = {})
1077
1077
  # @param [Hash] options
1078
1078
  # * +:volume_id+ - *required* - (String) The ID of the EBS volume to
1079
1079
  # delete.
1080
1080
  # @return [Core::Response]
1081
1081
 
1082
+ # @!method delete_vpc(options = {})
1082
1083
  # Calls the DeleteVpc API operation.
1083
- # @method delete_vpc(options = {})
1084
1084
  # @param [Hash] options
1085
1085
  # * +:vpc_id+ - *required* - (String) The ID of the VPC you want to
1086
1086
  # delete.
1087
1087
  # @return [Core::Response]
1088
1088
 
1089
+ # @!method delete_vpn_connection(options = {})
1089
1090
  # Calls the DeleteVpnConnection API operation.
1090
- # @method delete_vpn_connection(options = {})
1091
1091
  # @param [Hash] options
1092
1092
  # * +:vpn_connection_id+ - *required* - (String) The ID of the VPN
1093
1093
  # connection to delete
1094
1094
  # @return [Core::Response]
1095
1095
 
1096
+ # @!method delete_vpn_connection_route(options = {})
1096
1097
  # Calls the DeleteVpnConnectionRoute API operation.
1097
- # @method delete_vpn_connection_route(options = {})
1098
1098
  # @param [Hash] options
1099
1099
  # * +:vpn_connection_id+ - *required* - (String)
1100
1100
  # * +:destination_cidr_block+ - *required* - (String)
1101
1101
  # @return [Core::Response]
1102
1102
 
1103
+ # @!method delete_vpn_gateway(options = {})
1103
1104
  # Calls the DeleteVpnGateway API operation.
1104
- # @method delete_vpn_gateway(options = {})
1105
1105
  # @param [Hash] options
1106
1106
  # * +:vpn_gateway_id+ - *required* - (String) The ID of the VPN gateway
1107
1107
  # to delete.
1108
1108
  # @return [Core::Response]
1109
1109
 
1110
+ # @!method deregister_image(options = {})
1110
1111
  # Calls the DeregisterImage API operation.
1111
- # @method deregister_image(options = {})
1112
1112
  # @param [Hash] options
1113
1113
  # * +:image_id+ - *required* - (String) The ID of the AMI to
1114
1114
  # deregister.
1115
1115
  # @return [Core::Response]
1116
1116
 
1117
+ # @!method describe_addresses(options = {})
1117
1118
  # Calls the DescribeAddresses API operation.
1118
- # @method describe_addresses(options = {})
1119
1119
  # @param [Hash] options
1120
1120
  # * +:public_ips+ - (Array<String>) The optional list of Elastic IP
1121
1121
  # addresses to describe.
@@ -1139,8 +1139,8 @@ module AWS
1139
1139
  # * +:network_interface_owner_id+ - (String)
1140
1140
  # * +:private_ip_address+ - (String)
1141
1141
 
1142
+ # @!method describe_availability_zones(options = {})
1142
1143
  # Calls the DescribeAvailabilityZones API operation.
1143
- # @method describe_availability_zones(options = {})
1144
1144
  # @param [Hash] options
1145
1145
  # * +:zone_names+ - (Array<String>) A list of the availability zone
1146
1146
  # names to describe.
@@ -1161,8 +1161,8 @@ module AWS
1161
1161
  # * +:message_set+ - (Array<Hash>)
1162
1162
  # * +:message+ - (String)
1163
1163
 
1164
+ # @!method describe_bundle_tasks(options = {})
1164
1165
  # Calls the DescribeBundleTasks API operation.
1165
- # @method describe_bundle_tasks(options = {})
1166
1166
  # @param [Hash] options
1167
1167
  # * +:bundle_ids+ - (Array<String>) The list of bundle task IDs to
1168
1168
  # describe.
@@ -1194,8 +1194,8 @@ module AWS
1194
1194
  # * +:code+ - (String)
1195
1195
  # * +:message+ - (String)
1196
1196
 
1197
+ # @!method describe_conversion_tasks(options = {})
1197
1198
  # Calls the DescribeConversionTasks API operation.
1198
- # @method describe_conversion_tasks(options = {})
1199
1199
  # @param [Hash] options
1200
1200
  # * +:filters+ - (Array<Hash>)
1201
1201
  # * +:name+ - (String) Specifies the name of the filter.
@@ -1244,8 +1244,8 @@ module AWS
1244
1244
  # * +:key+ - (String)
1245
1245
  # * +:value+ - (String)
1246
1246
 
1247
+ # @!method describe_customer_gateways(options = {})
1247
1248
  # Calls the DescribeCustomerGateways API operation.
1248
- # @method describe_customer_gateways(options = {})
1249
1249
  # @param [Hash] options
1250
1250
  # * +:customer_gateway_ids+ - (Array<String>) A set of one or more
1251
1251
  # customer gateway IDs.
@@ -1269,8 +1269,8 @@ module AWS
1269
1269
  # * +:key+ - (String)
1270
1270
  # * +:value+ - (String)
1271
1271
 
1272
+ # @!method describe_dhcp_options(options = {})
1272
1273
  # Calls the DescribeDhcpOptions API operation.
1273
- # @method describe_dhcp_options(options = {})
1274
1274
  # @param [Hash] options
1275
1275
  # * +:dhcp_options_ids+ - (Array<String>)
1276
1276
  # * +:filters+ - (Array<Hash>) A list of filters used to match
@@ -1292,8 +1292,8 @@ module AWS
1292
1292
  # * +:key+ - (String)
1293
1293
  # * +:value+ - (String)
1294
1294
 
1295
+ # @!method describe_export_tasks(options = {})
1295
1296
  # Calls the DescribeExportTasks API operation.
1296
- # @method describe_export_tasks(options = {})
1297
1297
  # @param [Hash] options
1298
1298
  # * +:export_task_ids+ - (Array<String>)
1299
1299
  # @return [Core::Response]
@@ -1313,8 +1313,8 @@ module AWS
1313
1313
  # * +:s3_bucket+ - (String)
1314
1314
  # * +:s3_key+ - (String)
1315
1315
 
1316
+ # @!method describe_image_attribute(options = {})
1316
1317
  # Calls the DescribeImageAttribute API operation.
1317
- # @method describe_image_attribute(options = {})
1318
1318
  # @param [Hash] options
1319
1319
  # * +:image_id+ - *required* - (String) The ID of the AMI whose
1320
1320
  # attribute is to be described.
@@ -1348,8 +1348,8 @@ module AWS
1348
1348
  # * +:iops+ - (Integer)
1349
1349
  # * +:no_device+ - (String)
1350
1350
 
1351
+ # @!method describe_images(options = {})
1351
1352
  # Calls the DescribeImages API operation.
1352
- # @method describe_images(options = {})
1353
1353
  # @param [Hash] options
1354
1354
  # * +:image_ids+ - (Array<String>) An optional list of the AMI IDs to
1355
1355
  # describe. If not specified, all AMIs will be described.
@@ -1409,8 +1409,8 @@ module AWS
1409
1409
  # * +:value+ - (String)
1410
1410
  # * +:hypervisor+ - (String)
1411
1411
 
1412
+ # @!method describe_instance_attribute(options = {})
1412
1413
  # Calls the DescribeInstanceAttribute API operation.
1413
- # @method describe_instance_attribute(options = {})
1414
1414
  # @param [Hash] options
1415
1415
  # * +:instance_id+ - *required* - (String) The ID of the instance whose
1416
1416
  # instance attribute is being described.
@@ -1449,8 +1449,8 @@ module AWS
1449
1449
  # * +:ebs_optimized+ - (Hash)
1450
1450
  # * +:value+ - (Boolean)
1451
1451
 
1452
+ # @!method describe_instance_status(options = {})
1452
1453
  # Calls the DescribeInstanceStatus API operation.
1453
- # @method describe_instance_status(options = {})
1454
1454
  # @param [Hash] options
1455
1455
  # * +:instance_ids+ - (Array<String>) The list of instance IDs. If not
1456
1456
  # specified, all instances are described.
@@ -1492,8 +1492,8 @@ module AWS
1492
1492
  # * +:impaired_since+ - (Time)
1493
1493
  # * +:next_token+ - (String)
1494
1494
 
1495
+ # @!method describe_instances(options = {})
1495
1496
  # Calls the DescribeInstances API operation.
1496
- # @method describe_instances(options = {})
1497
1497
  # @param [Hash] options
1498
1498
  # * +:instance_ids+ - (Array<String>) An optional list of the instances
1499
1499
  # to describe.
@@ -1596,8 +1596,8 @@ module AWS
1596
1596
  # * +:id+ - (String)
1597
1597
  # * +:ebs_optimized+ - (Boolean)
1598
1598
 
1599
+ # @!method describe_internet_gateways(options = {})
1599
1600
  # Calls the DescribeInternetGateways API operation.
1600
- # @method describe_internet_gateways(options = {})
1601
1601
  # @param [Hash] options
1602
1602
  # * +:internet_gateway_ids+ - (Array<String>) One or more Internet
1603
1603
  # gateway IDs.
@@ -1620,8 +1620,8 @@ module AWS
1620
1620
  # * +:key+ - (String)
1621
1621
  # * +:value+ - (String)
1622
1622
 
1623
+ # @!method describe_key_pairs(options = {})
1623
1624
  # Calls the DescribeKeyPairs API operation.
1624
- # @method describe_key_pairs(options = {})
1625
1625
  # @param [Hash] options
1626
1626
  # * +:key_names+ - (Array<String>) The optional list of key pair names
1627
1627
  # to describe.
@@ -1638,8 +1638,8 @@ module AWS
1638
1638
  # * +:key_name+ - (String)
1639
1639
  # * +:key_fingerprint+ - (String)
1640
1640
 
1641
+ # @!method describe_licenses(options = {})
1641
1642
  # Calls the DescribeLicenses API operation.
1642
- # @method describe_licenses(options = {})
1643
1643
  # @param [Hash] options
1644
1644
  # * +:license_ids+ - (Array<String>) Specifies the license registration
1645
1645
  # for which details are to be returned.
@@ -1665,8 +1665,8 @@ module AWS
1665
1665
  # * +:key+ - (String)
1666
1666
  # * +:value+ - (String)
1667
1667
 
1668
+ # @!method describe_network_acls(options = {})
1668
1669
  # Calls the DescribeNetworkAcls API operation.
1669
- # @method describe_network_acls(options = {})
1670
1670
  # @param [Hash] options
1671
1671
  # * +:network_acl_ids+ - (Array<String>) One or more network ACL IDs.
1672
1672
  # * +:filters+ - (Array<Hash>) A list of filters used to match
@@ -1703,8 +1703,8 @@ module AWS
1703
1703
  # * +:key+ - (String)
1704
1704
  # * +:value+ - (String)
1705
1705
 
1706
+ # @!method describe_network_interface_attribute(options = {})
1706
1707
  # Calls the DescribeNetworkInterfaceAttribute API operation.
1707
- # @method describe_network_interface_attribute(options = {})
1708
1708
  # @param [Hash] options
1709
1709
  # * +:network_interface_id+ - *required* - (String)
1710
1710
  # * +:description+ - (String)
@@ -1731,8 +1731,8 @@ module AWS
1731
1731
  # * +:attach_time+ - (Time)
1732
1732
  # * +:delete_on_termination+ - (Boolean)
1733
1733
 
1734
+ # @!method describe_network_interfaces(options = {})
1734
1735
  # Calls the DescribeNetworkInterfaces API operation.
1735
- # @method describe_network_interfaces(options = {})
1736
1736
  # @param [Hash] options
1737
1737
  # * +:network_interface_ids+ - (Array<String>)
1738
1738
  # * +:filters+ - (Array<Hash>)
@@ -1784,8 +1784,8 @@ module AWS
1784
1784
  # * +:allocation_id+ - (String)
1785
1785
  # * +:association_id+ - (String)
1786
1786
 
1787
+ # @!method describe_placement_groups(options = {})
1787
1788
  # Calls the DescribePlacementGroups API operation.
1788
- # @method describe_placement_groups(options = {})
1789
1789
  # @param [Hash] options
1790
1790
  # * +:group_names+ - (Array<String>) The name of the PlacementGroup.
1791
1791
  # * +:filters+ - (Array<Hash>) A list of filters used to match
@@ -1803,8 +1803,8 @@ module AWS
1803
1803
  # * +:strategy+ - (String)
1804
1804
  # * +:state+ - (String)
1805
1805
 
1806
+ # @!method describe_regions(options = {})
1806
1807
  # Calls the DescribeRegions API operation.
1807
- # @method describe_regions(options = {})
1808
1808
  # @param [Hash] options
1809
1809
  # * +:region_names+ - (Array<String>) The optional list of regions to
1810
1810
  # describe.
@@ -1821,8 +1821,8 @@ module AWS
1821
1821
  # * +:region_name+ - (String)
1822
1822
  # * +:region_endpoint+ - (String)
1823
1823
 
1824
+ # @!method describe_reserved_instances(options = {})
1824
1825
  # Calls the DescribeReservedInstances API operation.
1825
- # @method describe_reserved_instances(options = {})
1826
1826
  # @param [Hash] options
1827
1827
  # * +:reserved_instances_ids+ - (Array<String>) The optional list of
1828
1828
  # Reserved Instance IDs to describe.
@@ -1858,8 +1858,8 @@ module AWS
1858
1858
  # * +:frequency+ - (String)
1859
1859
  # * +:amount+ - (Numeric)
1860
1860
 
1861
+ # @!method describe_reserved_instances_listings(options = {})
1861
1862
  # Calls the DescribeReservedInstancesListings API operation.
1862
- # @method describe_reserved_instances_listings(options = {})
1863
1863
  # @param [Hash] options
1864
1864
  # * +:reserved_instances_id+ - (String)
1865
1865
  # * +:reserved_instances_listing_id+ - (String)
@@ -1890,8 +1890,8 @@ module AWS
1890
1890
  # * +:value+ - (String)
1891
1891
  # * +:client_token+ - (String)
1892
1892
 
1893
+ # @!method describe_reserved_instances_offerings(options = {})
1893
1894
  # Calls the DescribeReservedInstancesOfferings API operation.
1894
- # @method describe_reserved_instances_offerings(options = {})
1895
1895
  # @param [Hash] options
1896
1896
  # * +:reserved_instances_offering_ids+ - (Array<String>) An optional
1897
1897
  # list of the unique IDs of the Reserved Instance offerings to
@@ -1936,8 +1936,8 @@ module AWS
1936
1936
  # * +:count+ - (Integer)
1937
1937
  # * +:next_token+ - (String)
1938
1938
 
1939
+ # @!method describe_route_tables(options = {})
1939
1940
  # Calls the DescribeRouteTables API operation.
1940
- # @method describe_route_tables(options = {})
1941
1941
  # @param [Hash] options
1942
1942
  # * +:route_table_ids+ - (Array<String>) One or more route table IDs.
1943
1943
  # * +:filters+ - (Array<Hash>) A list of filters used to match
@@ -1976,8 +1976,8 @@ module AWS
1976
1976
  # * +:status+ - (String)
1977
1977
  # * +:source_id+ - (String)
1978
1978
 
1979
+ # @!method describe_security_groups(options = {})
1979
1980
  # Calls the DescribeSecurityGroups API operation.
1980
- # @method describe_security_groups(options = {})
1981
1981
  # @param [Hash] options
1982
1982
  # * +:group_names+ - (Array<String>) The optional list of Amazon EC2
1983
1983
  # security groups to describe.
@@ -2022,8 +2022,8 @@ module AWS
2022
2022
  # * +:key+ - (String)
2023
2023
  # * +:value+ - (String)
2024
2024
 
2025
+ # @!method describe_snapshot_attribute(options = {})
2025
2026
  # Calls the DescribeSnapshotAttribute API operation.
2026
- # @method describe_snapshot_attribute(options = {})
2027
2027
  # @param [Hash] options
2028
2028
  # * +:snapshot_id+ - *required* - (String) The ID of the EBS snapshot
2029
2029
  # whose attribute is being described.
@@ -2040,8 +2040,8 @@ module AWS
2040
2040
  # * +:product_code+ - (String)
2041
2041
  # * +:type+ - (String)
2042
2042
 
2043
+ # @!method describe_snapshots(options = {})
2043
2044
  # Calls the DescribeSnapshots API operation.
2044
- # @method describe_snapshots(options = {})
2045
2045
  # @param [Hash] options
2046
2046
  # * +:snapshot_ids+ - (Array<String>) The optional list of EBS snapshot
2047
2047
  # IDs to describe.
@@ -2073,8 +2073,8 @@ module AWS
2073
2073
  # * +:key+ - (String)
2074
2074
  # * +:value+ - (String)
2075
2075
 
2076
+ # @!method describe_spot_datafeed_subscription(options = {})
2076
2077
  # Calls the DescribeSpotDatafeedSubscription API operation.
2077
- # @method describe_spot_datafeed_subscription(options = {})
2078
2078
  # @param [Hash] options
2079
2079
  # @return [Core::Response]
2080
2080
  # The #data method of the response object returns
@@ -2088,8 +2088,8 @@ module AWS
2088
2088
  # * +:code+ - (String)
2089
2089
  # * +:message+ - (String)
2090
2090
 
2091
+ # @!method describe_spot_instance_requests(options = {})
2091
2092
  # Calls the DescribeSpotInstanceRequests API operation.
2092
- # @method describe_spot_instance_requests(options = {})
2093
2093
  # @param [Hash] options
2094
2094
  # * +:spot_instance_request_ids+ - (Array<String>) The ID of the
2095
2095
  # request.
@@ -2165,8 +2165,8 @@ module AWS
2165
2165
  # * +:value+ - (String)
2166
2166
  # * +:launched_availability_zone+ - (String)
2167
2167
 
2168
+ # @!method describe_spot_price_history(options = {})
2168
2169
  # Calls the DescribeSpotPriceHistory API operation.
2169
- # @method describe_spot_price_history(options = {})
2170
2170
  # @param [Hash] options
2171
2171
  # * +:start_time+ - (String<ISO8601 datetime>) The start date and time
2172
2172
  # of the Spot Instance price history data.
@@ -2198,8 +2198,8 @@ module AWS
2198
2198
  # * +:availability_zone+ - (String)
2199
2199
  # * +:next_token+ - (String)
2200
2200
 
2201
+ # @!method describe_subnets(options = {})
2201
2202
  # Calls the DescribeSubnets API operation.
2202
- # @method describe_subnets(options = {})
2203
2203
  # @param [Hash] options
2204
2204
  # * +:subnet_ids+ - (Array<String>) A set of one or more subnet IDs.
2205
2205
  # * +:filters+ - (Array<Hash>) A list of filters used to match
@@ -2222,8 +2222,8 @@ module AWS
2222
2222
  # * +:key+ - (String)
2223
2223
  # * +:value+ - (String)
2224
2224
 
2225
+ # @!method describe_tags(options = {})
2225
2226
  # Calls the DescribeTags API operation.
2226
- # @method describe_tags(options = {})
2227
2227
  # @param [Hash] options
2228
2228
  # * +:filters+ - (Array<Hash>) A list of filters used to match
2229
2229
  # properties for tags.
@@ -2239,8 +2239,8 @@ module AWS
2239
2239
  # * +:key+ - (String)
2240
2240
  # * +:value+ - (String)
2241
2241
 
2242
+ # @!method describe_volume_attribute(options = {})
2242
2243
  # Calls the DescribeVolumeAttribute API operation.
2243
- # @method describe_volume_attribute(options = {})
2244
2244
  # @param [Hash] options
2245
2245
  # * +:volume_id+ - *required* - (String)
2246
2246
  # * +:attribute+ - (String)
@@ -2254,8 +2254,8 @@ module AWS
2254
2254
  # * +:product_code+ - (String)
2255
2255
  # * +:type+ - (String)
2256
2256
 
2257
+ # @!method describe_volume_status(options = {})
2257
2258
  # Calls the DescribeVolumeStatus API operation.
2258
- # @method describe_volume_status(options = {})
2259
2259
  # @param [Hash] options
2260
2260
  # * +:volume_ids+ - (Array<String>)
2261
2261
  # * +:filters+ - (Array<Hash>)
@@ -2288,8 +2288,8 @@ module AWS
2288
2288
  # * +:event_id+ - (String)
2289
2289
  # * +:next_token+ - (String)
2290
2290
 
2291
+ # @!method describe_volumes(options = {})
2291
2292
  # Calls the DescribeVolumes API operation.
2292
- # @method describe_volumes(options = {})
2293
2293
  # @param [Hash] options
2294
2294
  # * +:volume_ids+ - (Array<String>) The optional list of EBS volumes to
2295
2295
  # describe.
@@ -2322,8 +2322,8 @@ module AWS
2322
2322
  # * +:volume_type+ - (String)
2323
2323
  # * +:iops+ - (Integer)
2324
2324
 
2325
+ # @!method describe_vpcs(options = {})
2325
2326
  # Calls the DescribeVpcs API operation.
2326
- # @method describe_vpcs(options = {})
2327
2327
  # @param [Hash] options
2328
2328
  # * +:vpc_ids+ - (Array<String>) The ID of a VPC you want information
2329
2329
  # about.
@@ -2346,8 +2346,8 @@ module AWS
2346
2346
  # * +:value+ - (String)
2347
2347
  # * +:instance_tenancy+ - (String)
2348
2348
 
2349
+ # @!method describe_vpn_connections(options = {})
2349
2350
  # Calls the DescribeVpnConnections API operation.
2350
- # @method describe_vpn_connections(options = {})
2351
2351
  # @param [Hash] options
2352
2352
  # * +:vpn_connection_ids+ - (Array<String>) A VPN connection ID. More
2353
2353
  # than one may be specified per request.
@@ -2384,8 +2384,8 @@ module AWS
2384
2384
  # * +:source+ - (String)
2385
2385
  # * +:state+ - (String)
2386
2386
 
2387
+ # @!method describe_vpn_gateways(options = {})
2387
2388
  # Calls the DescribeVpnGateways API operation.
2388
- # @method describe_vpn_gateways(options = {})
2389
2389
  # @param [Hash] options
2390
2390
  # * +:vpn_gateway_ids+ - (Array<String>) A list of filters used to
2391
2391
  # match properties for VPN Gateways. For a complete reference to the
@@ -2413,23 +2413,23 @@ module AWS
2413
2413
  # * +:key+ - (String)
2414
2414
  # * +:value+ - (String)
2415
2415
 
2416
+ # @!method detach_internet_gateway(options = {})
2416
2417
  # Calls the DetachInternetGateway API operation.
2417
- # @method detach_internet_gateway(options = {})
2418
2418
  # @param [Hash] options
2419
2419
  # * +:internet_gateway_id+ - *required* - (String) The ID of the
2420
2420
  # Internet gateway to detach.
2421
2421
  # * +:vpc_id+ - *required* - (String) The ID of the VPC.
2422
2422
  # @return [Core::Response]
2423
2423
 
2424
+ # @!method detach_network_interface(options = {})
2424
2425
  # Calls the DetachNetworkInterface API operation.
2425
- # @method detach_network_interface(options = {})
2426
2426
  # @param [Hash] options
2427
2427
  # * +:attachment_id+ - *required* - (String)
2428
2428
  # * +:force+ - (Boolean)
2429
2429
  # @return [Core::Response]
2430
2430
 
2431
+ # @!method detach_volume(options = {})
2431
2432
  # Calls the DetachVolume API operation.
2432
- # @method detach_volume(options = {})
2433
2433
  # @param [Hash] options
2434
2434
  # * +:volume_id+ - *required* - (String) The ID of the volume to
2435
2435
  # detach.
@@ -2455,8 +2455,8 @@ module AWS
2455
2455
  # * +:attach_time+ - (Time)
2456
2456
  # * +:delete_on_termination+ - (Boolean)
2457
2457
 
2458
+ # @!method detach_vpn_gateway(options = {})
2458
2459
  # Calls the DetachVpnGateway API operation.
2459
- # @method detach_vpn_gateway(options = {})
2460
2460
  # @param [Hash] options
2461
2461
  # * +:vpn_gateway_id+ - *required* - (String) The ID of the VPN gateway
2462
2462
  # to detach from the VPC.
@@ -2464,15 +2464,15 @@ module AWS
2464
2464
  # VPN gateway from.
2465
2465
  # @return [Core::Response]
2466
2466
 
2467
+ # @!method disable_vgw_route_propagation(options = {})
2467
2468
  # Calls the DisableVgwRoutePropagation API operation.
2468
- # @method disable_vgw_route_propagation(options = {})
2469
2469
  # @param [Hash] options
2470
2470
  # * +:route_table_id+ - *required* - (String)
2471
2471
  # * +:gateway_id+ - *required* - (String)
2472
2472
  # @return [Core::Response]
2473
2473
 
2474
+ # @!method disassociate_address(options = {})
2474
2475
  # Calls the DisassociateAddress API operation.
2475
- # @method disassociate_address(options = {})
2476
2476
  # @param [Hash] options
2477
2477
  # * +:public_ip+ - (String) The elastic IP address that you are
2478
2478
  # disassociating from the instance.
@@ -2480,29 +2480,29 @@ module AWS
2480
2480
  # VPC elastic IP address you want to disassociate.
2481
2481
  # @return [Core::Response]
2482
2482
 
2483
+ # @!method disassociate_route_table(options = {})
2483
2484
  # Calls the DisassociateRouteTable API operation.
2484
- # @method disassociate_route_table(options = {})
2485
2485
  # @param [Hash] options
2486
2486
  # * +:association_id+ - *required* - (String) The association ID
2487
2487
  # representing the current association between the route table and
2488
2488
  # subnet.
2489
2489
  # @return [Core::Response]
2490
2490
 
2491
+ # @!method enable_vgw_route_propagation(options = {})
2491
2492
  # Calls the EnableVgwRoutePropagation API operation.
2492
- # @method enable_vgw_route_propagation(options = {})
2493
2493
  # @param [Hash] options
2494
2494
  # * +:route_table_id+ - *required* - (String)
2495
2495
  # * +:gateway_id+ - *required* - (String)
2496
2496
  # @return [Core::Response]
2497
2497
 
2498
+ # @!method enable_volume_io(options = {})
2498
2499
  # Calls the EnableVolumeIO API operation.
2499
- # @method enable_volume_io(options = {})
2500
2500
  # @param [Hash] options
2501
2501
  # * +:volume_id+ - *required* - (String)
2502
2502
  # @return [Core::Response]
2503
2503
 
2504
+ # @!method get_console_output(options = {})
2504
2505
  # Calls the GetConsoleOutput API operation.
2505
- # @method get_console_output(options = {})
2506
2506
  # @param [Hash] options
2507
2507
  # * +:instance_id+ - *required* - (String) The ID of the instance for
2508
2508
  # which you want console output.
@@ -2513,8 +2513,8 @@ module AWS
2513
2513
  # * +:timestamp+ - (Time)
2514
2514
  # * +:output+ - (String)
2515
2515
 
2516
+ # @!method get_password_data(options = {})
2516
2517
  # Calls the GetPasswordData API operation.
2517
- # @method get_password_data(options = {})
2518
2518
  # @param [Hash] options
2519
2519
  # * +:instance_id+ - *required* - (String) The ID of the instance for
2520
2520
  # which you want the Windows administrator password.
@@ -2525,8 +2525,8 @@ module AWS
2525
2525
  # * +:timestamp+ - (Time)
2526
2526
  # * +:password_data+ - (String)
2527
2527
 
2528
+ # @!method import_instance(options = {})
2528
2529
  # Calls the ImportInstance API operation.
2529
- # @method import_instance(options = {})
2530
2530
  # @param [Hash] options
2531
2531
  # * +:description+ - (String)
2532
2532
  # * +:launch_specification+ - (Hash)
@@ -2620,8 +2620,8 @@ module AWS
2620
2620
  # * +:key+ - (String)
2621
2621
  # * +:value+ - (String)
2622
2622
 
2623
+ # @!method import_key_pair(options = {})
2623
2624
  # Calls the ImportKeyPair API operation.
2624
- # @method import_key_pair(options = {})
2625
2625
  # @param [Hash] options
2626
2626
  # * +:key_name+ - *required* - (String) The unique name for the key
2627
2627
  # pair.
@@ -2633,8 +2633,8 @@ module AWS
2633
2633
  # * +:key_name+ - (String)
2634
2634
  # * +:key_fingerprint+ - (String)
2635
2635
 
2636
+ # @!method import_volume(options = {})
2636
2637
  # Calls the ImportVolume API operation.
2637
- # @method import_volume(options = {})
2638
2638
  # @param [Hash] options
2639
2639
  # * +:availability_zone+ - (String)
2640
2640
  # * +:image+ - (Hash)
@@ -2686,8 +2686,8 @@ module AWS
2686
2686
  # * +:key+ - (String)
2687
2687
  # * +:value+ - (String)
2688
2688
 
2689
+ # @!method modify_image_attribute(options = {})
2689
2690
  # Calls the ModifyImageAttribute API operation.
2690
- # @method modify_image_attribute(options = {})
2691
2691
  # @param [Hash] options
2692
2692
  # * +:image_id+ - *required* - (String) The ID of the AMI whose
2693
2693
  # attribute you want to modify.
@@ -2723,8 +2723,8 @@ module AWS
2723
2723
  # * +:value+ - (String) String value
2724
2724
  # @return [Core::Response]
2725
2725
 
2726
+ # @!method modify_instance_attribute(options = {})
2726
2727
  # Calls the ModifyInstanceAttribute API operation.
2727
- # @method modify_instance_attribute(options = {})
2728
2728
  # @param [Hash] options
2729
2729
  # * +:instance_id+ - *required* - (String) The ID of the instance whose
2730
2730
  # attribute is being modified.
@@ -2772,8 +2772,8 @@ module AWS
2772
2772
  # * +:value+ - (Boolean) Boolean value
2773
2773
  # @return [Core::Response]
2774
2774
 
2775
+ # @!method modify_network_interface_attribute(options = {})
2775
2776
  # Calls the ModifyNetworkInterfaceAttribute API operation.
2776
- # @method modify_network_interface_attribute(options = {})
2777
2777
  # @param [Hash] options
2778
2778
  # * +:network_interface_id+ - *required* - (String)
2779
2779
  # * +:description+ - (Hash)
@@ -2786,8 +2786,8 @@ module AWS
2786
2786
  # * +:delete_on_termination+ - (Boolean)
2787
2787
  # @return [Core::Response]
2788
2788
 
2789
+ # @!method modify_snapshot_attribute(options = {})
2789
2790
  # Calls the ModifySnapshotAttribute API operation.
2790
- # @method modify_snapshot_attribute(options = {})
2791
2791
  # @param [Hash] options
2792
2792
  # * +:snapshot_id+ - *required* - (String) The ID of the EBS snapshot
2793
2793
  # whose attributes are being modified.
@@ -2816,15 +2816,15 @@ module AWS
2816
2816
  # from the snapshot (currently supports "all").
2817
2817
  # @return [Core::Response]
2818
2818
 
2819
+ # @!method modify_volume_attribute(options = {})
2819
2820
  # Calls the ModifyVolumeAttribute API operation.
2820
- # @method modify_volume_attribute(options = {})
2821
2821
  # @param [Hash] options
2822
2822
  # * +:volume_id+ - *required* - (String)
2823
2823
  # * +:auto_enable_io+ - (Boolean)
2824
2824
  # @return [Core::Response]
2825
2825
 
2826
+ # @!method monitor_instances(options = {})
2826
2827
  # Calls the MonitorInstances API operation.
2827
- # @method monitor_instances(options = {})
2828
2828
  # @param [Hash] options
2829
2829
  # * +:instance_ids+ - *required* - (Array<String>) The list of Amazon
2830
2830
  # EC2 instances on which to enable monitoring.
@@ -2836,8 +2836,8 @@ module AWS
2836
2836
  # * +:monitoring+ - (Hash)
2837
2837
  # * +:state+ - (String)
2838
2838
 
2839
+ # @!method purchase_reserved_instances_offering(options = {})
2839
2840
  # Calls the PurchaseReservedInstancesOffering API operation.
2840
- # @method purchase_reserved_instances_offering(options = {})
2841
2841
  # @param [Hash] options
2842
2842
  # * +:reserved_instances_offering_id+ - *required* - (String) The
2843
2843
  # unique ID of the Reserved Instances offering being purchased.
@@ -2851,15 +2851,15 @@ module AWS
2851
2851
  # a hash with the following structure:
2852
2852
  # * +:reserved_instances_id+ - (String)
2853
2853
 
2854
+ # @!method reboot_instances(options = {})
2854
2855
  # Calls the RebootInstances API operation.
2855
- # @method reboot_instances(options = {})
2856
2856
  # @param [Hash] options
2857
2857
  # * +:instance_ids+ - *required* - (Array<String>) The list of
2858
2858
  # instances to terminate.
2859
2859
  # @return [Core::Response]
2860
2860
 
2861
+ # @!method register_image(options = {})
2861
2862
  # Calls the RegisterImage API operation.
2862
- # @method register_image(options = {})
2863
2863
  # @param [Hash] options
2864
2864
  # * +:image_location+ - (String) The full path to your AMI manifest in
2865
2865
  # Amazon S3 storage.
@@ -2901,8 +2901,8 @@ module AWS
2901
2901
  # a hash with the following structure:
2902
2902
  # * +:image_id+ - (String)
2903
2903
 
2904
+ # @!method release_address(options = {})
2904
2905
  # Calls the ReleaseAddress API operation.
2905
- # @method release_address(options = {})
2906
2906
  # @param [Hash] options
2907
2907
  # * +:public_ip+ - (String) The elastic IP address that you are
2908
2908
  # releasing from your account.
@@ -2910,8 +2910,8 @@ module AWS
2910
2910
  # when you allocated the address for use with Amazon VPC.
2911
2911
  # @return [Core::Response]
2912
2912
 
2913
+ # @!method replace_network_acl_association(options = {})
2913
2914
  # Calls the ReplaceNetworkAclAssociation API operation.
2914
- # @method replace_network_acl_association(options = {})
2915
2915
  # @param [Hash] options
2916
2916
  # * +:association_id+ - *required* - (String) The ID representing the
2917
2917
  # current association between the original network ACL and the
@@ -2923,8 +2923,8 @@ module AWS
2923
2923
  # a hash with the following structure:
2924
2924
  # * +:new_association_id+ - (String)
2925
2925
 
2926
+ # @!method replace_network_acl_entry(options = {})
2926
2927
  # Calls the ReplaceNetworkAclEntry API operation.
2927
- # @method replace_network_acl_entry(options = {})
2928
2928
  # @param [Hash] options
2929
2929
  # * +:network_acl_id+ - *required* - (String) ID of the ACL where the
2930
2930
  # entry will be replaced.
@@ -2953,8 +2953,8 @@ module AWS
2953
2953
  # specifying tcp or udp for the protocol.
2954
2954
  # @return [Core::Response]
2955
2955
 
2956
+ # @!method replace_route(options = {})
2956
2957
  # Calls the ReplaceRoute API operation.
2957
- # @method replace_route(options = {})
2958
2958
  # @param [Hash] options
2959
2959
  # * +:route_table_id+ - *required* - (String) The ID of the route table
2960
2960
  # where the route will be replaced.
@@ -2968,8 +2968,8 @@ module AWS
2968
2968
  # * +:network_interface_id+ - (String)
2969
2969
  # @return [Core::Response]
2970
2970
 
2971
+ # @!method replace_route_table_association(options = {})
2971
2972
  # Calls the ReplaceRouteTableAssociation API operation.
2972
- # @method replace_route_table_association(options = {})
2973
2973
  # @param [Hash] options
2974
2974
  # * +:association_id+ - *required* - (String) The ID representing the
2975
2975
  # current association between the original route table and the
@@ -2981,8 +2981,8 @@ module AWS
2981
2981
  # a hash with the following structure:
2982
2982
  # * +:new_association_id+ - (String)
2983
2983
 
2984
+ # @!method report_instance_status(options = {})
2984
2985
  # Calls the ReportInstanceStatus API operation.
2985
- # @method report_instance_status(options = {})
2986
2986
  # @param [Hash] options
2987
2987
  # * +:instances+ - (Array<String>)
2988
2988
  # * +:status+ - (String)
@@ -2992,8 +2992,8 @@ module AWS
2992
2992
  # * +:description+ - (String)
2993
2993
  # @return [Core::Response]
2994
2994
 
2995
+ # @!method request_spot_instances(options = {})
2995
2996
  # Calls the RequestSpotInstances API operation.
2996
- # @method request_spot_instances(options = {})
2997
2997
  # @param [Hash] options
2998
2998
  # * +:spot_price+ - *required* - (String) Specifies the maximum hourly
2999
2999
  # price for any Spot Instance launched to fulfill the request.
@@ -3146,8 +3146,8 @@ module AWS
3146
3146
  # * +:value+ - (String)
3147
3147
  # * +:launched_availability_zone+ - (String)
3148
3148
 
3149
+ # @!method reset_image_attribute(options = {})
3149
3150
  # Calls the ResetImageAttribute API operation.
3150
- # @method reset_image_attribute(options = {})
3151
3151
  # @param [Hash] options
3152
3152
  # * +:image_id+ - *required* - (String) The ID of the AMI whose
3153
3153
  # attribute is being reset.
@@ -3155,8 +3155,8 @@ module AWS
3155
3155
  # being reset. Available attribute names: launchPermission
3156
3156
  # @return [Core::Response]
3157
3157
 
3158
+ # @!method reset_instance_attribute(options = {})
3158
3159
  # Calls the ResetInstanceAttribute API operation.
3159
- # @method reset_instance_attribute(options = {})
3160
3160
  # @param [Hash] options
3161
3161
  # * +:instance_id+ - *required* - (String) The ID of the Amazon EC2
3162
3162
  # instance whose attribute is being reset.
@@ -3164,15 +3164,15 @@ module AWS
3164
3164
  # being reset. Available attribute names: kernel, ramdisk
3165
3165
  # @return [Core::Response]
3166
3166
 
3167
+ # @!method reset_network_interface_attribute(options = {})
3167
3168
  # Calls the ResetNetworkInterfaceAttribute API operation.
3168
- # @method reset_network_interface_attribute(options = {})
3169
3169
  # @param [Hash] options
3170
3170
  # * +:network_interface_id+ - *required* - (String)
3171
3171
  # * +:source_dest_check+ - (String)
3172
3172
  # @return [Core::Response]
3173
3173
 
3174
+ # @!method reset_snapshot_attribute(options = {})
3174
3175
  # Calls the ResetSnapshotAttribute API operation.
3175
- # @method reset_snapshot_attribute(options = {})
3176
3176
  # @param [Hash] options
3177
3177
  # * +:snapshot_id+ - *required* - (String) The ID of the snapshot whose
3178
3178
  # attribute is being reset.
@@ -3180,8 +3180,8 @@ module AWS
3180
3180
  # being reset. Available attribute names: createVolumePermission
3181
3181
  # @return [Core::Response]
3182
3182
 
3183
+ # @!method revoke_security_group_egress(options = {})
3183
3184
  # Calls the RevokeSecurityGroupEgress API operation.
3184
- # @method revoke_security_group_egress(options = {})
3185
3185
  # @param [Hash] options
3186
3186
  # * +:group_id+ - *required* - (String) ID of the VPC security group to
3187
3187
  # modify.
@@ -3217,8 +3217,8 @@ module AWS
3217
3217
  # * +:cidr_ip+ - (String) The list of CIDR IP ranges.
3218
3218
  # @return [Core::Response]
3219
3219
 
3220
+ # @!method revoke_security_group_ingress(options = {})
3220
3221
  # Calls the RevokeSecurityGroupIngress API operation.
3221
- # @method revoke_security_group_ingress(options = {})
3222
3222
  # @param [Hash] options
3223
3223
  # * +:group_name+ - (String) Name of the standard (EC2) security group
3224
3224
  # to modify. The group must belong to your account. Can be used
@@ -3261,8 +3261,8 @@ module AWS
3261
3261
  # * +:cidr_ip+ - (String) The list of CIDR IP ranges.
3262
3262
  # @return [Core::Response]
3263
3263
 
3264
+ # @!method run_instances(options = {})
3264
3265
  # Calls the RunInstances API operation.
3265
- # @method run_instances(options = {})
3266
3266
  # @param [Hash] options
3267
3267
  # * +:image_id+ - *required* - (String) Unique ID of a machine image,
3268
3268
  # returned by a call to DescribeImages.
@@ -3453,8 +3453,8 @@ module AWS
3453
3453
  # * +:id+ - (String)
3454
3454
  # * +:ebs_optimized+ - (Boolean)
3455
3455
 
3456
+ # @!method start_instances(options = {})
3456
3457
  # Calls the StartInstances API operation.
3457
- # @method start_instances(options = {})
3458
3458
  # @param [Hash] options
3459
3459
  # * +:instance_ids+ - *required* - (Array<String>) The list of Amazon
3460
3460
  # EC2 instances to start.
@@ -3471,8 +3471,8 @@ module AWS
3471
3471
  # * +:code+ - (Integer)
3472
3472
  # * +:name+ - (String)
3473
3473
 
3474
+ # @!method stop_instances(options = {})
3474
3475
  # Calls the StopInstances API operation.
3475
- # @method stop_instances(options = {})
3476
3476
  # @param [Hash] options
3477
3477
  # * +:instance_ids+ - *required* - (Array<String>) The list of Amazon
3478
3478
  # EC2 instances to stop.
@@ -3493,8 +3493,8 @@ module AWS
3493
3493
  # * +:code+ - (Integer)
3494
3494
  # * +:name+ - (String)
3495
3495
 
3496
+ # @!method terminate_instances(options = {})
3496
3497
  # Calls the TerminateInstances API operation.
3497
- # @method terminate_instances(options = {})
3498
3498
  # @param [Hash] options
3499
3499
  # * +:instance_ids+ - *required* - (Array<String>) The list of
3500
3500
  # instances to terminate.
@@ -3510,14 +3510,15 @@ module AWS
3510
3510
  # * +:code+ - (Integer)
3511
3511
  # * +:name+ - (String)
3512
3512
 
3513
+ # @!method unassign_private_ip_addresses(options = {})
3513
3514
  # Calls the UnassignPrivateIpAddresses API operation.
3514
- # @method unassign_private_ip_addresses(options = {})
3515
3515
  # @param [Hash] options
3516
3516
  # * +:network_interface_id+ - *required* - (String)
3517
3517
  # * +:private_ip_addresses+ - *required* - (Array<String>)
3518
3518
  # @return [Core::Response]
3519
3519
 
3520
- # @method unmonitor_instances(options = {})
3520
+ # @!method unmonitor_instances(options = {})
3521
+ # Calls the UnmonitorInstances API operation.
3521
3522
  # @param [Hash] options
3522
3523
  # * +:instance_ids+ - *required* - (Array<String>) The list of Amazon
3523
3524
  # EC2 instances on which to disable monitoring.