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

AttachmentDetails

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

The file name and ID of an attachment to a case communication. You can use the ID to retrieve the attachment with the "DescribeAttachment" operation.

interface AttachmentDetails {
attachmentId?: string | null;
fileName?: string | null;
}

§Properties

§
attachmentId?: string | null
[src]

The ID of the attachment.

§
fileName?: string | null
[src]

The file name of the attachment.