Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ChangeTagsForResourceRequest

import type { ChangeTagsForResourceRequest } from "https://aws-api.deno.dev/v0.4/services/route53.ts?docs=full";

A complex type that contains information about the tags that you want to add, edit, or delete.

interface ChangeTagsForResourceRequest {
AddTags?: Tag[] | null;
RemoveTagKeys?: string[] | null;
ResourceId: string;
ResourceType: TagResourceType;
}

§Properties

§
AddTags?: Tag[] | null
[src]

A complex type that contains a list of the tags that you want to add to the specified health check or hosted zone and/or the tags that you want to edit Value for.

You can add a maximum of 10 tags to a health check or a hosted zone.

§
RemoveTagKeys?: string[] | null
[src]

A complex type that contains a list of the tags that you want to delete from the specified health check or hosted zone. You can specify up to 10 keys.

§
ResourceId: string
[src]

The ID of the resource for which you want to add, change, or delete tags.

§
ResourceType: TagResourceType
[src]

The type of the resource.

  • The resource type for health checks is healthcheck.
  • The resource type for hosted zones is hostedzone.