Skip to content

allCloudNativeTagKeys

List of cloud native tag keys matched by substring.

Arguments

Argument Type Description
keySubStr (required) String! Key substring to filter by.
limit (required) Int! Number of results to return.
objectType (required) CloudNativeTagObjectType! Type of managed object on which tag rule will be applied.

Returns

[String!]!

Sample

query AllCloudNativeTagKeys($keySubStr: String!, $limit: Int!, $objectType: CloudNativeTagObjectType!) {
  allCloudNativeTagKeys(
    keySubStr: $keySubStr
    limit: $limit
    objectType: $objectType
  )
}
{
  "keySubStr": "example-string",
  "limit": 0,
  "objectType": "AWS_DYNAMODB_TABLE"
}
{
  "data": {
    "allCloudNativeTagKeys": [
      "example-string"
    ]
  }
}