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

Condition

import type { Condition } from "https://aws-api.deno.dev/v0.3/services/backup.ts?docs=full";

Contains an array of triplets made up of a condition type (such as StringEquals), a key, and a value. Used to filter resources using their tags and assign them to a backup plan. Case sensitive.

interface Condition {
ConditionKey: string;
ConditionType: ConditionType;
ConditionValue: string;
}

§Properties

§
ConditionKey: string
[src]

The key in a key-value pair. For example, in the tag Department: Accounting, Department is the key.

§
ConditionType: ConditionType
[src]

An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports StringEquals. For more flexible assignment options, incluidng StringLike and the ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your BackupSelection.

§
ConditionValue: string
[src]

The value in a key-value pair. For example, in the tag Department: Accounting, Accounting is the value.