Interface CfnDataSourcePropsMixin.LambdaConfigProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.mixins.preview.services.appsync.mixins.*;
 LambdaConfigProperty lambdaConfigProperty = LambdaConfigProperty.builder()
         .lambdaFunctionArn("lambdaFunctionArn")
         .build();
 

See Also: