OBJECT
ExternalNode
A Node that exists outside the EchoStream Cloud. Can be part of an ExternalApp or CrossAccountApp.
link GraphQL Schema definition
- type ExternalNode implements Node {
- # The App.
- : RemoteApp!
- # The config, in JSON object format (i.e. - dict, map).
- : AWSJSON
- # When and who created.
- : AtBy!
- # A human-readable description.
- : String
- # When and who modified.
- : AtBy!
- # The name.
- : String!
- # A list of the Edges messages are received on.
- : [Edge]
- # The MessageType that this Node is capable of receiving.
- : MessageType
- # A list of the Edges messages are sent on.
- : [Edge]
- # The MessageType that this Node is capable of sending.
- : MessageType
- # Is the Node stopped; null == false.
- : Boolean
- # The Tenant.
- : Tenant!
- # Deletes this Node and all of its Edges.
- #
- # Arguments
- # drainEdges: If sending Edges attached to this Nodes should be
- # drained. Defaults to True.
- (: Boolean): Boolean!
- # Lists the changes.
- #
- # Arguments
- # endDateTime: The end date/time (inclusive) to list changes for
- # in ISO8601 format. Defaults to now.
- # exclusiveStartKey: The lastEvaluatedKey from a previous
- # ChangeResult. Used when paginating.
- # limit: Used for limiting the number of results when paginating.
- # Defaults to "all".
- # sortAscending: True for ascending results, False for descending
- # result. Defaults to True.
- # startDateTime: The start date/time (inclusive) to list changes
- # for in ISO8601 format. Defaults to the beginning of time.
- (
- : AWSDateTime,
- : AWSJSON,
- : Int,
- : Boolean,
- : AWSDateTime
- ): ChangeResult!
- # Starts a stopped Node. Has no effect on an already running Node.
- : Boolean!
- # Stops a running Node. Has no effect on an already stopped Node.
- : Boolean!
- # Updates the Node and returns it.
- #
- # Arguments
- # config: The config, in JSON object format (i.e. - dict, map).
- # description: A human-readable description.
- (: AWSJSON, : String): ExternalNode!
- }