Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
usr
/
lib
/
python2.7
/
site-packages
/
boto
/
rds
/
File Content:
dbsecuritygroup.pyc
� �Wc @ s\ d Z d d l m 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 <boto.ec2.securitygroup.SecurityGroup>` 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<