interface PipelineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnResolverPropsMixin.PipelineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnResolverPropsMixin_PipelineConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnResolverPropsMixin.PipelineConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnResolverPropsMixin.PipelineConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnResolverPropsMixin » PipelineConfigProperty |
Use the PipelineConfig property type to specify PipelineConfig for an AWS AppSync resolver.
PipelineConfig is a property of the AWS::AppSync::Resolver resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const pipelineConfigProperty: appsync.CfnResolverPropsMixin.PipelineConfigProperty = {
functions: ['functions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| functions? | string[] | A list of Function objects. |
functions?
Type:
string[]
(optional)
A list of Function objects.

.NET
Go
Java
Python
TypeScript