Class: Aws::AppSync::Types::PipelineConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::PipelineConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass PipelineConfig data as a hash:
{
functions: ["String"],
}
The pipeline configuration for a resolver of kind PIPELINE
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#functions ⇒ Array<String>
A list of
Function
objects.
Instance Attribute Details
#functions ⇒ Array<String>
A list of Function
objects.
3043 3044 3045 3046 3047 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3043 class PipelineConfig < Struct.new( :functions) SENSITIVE = [] include Aws::Structure end |