interface HandlerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnChannelNamespacePropsMixin.HandlerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnChannelNamespacePropsMixin_HandlerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnChannelNamespacePropsMixin.HandlerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnChannelNamespacePropsMixin.HandlerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnChannelNamespacePropsMixin » 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/cfn-property-mixins';
const handlerConfigProperty: appsync.CfnChannelNamespacePropsMixin.HandlerConfigProperty = {
behavior: 'behavior',
integration: {
dataSourceName: 'dataSourceName',
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
(optional)
The behavior for the handler.
integration?
Type:
IResolvable | Integration
(optional)
The integration data source configuration for the handler.

.NET
Go
Java
Python
TypeScript