aws-sdk 1.9.5 → 1.10.0
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.
- data/lib/aws/api_config/DynamoDB-2012-08-10.yml +4 -0
 - data/lib/aws/api_config/EC2-2013-02-01.yml +1 -1
 - data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +948 -19
 - data/lib/aws/api_config/OpsWorks-2013-02-18.yml +83 -2
 - data/lib/aws/auto_scaling/client.rb +15 -0
 - data/lib/aws/cloud_formation/client.rb +11 -0
 - data/lib/aws/cloud_front/client.rb +58 -40
 - data/lib/aws/cloud_search/client.rb +20 -0
 - data/lib/aws/cloud_watch/client.rb +5 -0
 - data/lib/aws/core.rb +5 -4
 - data/lib/aws/core/configuration.rb +3 -1
 - data/lib/aws/core/policy.rb +27 -1
 - data/lib/aws/data_pipeline/client.rb +12 -0
 - data/lib/aws/direct_connect/client.rb +11 -0
 - data/lib/aws/dynamo_db/client.rb +17 -0
 - data/lib/aws/dynamo_db/client_v2.rb +905 -417
 - data/lib/aws/ec2.rb +1 -1
 - data/lib/aws/ec2/client.rb +88 -0
 - data/lib/aws/ec2/instance.rb +3 -1
 - data/lib/aws/ec2/security_group.rb +1 -1
 - data/lib/aws/elastic_beanstalk/client.rb +21 -0
 - data/lib/aws/elastic_transcoder/client.rb +681 -114
 - data/lib/aws/elasticache/client.rb +23 -0
 - data/lib/aws/elb/client.rb +13 -0
 - data/lib/aws/emr/client.rb +3 -0
 - data/lib/aws/glacier/client.rb +7 -0
 - data/lib/aws/iam/client.rb +35 -0
 - data/lib/aws/import_export/client.rb +5 -0
 - data/lib/aws/ops_works/client.rb +718 -238
 - data/lib/aws/rds/client.rb +46 -0
 - data/lib/aws/redshift/client.rb +30 -0
 - data/lib/aws/route_53/client.rb +10 -0
 - data/lib/aws/s3.rb +1 -1
 - data/lib/aws/s3/client.rb +42 -27
 - data/lib/aws/s3/client/xml.rb +10 -0
 - data/lib/aws/s3/multipart_upload.rb +43 -16
 - data/lib/aws/s3/s3_object.rb +61 -26
 - data/lib/aws/s3/uploaded_part.rb +3 -1
 - data/lib/aws/s3/uploaded_part_collection.rb +1 -1
 - data/lib/aws/simple_db/client.rb +10 -0
 - data/lib/aws/simple_email_service/client.rb +11 -0
 - data/lib/aws/simple_workflow/client.rb +18 -0
 - data/lib/aws/sns/client.rb +9 -0
 - data/lib/aws/sqs/client.rb +9 -0
 - data/lib/aws/storage_gateway/client.rb +72 -37
 - data/lib/aws/sts/client.rb +3 -0
 - data/lib/aws/version.rb +1 -1
 - metadata +17 -9
 - checksums.yaml +0 -7
 
    
        data/lib/aws/ec2.rb
    CHANGED
    
    
    
        data/lib/aws/ec2/client.rb
    CHANGED
    
    | 
         @@ -77,6 +77,7 @@ module AWS 
     | 
|
| 
       77 
77 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       78 
78 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       79 
79 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 80 
     | 
    
         
            +
                  #
         
     | 
| 
       80 
81 
     | 
    
         
             
                  #   * `:public_ip` - (String)
         
     | 
| 
       81 
82 
     | 
    
         
             
                  #   * `:domain` - (String)
         
     | 
| 
       82 
83 
     | 
    
         
             
                  #   * `:allocation_id` - (String)
         
     | 
| 
         @@ -105,6 +106,7 @@ module AWS 
     | 
|
| 
       105 
106 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       106 
107 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       107 
108 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 109 
     | 
    
         
            +
                  #
         
     | 
| 
       108 
110 
     | 
    
         
             
                  #   * `:association_id` - (String)
         
     | 
| 
       109 
111 
     | 
    
         | 
| 
       110 
112 
     | 
    
         
             
                  # @!method associate_dhcp_options(options = {})
         
     | 
| 
         @@ -126,6 +128,7 @@ module AWS 
     | 
|
| 
       126 
128 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       127 
129 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       128 
130 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 131 
     | 
    
         
            +
                  #
         
     | 
| 
       129 
132 
     | 
    
         
             
                  #   * `:association_id` - (String)
         
     | 
| 
       130 
133 
     | 
    
         | 
| 
       131 
134 
     | 
    
         
             
                  # @!method attach_internet_gateway(options = {})
         
     | 
| 
         @@ -145,6 +148,7 @@ module AWS 
     | 
|
| 
       145 
148 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       146 
149 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       147 
150 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 151 
     | 
    
         
            +
                  #
         
     | 
| 
       148 
152 
     | 
    
         
             
                  #   * `:attachment_id` - (String)
         
     | 
| 
       149 
153 
     | 
    
         | 
| 
       150 
154 
     | 
    
         
             
                  # @!method attach_volume(options = {})
         
     | 
| 
         @@ -161,6 +165,7 @@ module AWS 
     | 
|
| 
       161 
165 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       162 
166 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       163 
167 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 168 
     | 
    
         
            +
                  #
         
     | 
| 
       164 
169 
     | 
    
         
             
                  #   * `:volume_id` - (String)
         
     | 
| 
       165 
170 
     | 
    
         
             
                  #   * `:instance_id` - (String)
         
     | 
| 
       166 
171 
     | 
    
         
             
                  #   * `:device` - (String)
         
     | 
| 
         @@ -178,6 +183,7 @@ module AWS 
     | 
|
| 
       178 
183 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       179 
184 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       180 
185 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 186 
     | 
    
         
            +
                  #
         
     | 
| 
       181 
187 
     | 
    
         
             
                  #   * `:attachment` - (Hash)
         
     | 
| 
       182 
188 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
       183 
189 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -285,6 +291,7 @@ module AWS 
     | 
|
| 
       285 
291 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       286 
292 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       287 
293 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 294 
     | 
    
         
            +
                  #
         
     | 
| 
       288 
295 
     | 
    
         
             
                  #   * `:bundle_instance_task` - (Hash)
         
     | 
| 
       289 
296 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       290 
297 
     | 
    
         
             
                  #     * `:bundle_id` - (String)
         
     | 
| 
         @@ -311,6 +318,7 @@ module AWS 
     | 
|
| 
       311 
318 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       312 
319 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       313 
320 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 321 
     | 
    
         
            +
                  #
         
     | 
| 
       314 
322 
     | 
    
         
             
                  #   * `:bundle_instance_task` - (Hash)
         
     | 
| 
       315 
323 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       316 
324 
     | 
    
         
             
                  #     * `:bundle_id` - (String)
         
     | 
| 
         @@ -349,6 +357,7 @@ module AWS 
     | 
|
| 
       349 
357 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       350 
358 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       351 
359 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 360 
     | 
    
         
            +
                  #
         
     | 
| 
       352 
361 
     | 
    
         
             
                  #   * `:reserved_instances_listings_set` - (Array<Hash>)
         
     | 
| 
       353 
362 
     | 
    
         
             
                  #     * `:reserved_instances_listing_id` - (String)
         
     | 
| 
       354 
363 
     | 
    
         
             
                  #     * `:reserved_instances_id` - (String)
         
     | 
| 
         @@ -377,6 +386,7 @@ module AWS 
     | 
|
| 
       377 
386 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       378 
387 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       379 
388 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 389 
     | 
    
         
            +
                  #
         
     | 
| 
       380 
390 
     | 
    
         
             
                  #   * `:spot_instance_request_set` - (Array<Hash>)
         
     | 
| 
       381 
391 
     | 
    
         
             
                  #     * `:spot_instance_request_id` - (String)
         
     | 
| 
       382 
392 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -391,6 +401,7 @@ module AWS 
     | 
|
| 
       391 
401 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       392 
402 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       393 
403 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 404 
     | 
    
         
            +
                  #
         
     | 
| 
       394 
405 
     | 
    
         
             
                  #   * `:owner_id` - (String)
         
     | 
| 
       395 
406 
     | 
    
         | 
| 
       396 
407 
     | 
    
         
             
                  # @!method copy_image(options = {})
         
     | 
| 
         @@ -404,6 +415,7 @@ module AWS 
     | 
|
| 
       404 
415 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       405 
416 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       406 
417 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 418 
     | 
    
         
            +
                  #
         
     | 
| 
       407 
419 
     | 
    
         
             
                  #   * `:image_id` - (String)
         
     | 
| 
       408 
420 
     | 
    
         | 
| 
       409 
421 
     | 
    
         
             
                  # @!method copy_snapshot(options = {})
         
     | 
| 
         @@ -415,6 +427,7 @@ module AWS 
     | 
|
| 
       415 
427 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       416 
428 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       417 
429 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 430 
     | 
    
         
            +
                  #
         
     | 
| 
       418 
431 
     | 
    
         
             
                  #   * `:snapshot_id` - (String)
         
     | 
| 
       419 
432 
     | 
    
         | 
| 
       420 
433 
     | 
    
         
             
                  # @!method create_customer_gateway(options = {})
         
     | 
| 
         @@ -430,6 +443,7 @@ module AWS 
     | 
|
| 
       430 
443 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       431 
444 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       432 
445 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 446 
     | 
    
         
            +
                  #
         
     | 
| 
       433 
447 
     | 
    
         
             
                  #   * `:customer_gateway` - (Hash)
         
     | 
| 
       434 
448 
     | 
    
         
             
                  #     * `:customer_gateway_id` - (String)
         
     | 
| 
       435 
449 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -451,6 +465,7 @@ module AWS 
     | 
|
| 
       451 
465 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       452 
466 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       453 
467 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 468 
     | 
    
         
            +
                  #
         
     | 
| 
       454 
469 
     | 
    
         
             
                  #   * `:dhcp_options` - (Hash)
         
     | 
| 
       455 
470 
     | 
    
         
             
                  #     * `:dhcp_options_id` - (String)
         
     | 
| 
       456 
471 
     | 
    
         
             
                  #     * `:dhcp_configuration_set` - (Array<Hash>)
         
     | 
| 
         @@ -496,6 +511,7 @@ module AWS 
     | 
|
| 
       496 
511 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       497 
512 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       498 
513 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 514 
     | 
    
         
            +
                  #
         
     | 
| 
       499 
515 
     | 
    
         
             
                  #   * `:image_id` - (String)
         
     | 
| 
       500 
516 
     | 
    
         | 
| 
       501 
517 
     | 
    
         
             
                  # @!method create_instance_export_task(options = {})
         
     | 
| 
         @@ -517,6 +533,7 @@ module AWS 
     | 
|
| 
       517 
533 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       518 
534 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       519 
535 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 536 
     | 
    
         
            +
                  #
         
     | 
| 
       520 
537 
     | 
    
         
             
                  #   * `:export_task` - (Hash)
         
     | 
| 
       521 
538 
     | 
    
         
             
                  #     * `:export_task_id` - (String)
         
     | 
| 
       522 
539 
     | 
    
         
             
                  #     * `:description` - (String)
         
     | 
| 
         @@ -537,6 +554,7 @@ module AWS 
     | 
|
| 
       537 
554 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       538 
555 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       539 
556 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 557 
     | 
    
         
            +
                  #
         
     | 
| 
       540 
558 
     | 
    
         
             
                  #   * `:internet_gateway` - (Hash)
         
     | 
| 
       541 
559 
     | 
    
         
             
                  #     * `:internet_gateway_id` - (String)
         
     | 
| 
       542 
560 
     | 
    
         
             
                  #     * `:attachment_set` - (Array<Hash>)
         
     | 
| 
         @@ -554,6 +572,7 @@ module AWS 
     | 
|
| 
       554 
572 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       555 
573 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       556 
574 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 575 
     | 
    
         
            +
                  #
         
     | 
| 
       557 
576 
     | 
    
         
             
                  #   * `:key_pair` - (Hash)
         
     | 
| 
       558 
577 
     | 
    
         
             
                  #     * `:key_name` - (String)
         
     | 
| 
       559 
578 
     | 
    
         
             
                  #     * `:key_fingerprint` - (String)
         
     | 
| 
         @@ -567,6 +586,7 @@ module AWS 
     | 
|
| 
       567 
586 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       568 
587 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       569 
588 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 589 
     | 
    
         
            +
                  #
         
     | 
| 
       570 
590 
     | 
    
         
             
                  #   * `:network_acl` - (Hash)
         
     | 
| 
       571 
591 
     | 
    
         
             
                  #     * `:network_acl_id` - (String)
         
     | 
| 
       572 
592 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
         @@ -638,6 +658,7 @@ module AWS 
     | 
|
| 
       638 
658 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       639 
659 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       640 
660 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 661 
     | 
    
         
            +
                  #
         
     | 
| 
       641 
662 
     | 
    
         
             
                  #   * `:network_interface` - (Hash)
         
     | 
| 
       642 
663 
     | 
    
         
             
                  #     * `:network_interface_id` - (String)
         
     | 
| 
       643 
664 
     | 
    
         
             
                  #     * `:subnet_id` - (String)
         
     | 
| 
         @@ -704,6 +725,7 @@ module AWS 
     | 
|
| 
       704 
725 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       705 
726 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       706 
727 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 728 
     | 
    
         
            +
                  #
         
     | 
| 
       707 
729 
     | 
    
         
             
                  #   * `:reserved_instances_listings_set` - (Array<Hash>)
         
     | 
| 
       708 
730 
     | 
    
         
             
                  #     * `:reserved_instances_listing_id` - (String)
         
     | 
| 
       709 
731 
     | 
    
         
             
                  #     * `:reserved_instances_id` - (String)
         
     | 
| 
         @@ -748,6 +770,7 @@ module AWS 
     | 
|
| 
       748 
770 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       749 
771 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       750 
772 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 773 
     | 
    
         
            +
                  #
         
     | 
| 
       751 
774 
     | 
    
         
             
                  #   * `:route_table` - (Hash)
         
     | 
| 
       752 
775 
     | 
    
         
             
                  #     * `:route_table_id` - (String)
         
     | 
| 
       753 
776 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
         @@ -779,6 +802,7 @@ module AWS 
     | 
|
| 
       779 
802 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       780 
803 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       781 
804 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 805 
     | 
    
         
            +
                  #
         
     | 
| 
       782 
806 
     | 
    
         
             
                  #   * `:group_id` - (String)
         
     | 
| 
       783 
807 
     | 
    
         | 
| 
       784 
808 
     | 
    
         
             
                  # @!method create_snapshot(options = {})
         
     | 
| 
         @@ -790,6 +814,7 @@ module AWS 
     | 
|
| 
       790 
814 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       791 
815 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       792 
816 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 817 
     | 
    
         
            +
                  #
         
     | 
| 
       793 
818 
     | 
    
         
             
                  #   * `:snapshot_id` - (String)
         
     | 
| 
       794 
819 
     | 
    
         
             
                  #   * `:volume_id` - (String)
         
     | 
| 
       795 
820 
     | 
    
         
             
                  #   * `:status` - (String)
         
     | 
| 
         @@ -813,6 +838,7 @@ module AWS 
     | 
|
| 
       813 
838 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       814 
839 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       815 
840 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 841 
     | 
    
         
            +
                  #
         
     | 
| 
       816 
842 
     | 
    
         
             
                  #   * `:spot_datafeed_subscription` - (Hash)
         
     | 
| 
       817 
843 
     | 
    
         
             
                  #     * `:owner_id` - (String)
         
     | 
| 
       818 
844 
     | 
    
         
             
                  #     * `:bucket` - (String)
         
     | 
| 
         @@ -834,6 +860,7 @@ module AWS 
     | 
|
| 
       834 
860 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       835 
861 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       836 
862 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 863 
     | 
    
         
            +
                  #
         
     | 
| 
       837 
864 
     | 
    
         
             
                  #   * `:subnet` - (Hash)
         
     | 
| 
       838 
865 
     | 
    
         
             
                  #     * `:subnet_id` - (String)
         
     | 
| 
       839 
866 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -876,6 +903,7 @@ module AWS 
     | 
|
| 
       876 
903 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       877 
904 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       878 
905 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 906 
     | 
    
         
            +
                  #
         
     | 
| 
       879 
907 
     | 
    
         
             
                  #   * `:volume_id` - (String)
         
     | 
| 
       880 
908 
     | 
    
         
             
                  #   * `:size` - (Integer)
         
     | 
| 
       881 
909 
     | 
    
         
             
                  #   * `:snapshot_id` - (String)
         
     | 
| 
         @@ -906,6 +934,7 @@ module AWS 
     | 
|
| 
       906 
934 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       907 
935 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       908 
936 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 937 
     | 
    
         
            +
                  #
         
     | 
| 
       909 
938 
     | 
    
         
             
                  #   * `:vpc` - (Hash)
         
     | 
| 
       910 
939 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
       911 
940 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -930,6 +959,7 @@ module AWS 
     | 
|
| 
       930 
959 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       931 
960 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       932 
961 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 962 
     | 
    
         
            +
                  #
         
     | 
| 
       933 
963 
     | 
    
         
             
                  #   * `:vpn_connection` - (Hash)
         
     | 
| 
       934 
964 
     | 
    
         
             
                  #     * `:vpn_connection_id` - (String)
         
     | 
| 
       935 
965 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -970,6 +1000,7 @@ module AWS 
     | 
|
| 
       970 
1000 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       971 
1001 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       972 
1002 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1003 
     | 
    
         
            +
                  #
         
     | 
| 
       973 
1004 
     | 
    
         
             
                  #   * `:vpn_gateway` - (Hash)
         
     | 
| 
       974 
1005 
     | 
    
         
             
                  #     * `:vpn_gateway_id` - (String)
         
     | 
| 
       975 
1006 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -1157,6 +1188,7 @@ module AWS 
     | 
|
| 
       1157 
1188 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1158 
1189 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1159 
1190 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1191 
     | 
    
         
            +
                  #
         
     | 
| 
       1160 
1192 
     | 
    
         
             
                  #   * `:account_attribute_set` - (Array<Hash>)
         
     | 
| 
       1161 
1193 
     | 
    
         
             
                  #     * `:attribute_name` - (String)
         
     | 
| 
       1162 
1194 
     | 
    
         
             
                  #     * `:attribute_value_set` - (Array<Hash>)
         
     | 
| 
         @@ -1177,6 +1209,7 @@ module AWS 
     | 
|
| 
       1177 
1209 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1178 
1210 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1179 
1211 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1212 
     | 
    
         
            +
                  #
         
     | 
| 
       1180 
1213 
     | 
    
         
             
                  #   * `:addresses_set` - (Array<Hash>)
         
     | 
| 
       1181 
1214 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       1182 
1215 
     | 
    
         
             
                  #     * `:public_ip` - (String)
         
     | 
| 
         @@ -1202,6 +1235,7 @@ module AWS 
     | 
|
| 
       1202 
1235 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1203 
1236 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1204 
1237 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1238 
     | 
    
         
            +
                  #
         
     | 
| 
       1205 
1239 
     | 
    
         
             
                  #   * `:availability_zone_info` - (Array<Hash>)
         
     | 
| 
       1206 
1240 
     | 
    
         
             
                  #     * `:zone_name` - (String)
         
     | 
| 
       1207 
1241 
     | 
    
         
             
                  #     * `:zone_state` - (String)
         
     | 
| 
         @@ -1224,6 +1258,7 @@ module AWS 
     | 
|
| 
       1224 
1258 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1225 
1259 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1226 
1260 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1261 
     | 
    
         
            +
                  #
         
     | 
| 
       1227 
1262 
     | 
    
         
             
                  #   * `:bundle_instance_tasks_set` - (Array<Hash>)
         
     | 
| 
       1228 
1263 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       1229 
1264 
     | 
    
         
             
                  #     * `:bundle_id` - (String)
         
     | 
| 
         @@ -1253,6 +1288,7 @@ module AWS 
     | 
|
| 
       1253 
1288 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1254 
1289 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1255 
1290 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1291 
     | 
    
         
            +
                  #
         
     | 
| 
       1256 
1292 
     | 
    
         
             
                  #   * `:conversion_tasks` - (Array<Hash>)
         
     | 
| 
       1257 
1293 
     | 
    
         
             
                  #     * `:conversion_task_id` - (String)
         
     | 
| 
       1258 
1294 
     | 
    
         
             
                  #     * `:expiration_time` - (String)
         
     | 
| 
         @@ -1307,6 +1343,7 @@ module AWS 
     | 
|
| 
       1307 
1343 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1308 
1344 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1309 
1345 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1346 
     | 
    
         
            +
                  #
         
     | 
| 
       1310 
1347 
     | 
    
         
             
                  #   * `:customer_gateway_set` - (Array<Hash>)
         
     | 
| 
       1311 
1348 
     | 
    
         
             
                  #     * `:customer_gateway_id` - (String)
         
     | 
| 
       1312 
1349 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -1331,6 +1368,7 @@ module AWS 
     | 
|
| 
       1331 
1368 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1332 
1369 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1333 
1370 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1371 
     | 
    
         
            +
                  #
         
     | 
| 
       1334 
1372 
     | 
    
         
             
                  #   * `:dhcp_options_set` - (Array<Hash>)
         
     | 
| 
       1335 
1373 
     | 
    
         
             
                  #     * `:dhcp_options_id` - (String)
         
     | 
| 
       1336 
1374 
     | 
    
         
             
                  #     * `:dhcp_configuration_set` - (Array<Hash>)
         
     | 
| 
         @@ -1347,6 +1385,7 @@ module AWS 
     | 
|
| 
       1347 
1385 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1348 
1386 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1349 
1387 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1388 
     | 
    
         
            +
                  #
         
     | 
| 
       1350 
1389 
     | 
    
         
             
                  #   * `:export_task_set` - (Array<Hash>)
         
     | 
| 
       1351 
1390 
     | 
    
         
             
                  #     * `:export_task_id` - (String)
         
     | 
| 
       1352 
1391 
     | 
    
         
             
                  #     * `:description` - (String)
         
     | 
| 
         @@ -1372,6 +1411,7 @@ module AWS 
     | 
|
| 
       1372 
1411 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1373 
1412 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1374 
1413 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1414 
     | 
    
         
            +
                  #
         
     | 
| 
       1375 
1415 
     | 
    
         
             
                  #   * `:image_id` - (String)
         
     | 
| 
       1376 
1416 
     | 
    
         
             
                  #   * `:launch_permission` - (Array<Hash>)
         
     | 
| 
       1377 
1417 
     | 
    
         
             
                  #     * `:user_id` - (String)
         
     | 
| 
         @@ -1419,6 +1459,7 @@ module AWS 
     | 
|
| 
       1419 
1459 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1420 
1460 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1421 
1461 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1462 
     | 
    
         
            +
                  #
         
     | 
| 
       1422 
1463 
     | 
    
         
             
                  #   * `:images_set` - (Array<Hash>)
         
     | 
| 
       1423 
1464 
     | 
    
         
             
                  #     * `:image_id` - (String)
         
     | 
| 
       1424 
1465 
     | 
    
         
             
                  #     * `:image_location` - (String)
         
     | 
| 
         @@ -1481,6 +1522,7 @@ module AWS 
     | 
|
| 
       1481 
1522 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1482 
1523 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1483 
1524 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1525 
     | 
    
         
            +
                  #
         
     | 
| 
       1484 
1526 
     | 
    
         
             
                  #   * `:instance_id` - (String)
         
     | 
| 
       1485 
1527 
     | 
    
         
             
                  #   * `:instance_type` - (Hash)
         
     | 
| 
       1486 
1528 
     | 
    
         
             
                  #     * `:value` - (String)
         
     | 
| 
         @@ -1527,6 +1569,7 @@ module AWS 
     | 
|
| 
       1527 
1569 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1528 
1570 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1529 
1571 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1572 
     | 
    
         
            +
                  #
         
     | 
| 
       1530 
1573 
     | 
    
         
             
                  #   * `:instance_status_set` - (Array<Hash>)
         
     | 
| 
       1531 
1574 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       1532 
1575 
     | 
    
         
             
                  #     * `:availability_zone` - (String)
         
     | 
| 
         @@ -1566,6 +1609,7 @@ module AWS 
     | 
|
| 
       1566 
1609 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1567 
1610 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1568 
1611 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1612 
     | 
    
         
            +
                  #
         
     | 
| 
       1569 
1613 
     | 
    
         
             
                  #   * `:reservation_set` - (Array<Hash>)
         
     | 
| 
       1570 
1614 
     | 
    
         
             
                  #     * `:reservation_id` - (String)
         
     | 
| 
       1571 
1615 
     | 
    
         
             
                  #     * `:owner_id` - (String)
         
     | 
| 
         @@ -1680,6 +1724,7 @@ module AWS 
     | 
|
| 
       1680 
1724 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1681 
1725 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1682 
1726 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1727 
     | 
    
         
            +
                  #
         
     | 
| 
       1683 
1728 
     | 
    
         
             
                  #   * `:internet_gateway_set` - (Array<Hash>)
         
     | 
| 
       1684 
1729 
     | 
    
         
             
                  #     * `:internet_gateway_id` - (String)
         
     | 
| 
       1685 
1730 
     | 
    
         
             
                  #     * `:attachment_set` - (Array<Hash>)
         
     | 
| 
         @@ -1703,6 +1748,7 @@ module AWS 
     | 
|
| 
       1703 
1748 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1704 
1749 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1705 
1750 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1751 
     | 
    
         
            +
                  #
         
     | 
| 
       1706 
1752 
     | 
    
         
             
                  #   * `:key_set` - (Array<Hash>)
         
     | 
| 
       1707 
1753 
     | 
    
         
             
                  #     * `:key_name` - (String)
         
     | 
| 
       1708 
1754 
     | 
    
         
             
                  #     * `:key_fingerprint` - (String)
         
     | 
| 
         @@ -1721,6 +1767,7 @@ module AWS 
     | 
|
| 
       1721 
1767 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1722 
1768 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1723 
1769 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1770 
     | 
    
         
            +
                  #
         
     | 
| 
       1724 
1771 
     | 
    
         
             
                  #   * `:license_set` - (Array<Hash>)
         
     | 
| 
       1725 
1772 
     | 
    
         
             
                  #     * `:license_id` - (String)
         
     | 
| 
       1726 
1773 
     | 
    
         
             
                  #     * `:type` - (String)
         
     | 
| 
         @@ -1748,6 +1795,7 @@ module AWS 
     | 
|
| 
       1748 
1795 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1749 
1796 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1750 
1797 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1798 
     | 
    
         
            +
                  #
         
     | 
| 
       1751 
1799 
     | 
    
         
             
                  #   * `:network_acl_set` - (Array<Hash>)
         
     | 
| 
       1752 
1800 
     | 
    
         
             
                  #     * `:network_acl_id` - (String)
         
     | 
| 
       1753 
1801 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
         @@ -1783,6 +1831,7 @@ module AWS 
     | 
|
| 
       1783 
1831 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1784 
1832 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1785 
1833 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1834 
     | 
    
         
            +
                  #
         
     | 
| 
       1786 
1835 
     | 
    
         
             
                  #   * `:network_interface_id` - (String)
         
     | 
| 
       1787 
1836 
     | 
    
         
             
                  #   * `:description` - (Hash)
         
     | 
| 
       1788 
1837 
     | 
    
         
             
                  #     * `:value` - (String)
         
     | 
| 
         @@ -1811,6 +1860,7 @@ module AWS 
     | 
|
| 
       1811 
1860 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1812 
1861 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1813 
1862 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1863 
     | 
    
         
            +
                  #
         
     | 
| 
       1814 
1864 
     | 
    
         
             
                  #   * `:network_interface_set` - (Array<Hash>)
         
     | 
| 
       1815 
1865 
     | 
    
         
             
                  #     * `:network_interface_id` - (String)
         
     | 
| 
       1816 
1866 
     | 
    
         
             
                  #     * `:subnet_id` - (String)
         
     | 
| 
         @@ -1868,6 +1918,7 @@ module AWS 
     | 
|
| 
       1868 
1918 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1869 
1919 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1870 
1920 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1921 
     | 
    
         
            +
                  #
         
     | 
| 
       1871 
1922 
     | 
    
         
             
                  #   * `:placement_group_set` - (Array<Hash>)
         
     | 
| 
       1872 
1923 
     | 
    
         
             
                  #     * `:group_name` - (String)
         
     | 
| 
       1873 
1924 
     | 
    
         
             
                  #     * `:strategy` - (String)
         
     | 
| 
         @@ -1887,6 +1938,7 @@ module AWS 
     | 
|
| 
       1887 
1938 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1888 
1939 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1889 
1940 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1941 
     | 
    
         
            +
                  #
         
     | 
| 
       1890 
1942 
     | 
    
         
             
                  #   * `:region_info` - (Array<Hash>)
         
     | 
| 
       1891 
1943 
     | 
    
         
             
                  #     * `:region_name` - (String)
         
     | 
| 
       1892 
1944 
     | 
    
         
             
                  #     * `:region_endpoint` - (String)
         
     | 
| 
         @@ -1907,6 +1959,7 @@ module AWS 
     | 
|
| 
       1907 
1959 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1908 
1960 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1909 
1961 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1962 
     | 
    
         
            +
                  #
         
     | 
| 
       1910 
1963 
     | 
    
         
             
                  #   * `:reserved_instances_set` - (Array<Hash>)
         
     | 
| 
       1911 
1964 
     | 
    
         
             
                  #     * `:reserved_instances_id` - (String)
         
     | 
| 
       1912 
1965 
     | 
    
         
             
                  #     * `:instance_type` - (String)
         
     | 
| 
         @@ -1940,6 +1993,7 @@ module AWS 
     | 
|
| 
       1940 
1993 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       1941 
1994 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       1942 
1995 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 1996 
     | 
    
         
            +
                  #
         
     | 
| 
       1943 
1997 
     | 
    
         
             
                  #   * `:reserved_instances_listings_set` - (Array<Hash>)
         
     | 
| 
       1944 
1998 
     | 
    
         
             
                  #     * `:reserved_instances_listing_id` - (String)
         
     | 
| 
       1945 
1999 
     | 
    
         
             
                  #     * `:reserved_instances_id` - (String)
         
     | 
| 
         @@ -2005,6 +2059,7 @@ module AWS 
     | 
|
| 
       2005 
2059 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2006 
2060 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2007 
2061 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2062 
     | 
    
         
            +
                  #
         
     | 
| 
       2008 
2063 
     | 
    
         
             
                  #   * `:reserved_instances_offerings_set` - (Array<Hash>)
         
     | 
| 
       2009 
2064 
     | 
    
         
             
                  #     * `:reserved_instances_offering_id` - (String)
         
     | 
| 
       2010 
2065 
     | 
    
         
             
                  #     * `:instance_type` - (String)
         
     | 
| 
         @@ -2039,6 +2094,7 @@ module AWS 
     | 
|
| 
       2039 
2094 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2040 
2095 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2041 
2096 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2097 
     | 
    
         
            +
                  #
         
     | 
| 
       2042 
2098 
     | 
    
         
             
                  #   * `:route_table_set` - (Array<Hash>)
         
     | 
| 
       2043 
2099 
     | 
    
         
             
                  #     * `:route_table_id` - (String)
         
     | 
| 
       2044 
2100 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
         @@ -2076,6 +2132,7 @@ module AWS 
     | 
|
| 
       2076 
2132 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2077 
2133 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2078 
2134 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2135 
     | 
    
         
            +
                  #
         
     | 
| 
       2079 
2136 
     | 
    
         
             
                  #   * `:security_group_info` - (Array<Hash>)
         
     | 
| 
       2080 
2137 
     | 
    
         
             
                  #     * `:owner_id` - (String)
         
     | 
| 
       2081 
2138 
     | 
    
         
             
                  #     * `:group_name` - (String)
         
     | 
| 
         @@ -2119,6 +2176,7 @@ module AWS 
     | 
|
| 
       2119 
2176 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2120 
2177 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2121 
2178 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2179 
     | 
    
         
            +
                  #
         
     | 
| 
       2122 
2180 
     | 
    
         
             
                  #   * `:snapshot_id` - (String)
         
     | 
| 
       2123 
2181 
     | 
    
         
             
                  #   * `:create_volume_permission` - (Array<Hash>)
         
     | 
| 
       2124 
2182 
     | 
    
         
             
                  #     * `:user_id` - (String)
         
     | 
| 
         @@ -2146,6 +2204,7 @@ module AWS 
     | 
|
| 
       2146 
2204 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2147 
2205 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2148 
2206 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2207 
     | 
    
         
            +
                  #
         
     | 
| 
       2149 
2208 
     | 
    
         
             
                  #   * `:snapshot_set` - (Array<Hash>)
         
     | 
| 
       2150 
2209 
     | 
    
         
             
                  #     * `:snapshot_id` - (String)
         
     | 
| 
       2151 
2210 
     | 
    
         
             
                  #     * `:volume_id` - (String)
         
     | 
| 
         @@ -2166,6 +2225,7 @@ module AWS 
     | 
|
| 
       2166 
2225 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2167 
2226 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2168 
2227 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2228 
     | 
    
         
            +
                  #
         
     | 
| 
       2169 
2229 
     | 
    
         
             
                  #   * `:spot_datafeed_subscription` - (Hash)
         
     | 
| 
       2170 
2230 
     | 
    
         
             
                  #     * `:owner_id` - (String)
         
     | 
| 
       2171 
2231 
     | 
    
         
             
                  #     * `:bucket` - (String)
         
     | 
| 
         @@ -2190,6 +2250,7 @@ module AWS 
     | 
|
| 
       2190 
2250 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2191 
2251 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2192 
2252 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2253 
     | 
    
         
            +
                  #
         
     | 
| 
       2193 
2254 
     | 
    
         
             
                  #   * `:spot_instance_request_set` - (Array<Hash>)
         
     | 
| 
       2194 
2255 
     | 
    
         
             
                  #     * `:spot_instance_request_id` - (String)
         
     | 
| 
       2195 
2256 
     | 
    
         
             
                  #     * `:spot_price` - (String)
         
     | 
| 
         @@ -2281,6 +2342,7 @@ module AWS 
     | 
|
| 
       2281 
2342 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2282 
2343 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2283 
2344 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2345 
     | 
    
         
            +
                  #
         
     | 
| 
       2284 
2346 
     | 
    
         
             
                  #   * `:spot_price_history_set` - (Array<Hash>)
         
     | 
| 
       2285 
2347 
     | 
    
         
             
                  #     * `:instance_type` - (String)
         
     | 
| 
       2286 
2348 
     | 
    
         
             
                  #     * `:product_description` - (String)
         
     | 
| 
         @@ -2302,6 +2364,7 @@ module AWS 
     | 
|
| 
       2302 
2364 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2303 
2365 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2304 
2366 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2367 
     | 
    
         
            +
                  #
         
     | 
| 
       2305 
2368 
     | 
    
         
             
                  #   * `:subnet_set` - (Array<Hash>)
         
     | 
| 
       2306 
2369 
     | 
    
         
             
                  #     * `:subnet_id` - (String)
         
     | 
| 
       2307 
2370 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -2326,6 +2389,7 @@ module AWS 
     | 
|
| 
       2326 
2389 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2327 
2390 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2328 
2391 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2392 
     | 
    
         
            +
                  #
         
     | 
| 
       2329 
2393 
     | 
    
         
             
                  #   * `:tag_set` - (Array<Hash>)
         
     | 
| 
       2330 
2394 
     | 
    
         
             
                  #     * `:resource_id` - (String)
         
     | 
| 
       2331 
2395 
     | 
    
         
             
                  #     * `:resource_type` - (String)
         
     | 
| 
         @@ -2342,6 +2406,7 @@ module AWS 
     | 
|
| 
       2342 
2406 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2343 
2407 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2344 
2408 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2409 
     | 
    
         
            +
                  #
         
     | 
| 
       2345 
2410 
     | 
    
         
             
                  #   * `:volume_id` - (String)
         
     | 
| 
       2346 
2411 
     | 
    
         
             
                  #   * `:auto_enable_io` - (Hash)
         
     | 
| 
       2347 
2412 
     | 
    
         
             
                  #     * `:value` - (Boolean)
         
     | 
| 
         @@ -2362,6 +2427,7 @@ module AWS 
     | 
|
| 
       2362 
2427 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2363 
2428 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2364 
2429 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2430 
     | 
    
         
            +
                  #
         
     | 
| 
       2365 
2431 
     | 
    
         
             
                  #   * `:volume_status_set` - (Array<Hash>)
         
     | 
| 
       2366 
2432 
     | 
    
         
             
                  #     * `:volume_id` - (String)
         
     | 
| 
       2367 
2433 
     | 
    
         
             
                  #     * `:availability_zone` - (String)
         
     | 
| 
         @@ -2397,6 +2463,7 @@ module AWS 
     | 
|
| 
       2397 
2463 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2398 
2464 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2399 
2465 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2466 
     | 
    
         
            +
                  #
         
     | 
| 
       2400 
2467 
     | 
    
         
             
                  #   * `:volume_set` - (Array<Hash>)
         
     | 
| 
       2401 
2468 
     | 
    
         
             
                  #     * `:volume_id` - (String)
         
     | 
| 
       2402 
2469 
     | 
    
         
             
                  #     * `:size` - (Integer)
         
     | 
| 
         @@ -2427,6 +2494,7 @@ module AWS 
     | 
|
| 
       2427 
2494 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2428 
2495 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2429 
2496 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2497 
     | 
    
         
            +
                  #
         
     | 
| 
       2430 
2498 
     | 
    
         
             
                  #   * `:vpc_id` - (String)
         
     | 
| 
       2431 
2499 
     | 
    
         
             
                  #   * `:enable_dns_support` - (Hash)
         
     | 
| 
       2432 
2500 
     | 
    
         
             
                  #     * `:value` - (Boolean)
         
     | 
| 
         @@ -2447,6 +2515,7 @@ module AWS 
     | 
|
| 
       2447 
2515 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2448 
2516 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2449 
2517 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2518 
     | 
    
         
            +
                  #
         
     | 
| 
       2450 
2519 
     | 
    
         
             
                  #   * `:vpc_set` - (Array<Hash>)
         
     | 
| 
       2451 
2520 
     | 
    
         
             
                  #     * `:vpc_id` - (String)
         
     | 
| 
       2452 
2521 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -2473,6 +2542,7 @@ module AWS 
     | 
|
| 
       2473 
2542 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2474 
2543 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2475 
2544 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2545 
     | 
    
         
            +
                  #
         
     | 
| 
       2476 
2546 
     | 
    
         
             
                  #   * `:vpn_connection_set` - (Array<Hash>)
         
     | 
| 
       2477 
2547 
     | 
    
         
             
                  #     * `:vpn_connection_id` - (String)
         
     | 
| 
       2478 
2548 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -2513,6 +2583,7 @@ module AWS 
     | 
|
| 
       2513 
2583 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2514 
2584 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2515 
2585 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2586 
     | 
    
         
            +
                  #
         
     | 
| 
       2516 
2587 
     | 
    
         
             
                  #   * `:vpn_gateway_set` - (Array<Hash>)
         
     | 
| 
       2517 
2588 
     | 
    
         
             
                  #     * `:vpn_gateway_id` - (String)
         
     | 
| 
       2518 
2589 
     | 
    
         
             
                  #     * `:state` - (String)
         
     | 
| 
         @@ -2560,6 +2631,7 @@ module AWS 
     | 
|
| 
       2560 
2631 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2561 
2632 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2562 
2633 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2634 
     | 
    
         
            +
                  #
         
     | 
| 
       2563 
2635 
     | 
    
         
             
                  #   * `:volume_id` - (String)
         
     | 
| 
       2564 
2636 
     | 
    
         
             
                  #   * `:instance_id` - (String)
         
     | 
| 
       2565 
2637 
     | 
    
         
             
                  #   * `:device` - (String)
         
     | 
| 
         @@ -2621,6 +2693,7 @@ module AWS 
     | 
|
| 
       2621 
2693 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2622 
2694 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2623 
2695 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2696 
     | 
    
         
            +
                  #
         
     | 
| 
       2624 
2697 
     | 
    
         
             
                  #   * `:instance_id` - (String)
         
     | 
| 
       2625 
2698 
     | 
    
         
             
                  #   * `:timestamp` - (Time)
         
     | 
| 
       2626 
2699 
     | 
    
         
             
                  #   * `:output` - (String)
         
     | 
| 
         @@ -2633,6 +2706,7 @@ module AWS 
     | 
|
| 
       2633 
2706 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2634 
2707 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2635 
2708 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2709 
     | 
    
         
            +
                  #
         
     | 
| 
       2636 
2710 
     | 
    
         
             
                  #   * `:instance_id` - (String)
         
     | 
| 
       2637 
2711 
     | 
    
         
             
                  #   * `:timestamp` - (Time)
         
     | 
| 
       2638 
2712 
     | 
    
         
             
                  #   * `:password_data` - (String)
         
     | 
| 
         @@ -2712,6 +2786,7 @@ module AWS 
     | 
|
| 
       2712 
2786 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2713 
2787 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2714 
2788 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2789 
     | 
    
         
            +
                  #
         
     | 
| 
       2715 
2790 
     | 
    
         
             
                  #   * `:conversion_task` - (Hash)
         
     | 
| 
       2716 
2791 
     | 
    
         
             
                  #     * `:conversion_task_id` - (String)
         
     | 
| 
       2717 
2792 
     | 
    
         
             
                  #     * `:expiration_time` - (String)
         
     | 
| 
         @@ -2761,6 +2836,7 @@ module AWS 
     | 
|
| 
       2761 
2836 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2762 
2837 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2763 
2838 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2839 
     | 
    
         
            +
                  #
         
     | 
| 
       2764 
2840 
     | 
    
         
             
                  #   * `:key_name` - (String)
         
     | 
| 
       2765 
2841 
     | 
    
         
             
                  #   * `:key_fingerprint` - (String)
         
     | 
| 
       2766 
2842 
     | 
    
         | 
| 
         @@ -2778,6 +2854,7 @@ module AWS 
     | 
|
| 
       2778 
2854 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2779 
2855 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2780 
2856 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 2857 
     | 
    
         
            +
                  #
         
     | 
| 
       2781 
2858 
     | 
    
         
             
                  #   * `:conversion_task` - (Hash)
         
     | 
| 
       2782 
2859 
     | 
    
         
             
                  #     * `:conversion_task_id` - (String)
         
     | 
| 
       2783 
2860 
     | 
    
         
             
                  #     * `:expiration_time` - (String)
         
     | 
| 
         @@ -2987,6 +3064,7 @@ module AWS 
     | 
|
| 
       2987 
3064 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       2988 
3065 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       2989 
3066 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3067 
     | 
    
         
            +
                  #
         
     | 
| 
       2990 
3068 
     | 
    
         
             
                  #   * `:instances_set` - (Array<Hash>)
         
     | 
| 
       2991 
3069 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       2992 
3070 
     | 
    
         
             
                  #     * `:monitoring` - (Hash)
         
     | 
| 
         @@ -3005,6 +3083,7 @@ module AWS 
     | 
|
| 
       3005 
3083 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3006 
3084 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3007 
3085 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3086 
     | 
    
         
            +
                  #
         
     | 
| 
       3008 
3087 
     | 
    
         
             
                  #   * `:reserved_instances_id` - (String)
         
     | 
| 
       3009 
3088 
     | 
    
         | 
| 
       3010 
3089 
     | 
    
         
             
                  # @!method reboot_instances(options = {})
         
     | 
| 
         @@ -3057,6 +3136,7 @@ module AWS 
     | 
|
| 
       3057 
3136 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3058 
3137 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3059 
3138 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3139 
     | 
    
         
            +
                  #
         
     | 
| 
       3060 
3140 
     | 
    
         
             
                  #   * `:image_id` - (String)
         
     | 
| 
       3061 
3141 
     | 
    
         | 
| 
       3062 
3142 
     | 
    
         
             
                  # @!method release_address(options = {})
         
     | 
| 
         @@ -3079,6 +3159,7 @@ module AWS 
     | 
|
| 
       3079 
3159 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3080 
3160 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3081 
3161 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3162 
     | 
    
         
            +
                  #
         
     | 
| 
       3082 
3163 
     | 
    
         
             
                  #   * `:new_association_id` - (String)
         
     | 
| 
       3083 
3164 
     | 
    
         | 
| 
       3084 
3165 
     | 
    
         
             
                  # @!method replace_network_acl_entry(options = {})
         
     | 
| 
         @@ -3139,6 +3220,7 @@ module AWS 
     | 
|
| 
       3139 
3220 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3140 
3221 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3141 
3222 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3223 
     | 
    
         
            +
                  #
         
     | 
| 
       3142 
3224 
     | 
    
         
             
                  #   * `:new_association_id` - (String)
         
     | 
| 
       3143 
3225 
     | 
    
         | 
| 
       3144 
3226 
     | 
    
         
             
                  # @!method report_instance_status(options = {})
         
     | 
| 
         @@ -3266,6 +3348,7 @@ module AWS 
     | 
|
| 
       3266 
3348 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3267 
3349 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3268 
3350 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3351 
     | 
    
         
            +
                  #
         
     | 
| 
       3269 
3352 
     | 
    
         
             
                  #   * `:spot_instance_request_set` - (Array<Hash>)
         
     | 
| 
       3270 
3353 
     | 
    
         
             
                  #     * `:spot_instance_request_id` - (String)
         
     | 
| 
       3271 
3354 
     | 
    
         
             
                  #     * `:spot_price` - (String)
         
     | 
| 
         @@ -3584,6 +3667,7 @@ module AWS 
     | 
|
| 
       3584 
3667 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3585 
3668 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3586 
3669 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3670 
     | 
    
         
            +
                  #
         
     | 
| 
       3587 
3671 
     | 
    
         
             
                  #   * `:reservation_id` - (String)
         
     | 
| 
       3588 
3672 
     | 
    
         
             
                  #   * `:owner_id` - (String)
         
     | 
| 
       3589 
3673 
     | 
    
         
             
                  #   * `:requester_id` - (String)
         
     | 
| 
         @@ -3691,6 +3775,7 @@ module AWS 
     | 
|
| 
       3691 
3775 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3692 
3776 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3693 
3777 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3778 
     | 
    
         
            +
                  #
         
     | 
| 
       3694 
3779 
     | 
    
         
             
                  #   * `:instances_set` - (Array<Hash>)
         
     | 
| 
       3695 
3780 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       3696 
3781 
     | 
    
         
             
                  #     * `:current_state` - (Hash)
         
     | 
| 
         @@ -3713,6 +3798,7 @@ module AWS 
     | 
|
| 
       3713 
3798 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3714 
3799 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3715 
3800 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3801 
     | 
    
         
            +
                  #
         
     | 
| 
       3716 
3802 
     | 
    
         
             
                  #   * `:instances_set` - (Array<Hash>)
         
     | 
| 
       3717 
3803 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       3718 
3804 
     | 
    
         
             
                  #     * `:current_state` - (Hash)
         
     | 
| 
         @@ -3730,6 +3816,7 @@ module AWS 
     | 
|
| 
       3730 
3816 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3731 
3817 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3732 
3818 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3819 
     | 
    
         
            +
                  #
         
     | 
| 
       3733 
3820 
     | 
    
         
             
                  #   * `:instances_set` - (Array<Hash>)
         
     | 
| 
       3734 
3821 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       3735 
3822 
     | 
    
         
             
                  #     * `:current_state` - (Hash)
         
     | 
| 
         @@ -3754,6 +3841,7 @@ module AWS 
     | 
|
| 
       3754 
3841 
     | 
    
         
             
                  # @return [Core::Response]
         
     | 
| 
       3755 
3842 
     | 
    
         
             
                  #   The #data method of the response object returns
         
     | 
| 
       3756 
3843 
     | 
    
         
             
                  #   a hash with the following structure:
         
     | 
| 
      
 3844 
     | 
    
         
            +
                  #
         
     | 
| 
       3757 
3845 
     | 
    
         
             
                  #   * `:instances_set` - (Array<Hash>)
         
     | 
| 
       3758 
3846 
     | 
    
         
             
                  #     * `:instance_id` - (String)
         
     | 
| 
       3759 
3847 
     | 
    
         
             
                  #     * `:monitoring` - (Hash)
         
     |