Metadata-Version: 1.1
Name: boto3_extensions
Version: 0.4
Summary: Extensions to the AWS SDK for Python
Home-page: https://bitbucket.org/atlassian/boto3_extensions/
Author: Atlassian
Author-email: UNKNOWN
License: Apache License 2.0
Description: ================
        Boto3 Extensions
        ================
        
        Overview
        --------
        This module adds more resource files to the Boto3 library and includes some functionality enhancements.
        
        Quick Start
        -----------
        First, install the library:
        
        .. code-block:: sh
        
            $ pip install boto3_extensions
        
        Follow the Boto3 docs on setting up your region and credentials ().
        
        Then, from a Python interpreter:
        
        .. code-block:: python
        
            >>> import boto3
            >>> import boto3_extensions
            >>> r = boto3.resource('cloudtrail', region_name='us-east-1')
            >>> for trail in r.trails.all():
                  print(trail.trail_arn)
        
        Resource Files
        --------------
        The following resource files are **added** to the Boto3 library.
        
          * acm
          * autoscaling
          * cloudfront
          * cloudtrail
          * cur
          * datapipeline
          * directconnect
          * elasticache
          * elb
          * elbv2
          * emr
          * glue
          * health
          * kinesis
          * lambda
          * rds
          * redshift
          * route53
          * support
        
        The following resource files are **updated** in the Boto3 library.
        
          * dynamodb
          * ec2
          * iam
          * s3
        
        
        Getting Help
        ------------
        Please raise issue ticket inside our Bitbucket repo: https://bitbucket.org/atlassian/boto3_extensions/issues
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
