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

Filters

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

This structure can be used in the "ListCertificates" action to filter the output of the certificate list.

interface Filters {
extendedKeyUsage?: ExtendedKeyUsageName[] | null;
keyTypes?: KeyAlgorithm[] | null;
keyUsage?: KeyUsageName[] | null;
}

§Properties

§
extendedKeyUsage?: ExtendedKeyUsageName[] | null
[src]

Specify one or more "ExtendedKeyUsage" extension values.

§
keyTypes?: KeyAlgorithm[] | null
[src]

Specify one or more algorithms that can be used to generate key pairs.

Default filtering returns only RSA_1024 and RSA_2048 certificates that have at least one domain. To return other certificate types, provide the desired type signatures in a comma-separated list. For example, "keyTypes": ["RSA_2048,RSA_4096"] returns both RSA_2048 and RSA_4096 certificates.

§
keyUsage?: KeyUsageName[] | null
[src]

Specify one or more "KeyUsage" extension values.