OBJECT

WebSubSubscriptionNode

link GraphQL Schema definition

  • type WebSubSubscriptionNode implements Node {
  • # The subscriber's callback URL to send content to.
  • callback: AWSURL!
  • # When and who created.
  • created: AtBy!
  • # A human-readable description.
  • description: String
  • # The date/time that the subscription will expire
  • expiration: AWSDateTime!
  • # The WebSubHubNode that created this subscription.
  • hub: WebSubHubNode!
  • # When and who modified.
  • lastModified: AtBy!
  • # The name. Will always be the name of the WebSubHubNode followed by
  • # a SHA1 hash of the hub.topic and the hub.callback.
  • name: String!
  • # The Edge that messages are received on.
  • receiveEdge: Edge!
  • # The MessageType that this Node is capable of receiving.
  • receiveMessageType: 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)
  • secured: Boolean!
  • # Is the Node stopped; null == false.
  • stopped: Boolean
  • # The subscriber that created this.
  • subscriber: String!
  • # The Tenant.
  • tenant: Tenant!
  • # The topic URL.
  • topic: AWSURL!
  • # Deletes this Node and all of its Edges.
  • Delete: 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.
  • ListChanges(
  • endDateTime: AWSDateTime,
  • exclusiveStartKey: AWSJSON,
  • limit: Int,
  • sortAscending: Boolean,
  • startDateTime: AWSDateTime
  • ): ChangeResult!
  • # Starts a stopped Node. Has no effect on an already running Node.
  • Start: Boolean!
  • # Stops a running Node. Has no effect on an already stopped Node.
  • Stop: Boolean!
  • }