INTERFACE

Function

Describes common attributes and methods supported by Functions.

link GraphQL Schema definition

  • interface Function {
  • # The code of the Function in Python string format.
  • code: String!
  • # When and who created.
  • created: AtBy!
  • # A human-readable description.
  • description: String!
  • # True if this is used by other resources.
  • inUse: Boolean!
  • # The name.
  • name: String!
  • # When and who modified.
  • lastModified: AtBy!
  • # README in MarkDown format.
  • readme: String
  • # The list of Python requirements, in pip format.
  • requirements: [String!]
  • # True if this is an EchoStream system resource.
  • system: Boolean
  • # The Tenant.
  • tenant: Tenant
  • # Deletes this.
  • 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!
  • }