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