interface PipelineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnResolverPropsMixin.PipelineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnResolverPropsMixin_PipelineConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnResolverPropsMixin.PipelineConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnResolverPropsMixin.PipelineConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const pipelineConfigProperty: appsync_mixins.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