Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Transforms a Python script into a directed acyclic graph (DAG).
Synopsis
- data GetDataflowGraph = GetDataflowGraph' {}
- newGetDataflowGraph :: GetDataflowGraph
- getDataflowGraph_pythonScript :: Lens' GetDataflowGraph (Maybe Text)
- data GetDataflowGraphResponse = GetDataflowGraphResponse' {
- dagEdges :: Maybe [CodeGenEdge]
- dagNodes :: Maybe [CodeGenNode]
- httpStatus :: Int
- newGetDataflowGraphResponse :: Int -> GetDataflowGraphResponse
- getDataflowGraphResponse_dagEdges :: Lens' GetDataflowGraphResponse (Maybe [CodeGenEdge])
- getDataflowGraphResponse_dagNodes :: Lens' GetDataflowGraphResponse (Maybe [CodeGenNode])
- getDataflowGraphResponse_httpStatus :: Lens' GetDataflowGraphResponse Int
Creating a Request
data GetDataflowGraph Source #
See: newGetDataflowGraph
smart constructor.
GetDataflowGraph' | |
|
Instances
newGetDataflowGraph :: GetDataflowGraph Source #
Create a value of GetDataflowGraph
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:pythonScript:GetDataflowGraph'
, getDataflowGraph_pythonScript
- The Python script to transform.
Request Lenses
getDataflowGraph_pythonScript :: Lens' GetDataflowGraph (Maybe Text) Source #
The Python script to transform.
Destructuring the Response
data GetDataflowGraphResponse Source #
See: newGetDataflowGraphResponse
smart constructor.
GetDataflowGraphResponse' | |
|
Instances
newGetDataflowGraphResponse Source #
Create a value of GetDataflowGraphResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:dagEdges:GetDataflowGraphResponse'
, getDataflowGraphResponse_dagEdges
- A list of the edges in the resulting DAG.
$sel:dagNodes:GetDataflowGraphResponse'
, getDataflowGraphResponse_dagNodes
- A list of the nodes in the resulting DAG.
$sel:httpStatus:GetDataflowGraphResponse'
, getDataflowGraphResponse_httpStatus
- The response's http status code.
Response Lenses
getDataflowGraphResponse_dagEdges :: Lens' GetDataflowGraphResponse (Maybe [CodeGenEdge]) Source #
A list of the edges in the resulting DAG.
getDataflowGraphResponse_dagNodes :: Lens' GetDataflowGraphResponse (Maybe [CodeGenNode]) Source #
A list of the nodes in the resulting DAG.
getDataflowGraphResponse_httpStatus :: Lens' GetDataflowGraphResponse Int Source #
The response's http status code.