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

com.pulumi.awsnative.appsync.kotlin.outputs.ResolverPipelineConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy