Class CfnChannelNamespace.HandlerConfigProperty
The HandlerConfig property type specifies the configuration for the handler.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnChannelNamespace.HandlerConfigProperty : CfnChannelNamespace.IHandlerConfigProperty
Syntax (vb)
Public Class CfnChannelNamespace.HandlerConfigProperty Implements CfnChannelNamespace.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.AWS.AppSync;
var handlerConfigProperty = new HandlerConfigProperty {
Behavior = "behavior",
Integration = new IntegrationProperty {
DataSourceName = "dataSourceName",
// the properties below are optional
LambdaConfig = new LambdaConfigProperty {
InvokeType = "invokeType"
}
}
};
Synopsis
Constructors
| HandlerConfigProperty() | The |
Properties
| Behavior | The behavior for the handler. |
| Integration | The integration data source configuration for the handler. |
Constructors
HandlerConfigProperty()
The HandlerConfig property type specifies the configuration for the handler.
public HandlerConfigProperty()
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.AWS.AppSync;
var handlerConfigProperty = new HandlerConfigProperty {
Behavior = "behavior",
Integration = new IntegrationProperty {
DataSourceName = "dataSourceName",
// the properties below are optional
LambdaConfig = new LambdaConfigProperty {
InvokeType = "invokeType"
}
}
};
Properties
Behavior
The behavior for the handler.
public string Behavior { get; set; }
Property Value
Remarks
Integration
The integration data source configuration for the handler.
public object Integration { get; set; }