OBJECT
CrossTenantSendingApp
Allows for sending messages to another Tenant.
link GraphQL Schema definition
- type CrossTenantSendingApp implements App {
- # When and who created.
- : AtBy!
- # A human-readable description.
- : String
- # When and who modified.
- : AtBy!
- # The name.
- : String!
- # The Nodes.
- : [CrossTenantSendingNode]
- # The name of the CrossTenantReceivingApp linked to this App.
- : String!
- # The name of the Tenant that contains the receivingApp.
- : String!
- # The Tenant.
- : Tenant!
- # Deletes this App and all of its Nodes.
- #
- # Arguments
- # drainEdges: If sending Edges attached to Nodes in this App
- # 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!
- # Updates this App.
- #
- # Arguments
- # description: The human-readable description.
- (: String): CrossTenantSendingApp!
- }