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

io.cloudshiftdev.awscdk.services.appsync.InlineCode.kt Maven / Gradle / Ivy

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

package io.cloudshiftdev.awscdk.services.appsync

import io.cloudshiftdev.constructs.Construct
import kotlin.String

/**
 * AppSync function code from an inline string.
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import io.cloudshiftdev.awscdk.services.appsync.*;
 * InlineCode inlineCode = new InlineCode("code");
 * ```
 */
public open class InlineCode(
  cdkObject: software.amazon.awscdk.services.appsync.InlineCode,
) : Code(cdkObject) {
  public constructor(code: String) : this(software.amazon.awscdk.services.appsync.InlineCode(code)
  )

  /**
   * Bind source code to an AppSync Function or resolver.
   *
   * @param _scope 
   */
  public override fun bind(scope: Construct): CodeConfig =
      unwrap(this).bind(scope.let(Construct.Companion::unwrap)).let(CodeConfig::wrap)

  public companion object {
    internal fun wrap(cdkObject: software.amazon.awscdk.services.appsync.InlineCode): InlineCode =
        InlineCode(cdkObject)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy