All Downloads are FREE. Search and download functionalities are using the official Maven repository.

awscala.redshift.ClusterParameterGroup.scala Maven / Gradle / Ivy

There is a newer version: 0.8.3
Show newest version
package awscala.redshift

import com.amazonaws.services.{ redshift => aws }

object ClusterParameterGroup {
  def apply(g: aws.model.ClusterParameterGroup): ClusterParameterGroup = new ClusterParameterGroup(
    name = g.getParameterGroupName,
    family = g.getParameterGroupFamily,
    description = g.getDescription
  )
}
case class ClusterParameterGroup(name: String, family: String, description: String) extends aws.model.ClusterParameterGroup {
  setParameterGroupName(name)
  setParameterGroupFamily(family)
  setDescription(description)

  def destroy()(implicit redshift: Redshift) = redshift.delete(this)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy