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

Conditions

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

Contains information about which resources to include or exclude from a backup plan using their tags. Conditions are case sensitive.

interface Conditions {
StringEquals?: ConditionParameter[] | null;
StringLike?: ConditionParameter[] | null;
StringNotEquals?: ConditionParameter[] | null;
StringNotLike?: ConditionParameter[] | null;
}

§Properties

§
StringEquals?: ConditionParameter[] | null
[src]

Filters the values of your tagged resources for only those resources that you tagged with the same value. Also called "exact matching."

§
StringLike?: ConditionParameter[] | null
[src]

Filters the values of your tagged resources for matching tag values with the use of a wildcard character () anywhere in the string. For example, "prod" or "rod" matches the tag value "production".

§
StringNotEquals?: ConditionParameter[] | null
[src]

Filters the values of your tagged resources for only those resources that you tagged that do not have the same value. Also called "negated matching."

§
StringNotLike?: ConditionParameter[] | null
[src]

Filters the values of your tagged resources for non-matching tag values with the use of a wildcard character (*) anywhere in the string.