interface IntegrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnChannelNamespace.IntegrationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnChannelNamespace_IntegrationProperty |
Java | software.amazon.awscdk.services.appsync.CfnChannelNamespace.IntegrationProperty |
Python | aws_cdk.aws_appsync.CfnChannelNamespace.IntegrationProperty |
TypeScript | aws-cdk-lib » aws_appsync » CfnChannelNamespace » IntegrationProperty |
The Integration property type specifies the integration data source configuration for the handler.
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-lib';
const integrationProperty: appsync.CfnChannelNamespace.IntegrationProperty = {
dataSourceName: 'dataSourceName',
// the properties below are optional
lambdaConfig: {
invokeType: 'invokeType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The unique name of the data source that has been configured on the API. |
| lambda | IResolvable | Lambda | The configuration for a Lambda data source. |
dataSourceName
Type:
string
The unique name of the data source that has been configured on the API.
lambdaConfig?
Type:
IResolvable | Lambda
(optional)
The configuration for a Lambda data source.

.NET
Go
Java
Python
TypeScript