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

BucketCriteriaAdditionalProperties

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

Specifies the operator to use in a property-based condition that filters the results of a query for information about S3 buckets.

interface BucketCriteriaAdditionalProperties {
eq?: string[] | null;
gt?: number | null;
gte?: number | null;
lt?: number | null;
lte?: number | null;
neq?: string[] | null;
prefix?: string | null;
}

§Properties

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

The value for the property matches (equals) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.

§
gt?: number | null
[src]

The value for the property is greater than the specified value.

§
gte?: number | null
[src]

The value for the property is greater than or equal to the specified value.

§
lt?: number | null
[src]

The value for the property is less than the specified value.

§
lte?: number | null
[src]

The value for the property is less than or equal to the specified value.

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

The value for the property doesn't match (doesn't equal) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.

§
prefix?: string | null
[src]

The name of the bucket begins with the specified value.