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

io.cloudshiftdev.awscdk.cxapi.IEnvironmentPlaceholderProvider.kt Maven / Gradle / Ivy

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

package io.cloudshiftdev.awscdk.cxapi

import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.String

/**
 * Return the appropriate values for the environment placeholders.
 */
public interface IEnvironmentPlaceholderProvider {
  /**
   * Return the account.
   */
  public fun accountId(): String

  /**
   * Return the partition.
   */
  public fun partition(): String

  /**
   * Return the region.
   */
  public fun region(): String

  private class Wrapper(
    cdkObject: software.amazon.awscdk.cxapi.IEnvironmentPlaceholderProvider,
  ) : CdkObject(cdkObject),
      IEnvironmentPlaceholderProvider {
    /**
     * Return the account.
     */
    override fun accountId(): String = unwrap(this).accountId()

    /**
     * Return the partition.
     */
    override fun partition(): String = unwrap(this).partition()

    /**
     * Return the region.
     */
    override fun region(): String = unwrap(this).region()
  }

  public companion object {
    internal fun wrap(cdkObject: software.amazon.awscdk.cxapi.IEnvironmentPlaceholderProvider):
        IEnvironmentPlaceholderProvider = CdkObjectWrappers.wrap(cdkObject) as?
        IEnvironmentPlaceholderProvider ?: Wrapper(cdkObject)

    internal fun unwrap(wrapped: IEnvironmentPlaceholderProvider):
        software.amazon.awscdk.cxapi.IEnvironmentPlaceholderProvider = (wrapped as
        CdkObject).cdkObject as software.amazon.awscdk.cxapi.IEnvironmentPlaceholderProvider
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy