// $Id$

//////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010 DOCOMO Communications Laboratories USA, Inc.
//
// DOCOMO Communication Laboratories USA, Inc. (DOCOMO USA Labs) licenses
// the GNU General Public License version 2 (GPL2) for the software
// disclosed herein. For terms and conditions under the GPL2, please
// refer to www.gnu.org.
//
// Date of Preparation: 11/09/2010
//
// IT Manager: Yas Naoi, DOCOMO USA Labs
// Contact   : naoi at docomolabs-usa.com
//
// DOCOMO USA Labs is under no obligation to maintain or support this
// software, and DOCOMO USA Labs is not responsible for any damage or
// loss experienced from using the software.
//
// Please contact the IT Manager at DOCOMO USA Labs for all issues
// related to the software.
//
//////////////////////////////////////////////////////////////////////////

BASIC INFO
==========

- Redesigned simonc's work for Amazon EC2 API-related module.

INCLUDE FILES
=============

* Include Files:
  Consists of a pair of
- ec2_lib_xxxxx_ui.inc
- ec2_lib_Xxxxx_db.inc (xxxxx: EC2 entitiy name)



DIRECTORY STRUCTURE FOR AWS MODULE FAMILY
=========================================

aws
  +-amazon_ec2         (depends on ec2_api        )(Amazon EC2 is part of AWS)
  +-amazon s3          (depends on s3_api         )(Amazon S3  is part of AWS) (NOT IMPLEMENTED)
  +-amazon_smpledb     (depends on simpledb_api   )(Amazon S3  is part of AWS) (NOT IMPLEMENTED)
  +-amazon_cloud_watch (depends on cloud_watch_api)(Amazon S3  is part of AWS) (NOT IMPLEMENTED)
  +-lib (Will be called by other EC2 API compatible clouds like Eucalyptus,  OpenStack nova and etc.)
    +-ec2 
      -- ec2_api.module (depends on aws_common) 
      -- ec2_lib.module (depends on ec2_api)
      -- EBS Volume wrapper (.inc)
      -- Elastic IP wrapper (.inc)
      -- Images wrapper (.inc)
      -- Instances wrapper (.inc)
      -- Register Image wrapper (.inc)
      -- Security Group wrapper (.inc)
      -- Snapshot wrapper (.inc)
      -- SSH Key (User Keys Management based on Permission) wrapper (.inc)
      -- ...
    +-s3          (NOT IMPLEMENTED)
      -- ...
    +-sqs         (NOT IMPLEMENTED)
      -- ...
    +-simpledb    (NOT IMPLEMENTED)
      -- ...
    +-cloud_watch (NOT IMPLEMENTED)
      -- ...
  +-aws_common (depends on REST-Client)
  


End of README.txt