Interface CfnChannelNamespacePropsMixin.IHandlerConfigProperty
The HandlerConfig property type specifies the configuration for the handler.
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnChannelNamespacePropsMixin.IHandlerConfigProperty
Syntax (vb)
Public Interface CfnChannelNamespacePropsMixin.IHandlerConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins;
var handlerConfigProperty = new HandlerConfigProperty {
Behavior = "behavior",
Integration = new IntegrationProperty {
DataSourceName = "dataSourceName",
LambdaConfig = new LambdaConfigProperty {
InvokeType = "invokeType"
}
}
};
Synopsis
Properties
| Behavior | The behavior for the handler. |
| Integration | The integration data source configuration for the handler. |
Properties
Behavior
The behavior for the handler.
string? Behavior { get; }
Property Value
Remarks
Integration
The integration data source configuration for the handler.
object? Integration { get; }