/usr/lib/python2.6/site-packages/boto/rds
Edit: /usr/lib/python2.6/site-packages/boto/rds/dbsecuritygroup.pyo (7062B)
Ñò
Å-õSc @ s\ d Z d d k l Z d e f d „ ƒ YZ d e f d „ ƒ YZ d e f d „ ƒ YZ d S(
s
Represents an DBSecurityGroup
iÿÿÿÿ( t
SecurityGroupt DBSecurityGroupc B se e Z d Z d d d d d „ Z d „ Z d „ Z d „ Z d „ Z d d d „ Z d d d „ Z
RS( sº
Represents an RDS database security group
Properties reference available from the AWS documentation at
http://docs.amazonwebservices.com/AmazonRDS/latest/APIReference/API_DeleteDBSecurityGroup.html
:ivar Status: The current status of the security group. Possible values are
[ active, ? ]. Reference documentation lacks specifics of possibilities
:ivar connection: :py:class:`boto.rds.RDSConnection` associated with the current object
:ivar description: The description of the security group
:ivar ec2_groups: List of :py:class:`EC2 Security Group
` objects that this security
group PERMITS
:ivar ip_ranges: List of :py:class:`boto.rds.dbsecuritygroup.IPRange`
objects (containing CIDR addresses) that this security group PERMITS
:ivar name: Name of the security group
:ivar owner_id: ID of the owner of the security group. Can be 'None'
c C s: | | _ | | _ | | _ | | _ g | _ g | _ d S( N( t
connectiont owner_idt namet descriptiont
ec2_groupst ip_ranges( t selfR R R R ( ( s<