interface IntegrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnChannelNamespacePropsMixin.IntegrationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnChannelNamespacePropsMixin_IntegrationProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnChannelNamespacePropsMixin.IntegrationProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnChannelNamespacePropsMixin.IntegrationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnChannelNamespacePropsMixin » 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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const integrationProperty: appsync_mixins.CfnChannelNamespacePropsMixin.IntegrationProperty = {
dataSourceName: 'dataSourceName',
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
(optional)
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