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

UpdateTagsForResourceMessage

import type { UpdateTagsForResourceMessage } from "https://aws-api.deno.dev/v0.4/services/elasticbeanstalk.ts?docs=full";
interface UpdateTagsForResourceMessage {
ResourceArn: string;
TagsToAdd?: Tag[] | null;
TagsToRemove?: string[] | null;
}

§Properties

§
ResourceArn: string
[src]

The Amazon Resource Name (ARN) of the resouce to be updated.

Must be the ARN of an Elastic Beanstalk resource.

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

A list of tags to add or update. If a key of an existing tag is added, the tag's value is updated.

Specify at least one of these parameters: TagsToAdd, TagsToRemove.

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

A list of tag keys to remove. If a tag key doesn't exist, it is silently ignored.

Specify at least one of these parameters: TagsToAdd, TagsToRemove.