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
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
Remarks
LambdaConfig
The configuration for a Lambda data source.
object? LambdaConfig { get; }