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

JobScopeTerm

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

Specifies a property- or tag-based condition that defines criteria for including or excluding S3 objects from a classification job. A JobScopeTerm object can contain only one simpleScopeTerm object or one tagScopeTerm object.

interface JobScopeTerm {
simpleScopeTerm?: SimpleScopeTerm | null;
tagScopeTerm?: TagScopeTerm | null;
}

§Properties

§
simpleScopeTerm?: SimpleScopeTerm | null
[src]

A property-based condition that defines a property, operator, and one or more values for including or excluding objects from the job.

§
tagScopeTerm?: TagScopeTerm | null
[src]

A tag-based condition that defines the operator and tag keys or tag key and value pairs for including or excluding objects from the job.