Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfig.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfig.html#cfn-appsync-channelnamespace-handlerconfig-behavior

Integration

The integration data source configuration for the handler.

object? Integration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-handlerconfig.html#cfn-appsync-channelnamespace-handlerconfig-integration

Type union: either IResolvable or CfnChannelNamespacePropsMixin.IIntegrationProperty

Back to top Generated by DocFX