Source code for steampipe_alchemy.models.aws_rds_db_parameter_group

from sqlalchemy import Column
from sqlalchemy.types import JSON, Text, Boolean, TIMESTAMP, BigInteger
from sqlalchemy.dialects import postgresql as psql
from steampipe_alchemy.mixins import FormatMixins

from steampipe_alchemy import Base

[docs]class AwsRdsDbParameterGroup(Base, FormatMixins): __tablename__ = 'aws_rds_db_parameter_group' akas = Column('akas', JSON, nullable=True) tags_src = Column('tags_src', JSON, nullable=True) tags = Column('tags', JSON, nullable=True) parameters = Column('parameters', JSON, nullable=True) title = Column('title', Text, nullable=True) partition = Column('partition', Text, nullable=True) region = Column('region', Text, nullable=True) name = Column('name', Text, nullable=True) account_id = Column('account_id', Text, nullable=True) arn = Column('arn', Text, primary_key=True, nullable=True) description = Column('description', Text, nullable=True) db_parameter_group_family = Column('db_parameter_group_family', Text, nullable=True)