Interface CfnChannelNamespacePropsMixin.HandlerConfigsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelNamespacePropsMixin.HandlerConfigsProperty.Jsii$Proxy
- Enclosing class:
CfnChannelNamespacePropsMixin
@Stability(Stable)
public static interface CfnChannelNamespacePropsMixin.HandlerConfigsProperty
extends software.amazon.jsii.JsiiSerializable
The
HandlerConfigs property type specifies the configuration for the OnPublish and OnSubscribe handlers.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appsync.*;
HandlerConfigsProperty handlerConfigsProperty = HandlerConfigsProperty.builder()
.onPublish(HandlerConfigProperty.builder()
.behavior("behavior")
.integration(IntegrationProperty.builder()
.dataSourceName("dataSourceName")
.lambdaConfig(LambdaConfigProperty.builder()
.invokeType("invokeType")
.build())
.build())
.build())
.onSubscribe(HandlerConfigProperty.builder()
.behavior("behavior")
.integration(IntegrationProperty.builder()
.dataSourceName("dataSourceName")
.lambdaConfig(LambdaConfigProperty.builder()
.invokeType("invokeType")
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelNamespacePropsMixin.HandlerConfigsPropertystatic final classAn implementation forCfnChannelNamespacePropsMixin.HandlerConfigsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOnPublish
The configuration for theOnPublishhandler.Returns union: either
IResolvableorCfnChannelNamespacePropsMixin.HandlerConfigProperty- See Also:
-
getOnSubscribe
The configuration for theOnSubscribehandler.Returns union: either
IResolvableorCfnChannelNamespacePropsMixin.HandlerConfigProperty- See Also:
-
builder
-