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

ListTargetsFilter

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

Information about a filter to apply to the list of returned targets. You can filter by target type, address, or status. For example, to filter results to notification rules that have active Amazon SNS topics as targets, you could specify a ListTargetsFilter Name as TargetType and a Value of SNS, and a Name of TARGET_STATUS and a Value of ACTIVE.

interface ListTargetsFilter {
Value: string;
}

§Properties

§

The name of the attribute you want to use to filter the returned targets.

§
Value: string
[src]

The value of the attribute you want to use to filter the returned targets. For example, if you specify SNS for the Target type, you could specify an Amazon Resource Name (ARN) for a topic as the value.