Interface CfnDataSource.LambdaConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.LambdaConfigProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.LambdaConfigProperty extends software.amazon.jsii.JsiiSerializable
The LambdaConfig property type specifies the Lambda function ARN for an AWS AppSync data source.

LambdaConfig is a property of the AWS::AppSync::DataSource property type.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 LambdaConfigProperty lambdaConfigProperty = LambdaConfigProperty.builder()
         .lambdaFunctionArn("lambdaFunctionArn")
         .build();
 

See Also: