Class: Aws::AppSync::Types::LambdaDataSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::LambdaDataSourceConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass LambdaDataSourceConfig data as a hash:
{
lambda_function_arn: "String", # required
}
Describes an Lambda data source configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda_function_arn ⇒ String
The Amazon Resource Name (ARN) for the Lambda function.
Instance Attribute Details
#lambda_function_arn ⇒ String
The Amazon Resource Name (ARN) for the Lambda function.
2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2423 class LambdaDataSourceConfig < Struct.new( :lambda_function_arn) SENSITIVE = [] include Aws::Structure end |