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

SpeakerSummary

import type { SpeakerSummary } from "https://aws-api.deno.dev/v0.4/services/voiceid.ts?docs=full";

Contains a summary of information about a speaker.

interface SpeakerSummary {
CreatedAt?: Date | number | null;
CustomerSpeakerId?: string | null;
DomainId?: string | null;
GeneratedSpeakerId?: string | null;
LastAccessedAt?: Date | number | null;
Status?: SpeakerStatus | null;
UpdatedAt?: Date | number | null;
}

§Properties

§
CreatedAt?: Date | number | null
[src]

A timestamp showing the speaker's creation time.

§
CustomerSpeakerId?: string | null
[src]

The client-provided identifier for the speaker.

§
DomainId?: string | null
[src]

The identifier of the domain that contains the speaker.

§
GeneratedSpeakerId?: string | null
[src]

The service-generated identifier for the speaker.

§
LastAccessedAt?: Date | number | null
[src]

The timestamp when the speaker was last accessed for enrollment, re-enrollment or a successful authentication. This timestamp is accurate to one hour.

§
Status?: SpeakerStatus | null
[src]

The current status of the speaker.

§
UpdatedAt?: Date | number | null
[src]

A timestamp showing the speaker's last update.