Interface CfnChannelNamespace.HandlerConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelNamespace.HandlerConfigProperty.Jsii$Proxy
- Enclosing class:
CfnChannelNamespace
@Stability(Stable)
public static interface CfnChannelNamespace.HandlerConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.appsync.*;
HandlerConfigProperty handlerConfigProperty = HandlerConfigProperty.builder()
.behavior("behavior")
.integration(IntegrationProperty.builder()
.dataSourceName("dataSourceName")
// the properties below are optional
.lambdaConfig(LambdaConfigProperty.builder()
.invokeType("invokeType")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelNamespace.HandlerConfigPropertystatic final classAn implementation forCfnChannelNamespace.HandlerConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The behavior for the handler.The integration data source configuration for the handler.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBehavior
The behavior for the handler.- See Also:
-
getIntegration
The integration data source configuration for the handler.Returns union: either
IResolvableorCfnChannelNamespace.IntegrationProperty- See Also:
-
builder
-