interface IntegrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnChannelNamespacePropsMixin.IntegrationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnChannelNamespacePropsMixin_IntegrationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnChannelNamespacePropsMixin.IntegrationProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnChannelNamespacePropsMixin.IntegrationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » 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 { aws_appsync as appsync } from '@aws-cdk/cfn-property-mixins';
const integrationProperty: appsync.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