interface HandlerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnChannelNamespace.HandlerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnChannelNamespace_HandlerConfigProperty |
Java | software.amazon.awscdk.services.appsync.CfnChannelNamespace.HandlerConfigProperty |
Python | aws_cdk.aws_appsync.CfnChannelNamespace.HandlerConfigProperty |
TypeScript | aws-cdk-lib » aws_appsync » CfnChannelNamespace » HandlerConfigProperty |
The HandlerConfig property type specifies the 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 handlerConfigProperty: appsync.CfnChannelNamespace.HandlerConfigProperty = {
behavior: 'behavior',
integration: {
dataSourceName: 'dataSourceName',
// the properties below are optional
lambdaConfig: {
invokeType: 'invokeType',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| behavior | string | The behavior for the handler. |
| integration | IResolvable | Integration | The integration data source configuration for the handler. |
behavior
Type:
string
The behavior for the handler.
integration
Type:
IResolvable | Integration
The integration data source configuration for the handler.

.NET
Go
Java
Python
TypeScript