Interface GraphQLRenderConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GraphQLRenderConfig.Builder,GraphQLRenderConfig>,SdkBuilder<GraphQLRenderConfig.Builder,GraphQLRenderConfig>,SdkPojo
- Enclosing class:
- GraphQLRenderConfig
public static interface GraphQLRenderConfig.Builder extends SdkPojo, CopyableBuilder<GraphQLRenderConfig.Builder,GraphQLRenderConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphQLRenderConfig.BuilderfragmentsFilePath(String fragmentsFilePath)The path to the GraphQL fragments file, relative to the component output directory.GraphQLRenderConfig.BuildermutationsFilePath(String mutationsFilePath)The path to the GraphQL mutations file, relative to the component output directory.GraphQLRenderConfig.BuilderqueriesFilePath(String queriesFilePath)The path to the GraphQL queries file, relative to the component output directory.GraphQLRenderConfig.BuildersubscriptionsFilePath(String subscriptionsFilePath)The path to the GraphQL subscriptions file, relative to the component output directory.GraphQLRenderConfig.BuildertypesFilePath(String typesFilePath)The path to the GraphQL types file, relative to the component output directory.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
typesFilePath
GraphQLRenderConfig.Builder typesFilePath(String typesFilePath)
The path to the GraphQL types file, relative to the component output directory.
- Parameters:
typesFilePath- The path to the GraphQL types file, relative to the component output directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queriesFilePath
GraphQLRenderConfig.Builder queriesFilePath(String queriesFilePath)
The path to the GraphQL queries file, relative to the component output directory.
- Parameters:
queriesFilePath- The path to the GraphQL queries file, relative to the component output directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mutationsFilePath
GraphQLRenderConfig.Builder mutationsFilePath(String mutationsFilePath)
The path to the GraphQL mutations file, relative to the component output directory.
- Parameters:
mutationsFilePath- The path to the GraphQL mutations file, relative to the component output directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subscriptionsFilePath
GraphQLRenderConfig.Builder subscriptionsFilePath(String subscriptionsFilePath)
The path to the GraphQL subscriptions file, relative to the component output directory.
- Parameters:
subscriptionsFilePath- The path to the GraphQL subscriptions file, relative to the component output directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fragmentsFilePath
GraphQLRenderConfig.Builder fragmentsFilePath(String fragmentsFilePath)
The path to the GraphQL fragments file, relative to the component output directory.
- Parameters:
fragmentsFilePath- The path to the GraphQL fragments file, relative to the component output directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-