com.pulumi.awsnative.appsync.kotlin.outputs.ResolverPipelineConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appsync.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Use the ``PipelineConfig`` property type to specify ``PipelineConfig`` for an APSYlong resolver.
* ``PipelineConfig`` is a property of the [AWS::AppSync::Resolver](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html) resource.
* @property functions A list of ``Function`` objects.
*/
public data class ResolverPipelineConfig(
public val functions: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appsync.outputs.ResolverPipelineConfig): ResolverPipelineConfig = ResolverPipelineConfig(
functions = javaType.functions().map({ args0 -> args0 }),
)
}
}