Amazon CodeDeploy · Schema

ListTagsForResourceInput

ListTagsForResourceInput schema from Amazon CodeDeploy

AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

Properties

Name Type Description
ResourceArn object
NextToken object
View JSON Schema on GitHub

JSON Schema

amazon-codedeploy-list-tags-for-resource-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-list-tags-for-resource-input-schema.json",
  "title": "ListTagsForResourceInput",
  "description": "ListTagsForResourceInput schema from Amazon CodeDeploy",
  "type": "object",
  "properties": {
    "ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": " The ARN of a CodeDeploy resource. <code>ListTagsForResource</code> returns all the tags associated with the resource that is identified by the <code>ResourceArn</code>. "
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "An identifier returned from the previous <code>ListTagsForResource</code> call. It can be used to return the next set of applications in the list."
        }
      ]
    }
  },
  "required": [
    "ResourceArn"
  ]
}