Show / Hide Table of Contents

Class CfnChannelNamespace.HandlerConfigProperty

The HandlerConfig property type specifies the configuration for the handler.

Inheritance
object
CfnChannelNamespace.HandlerConfigProperty
Implements
CfnChannelNamespace.IHandlerConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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.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 HandlerConfig property type specifies the configuration for the handler.

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

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.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

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.

public object Integration { get; set; }
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 CfnChannelNamespace.IIntegrationProperty

Implements

CfnChannelNamespace.IHandlerConfigProperty
Back to top Generated by DocFX