OBJECT

KmsKey

An encryption key. Each Tenant has a default key used when another key is not specified. Other KmsKeys added to a Tenant can be used to selectively encrypt Edges at rest.

link GraphQL Schema definition

  • type KmsKey {
  • # The AWS Resource Name of the actual AWS KMS Key.
  • arn: String!
  • # When and who created.
  • created: AtBy!
  • # A human-readable description.
  • description: String
  • # True if this is used by other resources.
  • inUse: Boolean!
  • # When and who modified.
  • lastModified: AtBy!
  • # The name.
  • name: String!
  • # 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!
  • # Updates and returns the KmsKey.
  • #
  • # Arguments
  • # description: A human-readable description.
  • Update(description: String): KmsKey!
  • }