Show / Hide Table of Contents

Interface CfnChannelNamespace.IIntegrationProperty

The Integration property type specifies the integration data source configuration for the handler.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnChannelNamespace.IIntegrationProperty
Syntax (vb)
Public Interface CfnChannelNamespace.IIntegrationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-integration.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 integrationProperty = new IntegrationProperty {
                 DataSourceName = "dataSourceName",

                 // the properties below are optional
                 LambdaConfig = new LambdaConfigProperty {
                     InvokeType = "invokeType"
                 }
             };

Synopsis

Properties

DataSourceName

The unique name of the data source that has been configured on the API.

LambdaConfig

The configuration for a Lambda data source.

Properties

DataSourceName

The unique name of the data source that has been configured on the API.

string DataSourceName { get; }
Property Value

string

Remarks

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

LambdaConfig

The configuration for a Lambda data source.

object? LambdaConfig { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnChannelNamespace.ILambdaConfigProperty

Back to top Generated by DocFX