OBJECT
WebSubSubscriptionNode
link GraphQL Schema definition
- type WebSubSubscriptionNode implements Node {
- # The subscriber's callback URL to send content to.
- : AWSURL!
- # When and who created.
- : AtBy!
- # A human-readable description.
- : String
- # The date/time that the subscription will expire
- : AWSDateTime!
- # The WebSubHubNode that created this subscription.
- : WebSubHubNode!
- # When and who modified.
- : AtBy!
- # The name. Will always be the name of the WebSubHubNode followed by
- # a SHA1 hash of the hub.topic and the hub.callback.
- : String!
- # The Edge that messages are received on.
- : Edge!
- # The MessageType that this Node is capable of receiving.
- : MessageType
- # True if the callback is an HTTPS URL and the subscription
- # is using authenticated content distribution (i.e. - there
- # is a secret from the subscriber)
- : Boolean!
- # Is the Node stopped; null == false.
- : Boolean
- # The subscriber that created this.
- : String!
- # The Tenant.
- : Tenant!
- # The topic URL.
- : AWSURL!
- # Deletes this Node and all of its Edges.
- : 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!
- }