Source code for steampipe_alchemy.models.aws_elasticache_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 AwsElasticacheParameterGroup(Base, FormatMixins): __tablename__ = 'aws_elasticache_parameter_group' akas = Column('akas', JSON, nullable=True) is_global = Column('is_global', Boolean, nullable=True) description = Column('description', Text, nullable=True) cache_parameter_group_family = Column('cache_parameter_group_family', Text, nullable=True) title = Column('title', Text, nullable=True) partition = Column('partition', Text, nullable=True) region = Column('region', Text, nullable=True) cache_parameter_group_name = Column('cache_parameter_group_name', Text, nullable=True) account_id = Column('account_id', Text, nullable=True) arn = Column('arn', Text, primary_key=True, nullable=True)