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

io.cloudshiftdev.awscdk.services.rds.ParameterGroup.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.services.rds

import io.cloudshiftdev.awscdk.RemovalPolicy
import io.cloudshiftdev.awscdk.Resource
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct

/**
 * A parameter group.
 *
 * Represents both a cluster parameter group,
 * and an instance parameter group.
 *
 * Example:
 *
 * ```
 * BackupPlan plan;
 * Vpc vpc;
 * ITable myTable = Table.fromTableName(this, "Table", "myTableName");
 * DatabaseInstance myDatabaseInstance = DatabaseInstance.Builder.create(this, "DatabaseInstance")
 * .engine(DatabaseInstanceEngine.mysql(MySqlInstanceEngineProps.builder().version(MysqlEngineVersion.VER_8_0_26).build()))
 * .vpc(vpc)
 * .build();
 * DatabaseCluster myDatabaseCluster = DatabaseCluster.Builder.create(this, "DatabaseCluster")
 * .engine(DatabaseClusterEngine.auroraMysql(AuroraMysqlClusterEngineProps.builder().version(AuroraMysqlEngineVersion.VER_2_08_1).build()))
 * .credentials(Credentials.fromGeneratedSecret("clusteradmin"))
 * .instanceProps(InstanceProps.builder()
 * .vpc(vpc)
 * .build())
 * .build();
 * ServerlessCluster myServerlessCluster = ServerlessCluster.Builder.create(this,
 * "ServerlessCluster")
 * .engine(DatabaseClusterEngine.AURORA_POSTGRESQL)
 * .parameterGroup(ParameterGroup.fromParameterGroupName(this, "ParameterGroup",
 * "default.aurora-postgresql11"))
 * .vpc(vpc)
 * .build();
 * Construct myCoolConstruct = new Construct(this, "MyCoolConstruct");
 * plan.addSelection("Selection", BackupSelectionOptions.builder()
 * .resources(List.of(BackupResource.fromDynamoDbTable(myTable),
 * BackupResource.fromRdsDatabaseInstance(myDatabaseInstance),
 * BackupResource.fromRdsDatabaseCluster(myDatabaseCluster),
 * BackupResource.fromRdsServerlessCluster(myServerlessCluster), BackupResource.fromTag("stage",
 * "prod"), BackupResource.fromConstruct(myCoolConstruct)))
 * .build());
 * ```
 */
public open class ParameterGroup(
  cdkObject: software.amazon.awscdk.services.rds.ParameterGroup,
) : Resource(cdkObject),
    IParameterGroup {
  public constructor(
    scope: CloudshiftdevConstructsConstruct,
    id: String,
    props: ParameterGroupProps,
  ) :
      this(software.amazon.awscdk.services.rds.ParameterGroup(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
      id, props.let(ParameterGroupProps.Companion::unwrap))
  )

  public constructor(
    scope: CloudshiftdevConstructsConstruct,
    id: String,
    props: ParameterGroupProps.Builder.() -> Unit,
  ) : this(scope, id, ParameterGroupProps(props)
  )

  /**
   * Add a parameter to this parameter group.
   *
   * @param key The key of the parameter to be added. 
   * @param value The value of the parameter to be added. 
   */
  public override fun addParameter(key: String, `value`: String): Boolean =
      unwrap(this).addParameter(key, `value`)

  /**
   * Method called when this Parameter Group is used when defining a database cluster.
   *
   * @param _options 
   */
  public override fun bindToCluster(options: ParameterGroupClusterBindOptions):
      ParameterGroupClusterConfig =
      unwrap(this).bindToCluster(options.let(ParameterGroupClusterBindOptions.Companion::unwrap)).let(ParameterGroupClusterConfig::wrap)

  /**
   * Method called when this Parameter Group is used when defining a database cluster.
   *
   * @param _options 
   */
  @kotlin.Suppress("INAPPLICABLE_JVM_NAME")
  @JvmName("d28cdc7226268867666e1b55a9f41f9760704e0a8aea5aed647fb9bc4accfa14")
  public override fun bindToCluster(options: ParameterGroupClusterBindOptions.Builder.() -> Unit):
      ParameterGroupClusterConfig = bindToCluster(ParameterGroupClusterBindOptions(options))

  /**
   * Method called when this Parameter Group is used when defining a database instance.
   *
   * @param _options 
   */
  public override fun bindToInstance(options: ParameterGroupInstanceBindOptions):
      ParameterGroupInstanceConfig =
      unwrap(this).bindToInstance(options.let(ParameterGroupInstanceBindOptions.Companion::unwrap)).let(ParameterGroupInstanceConfig::wrap)

  /**
   * Method called when this Parameter Group is used when defining a database instance.
   *
   * @param _options 
   */
  @kotlin.Suppress("INAPPLICABLE_JVM_NAME")
  @JvmName("fda7f99b0973a1794d583b4748a0034342e5fc0557269fbcea9db1b8801b312b")
  public override fun bindToInstance(options: ParameterGroupInstanceBindOptions.Builder.() -> Unit):
      ParameterGroupInstanceConfig = bindToInstance(ParameterGroupInstanceBindOptions(options))

  /**
   * A fluent builder for [io.cloudshiftdev.awscdk.services.rds.ParameterGroup].
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * Description for this parameter group.
     *
     * Default: a CDK generated description
     *
     * @param description Description for this parameter group. 
     */
    public fun description(description: String)

    /**
     * The database engine for this parameter group.
     *
     * @param engine The database engine for this parameter group. 
     */
    public fun engine(engine: IEngine)

    /**
     * The name of this parameter group.
     *
     * Default: - CloudFormation-generated name
     *
     * @param name The name of this parameter group. 
     */
    public fun name(name: String)

    /**
     * The parameters in this parameter group.
     *
     * Default: - None
     *
     * @param parameters The parameters in this parameter group. 
     */
    public fun parameters(parameters: Map)

    /**
     * The CloudFormation policy to apply when the instance is removed from the stack or replaced
     * during an update.
     *
     * Default: - RemovalPolicy.DESTROY
     *
     * @param removalPolicy The CloudFormation policy to apply when the instance is removed from the
     * stack or replaced during an update. 
     */
    public fun removalPolicy(removalPolicy: RemovalPolicy)
  }

  private class BuilderImpl(
    scope: SoftwareConstructsConstruct,
    id: String,
  ) : Builder {
    private val cdkBuilder: software.amazon.awscdk.services.rds.ParameterGroup.Builder =
        software.amazon.awscdk.services.rds.ParameterGroup.Builder.create(scope, id)

    /**
     * Description for this parameter group.
     *
     * Default: a CDK generated description
     *
     * @param description Description for this parameter group. 
     */
    override fun description(description: String) {
      cdkBuilder.description(description)
    }

    /**
     * The database engine for this parameter group.
     *
     * @param engine The database engine for this parameter group. 
     */
    override fun engine(engine: IEngine) {
      cdkBuilder.engine(engine.let(IEngine.Companion::unwrap))
    }

    /**
     * The name of this parameter group.
     *
     * Default: - CloudFormation-generated name
     *
     * @param name The name of this parameter group. 
     */
    override fun name(name: String) {
      cdkBuilder.name(name)
    }

    /**
     * The parameters in this parameter group.
     *
     * Default: - None
     *
     * @param parameters The parameters in this parameter group. 
     */
    override fun parameters(parameters: Map) {
      cdkBuilder.parameters(parameters)
    }

    /**
     * The CloudFormation policy to apply when the instance is removed from the stack or replaced
     * during an update.
     *
     * Default: - RemovalPolicy.DESTROY
     *
     * @param removalPolicy The CloudFormation policy to apply when the instance is removed from the
     * stack or replaced during an update. 
     */
    override fun removalPolicy(removalPolicy: RemovalPolicy) {
      cdkBuilder.removalPolicy(removalPolicy.let(RemovalPolicy.Companion::unwrap))
    }

    public fun build(): software.amazon.awscdk.services.rds.ParameterGroup = cdkBuilder.build()
  }

  public companion object {
    public fun fromParameterGroupName(
      scope: CloudshiftdevConstructsConstruct,
      id: String,
      parameterGroupName: String,
    ): IParameterGroup =
        software.amazon.awscdk.services.rds.ParameterGroup.fromParameterGroupName(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
        id, parameterGroupName).let(IParameterGroup::wrap)

    public operator fun invoke(
      scope: CloudshiftdevConstructsConstruct,
      id: String,
      block: Builder.() -> Unit = {},
    ): ParameterGroup {
      val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
      return ParameterGroup(builderImpl.apply(block).build())
    }

    internal fun wrap(cdkObject: software.amazon.awscdk.services.rds.ParameterGroup): ParameterGroup
        = ParameterGroup(cdkObject)

    internal fun unwrap(wrapped: ParameterGroup): software.amazon.awscdk.services.rds.ParameterGroup
        = wrapped.cdkObject as software.amazon.awscdk.services.rds.ParameterGroup
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy