io.cloudshiftdev.awscdk.services.appsync.LambdaDataSource.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.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.services.iam.IRole
import io.cloudshiftdev.awscdk.services.lambda.IFunction
import kotlin.String
import kotlin.Unit
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* An AppSync datasource backed by a Lambda function.
*
* 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.*;
* import io.cloudshiftdev.awscdk.services.iam.*;
* import io.cloudshiftdev.awscdk.services.lambda.*;
* Function function_;
* GraphqlApi graphqlApi;
* Role role;
* LambdaDataSource lambdaDataSource = LambdaDataSource.Builder.create(this, "MyLambdaDataSource")
* .api(graphqlApi)
* .lambdaFunction(function_)
* // the properties below are optional
* .description("description")
* .name("name")
* .serviceRole(role)
* .build();
* ```
*/
public open class LambdaDataSource(
cdkObject: software.amazon.awscdk.services.appsync.LambdaDataSource,
) : BackedDataSource(cdkObject) {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: LambdaDataSourceProps,
) :
this(software.amazon.awscdk.services.appsync.LambdaDataSource(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(LambdaDataSourceProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: LambdaDataSourceProps.Builder.() -> Unit,
) : this(scope, id, LambdaDataSourceProps(props)
)
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.appsync.LambdaDataSource].
*/
@CdkDslMarker
public interface Builder {
/**
* The API to attach this data source to.
*
* @param api The API to attach this data source to.
*/
public fun api(api: IGraphqlApi)
/**
* the description of the data source.
*
* Default: - None
*
* @param description the description of the data source.
*/
public fun description(description: String)
/**
* The Lambda function to call to interact with this data source.
*
* @param lambdaFunction The Lambda function to call to interact with this data source.
*/
public fun lambdaFunction(lambdaFunction: IFunction)
/**
* The name of the data source.
*
* Default: - id of data source
*
* @param name The name of the data source.
*/
public fun name(name: String)
/**
* The IAM service role to be assumed by AppSync to interact with the data source.
*
* Default: - Create a new role
*
* @param serviceRole The IAM service role to be assumed by AppSync to interact with the data
* source.
*/
public fun serviceRole(serviceRole: IRole)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder: software.amazon.awscdk.services.appsync.LambdaDataSource.Builder =
software.amazon.awscdk.services.appsync.LambdaDataSource.Builder.create(scope, id)
/**
* The API to attach this data source to.
*
* @param api The API to attach this data source to.
*/
override fun api(api: IGraphqlApi) {
cdkBuilder.api(api.let(IGraphqlApi.Companion::unwrap))
}
/**
* the description of the data source.
*
* Default: - None
*
* @param description the description of the data source.
*/
override fun description(description: String) {
cdkBuilder.description(description)
}
/**
* The Lambda function to call to interact with this data source.
*
* @param lambdaFunction The Lambda function to call to interact with this data source.
*/
override fun lambdaFunction(lambdaFunction: IFunction) {
cdkBuilder.lambdaFunction(lambdaFunction.let(IFunction.Companion::unwrap))
}
/**
* The name of the data source.
*
* Default: - id of data source
*
* @param name The name of the data source.
*/
override fun name(name: String) {
cdkBuilder.name(name)
}
/**
* The IAM service role to be assumed by AppSync to interact with the data source.
*
* Default: - Create a new role
*
* @param serviceRole The IAM service role to be assumed by AppSync to interact with the data
* source.
*/
override fun serviceRole(serviceRole: IRole) {
cdkBuilder.serviceRole(serviceRole.let(IRole.Companion::unwrap))
}
public fun build(): software.amazon.awscdk.services.appsync.LambdaDataSource =
cdkBuilder.build()
}
public companion object {
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): LambdaDataSource {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return LambdaDataSource(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.appsync.LambdaDataSource):
LambdaDataSource = LambdaDataSource(cdkObject)
internal fun unwrap(wrapped: LambdaDataSource):
software.amazon.awscdk.services.appsync.LambdaDataSource = wrapped.cdkObject as
software.amazon.awscdk.services.appsync.LambdaDataSource
}
}