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

S3Object

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

Provides information about the S3 object that a finding applies to.

interface S3Object {
bucketArn?: string | null;
eTag?: string | null;
extension?: string | null;
key?: string | null;
lastModified?: Date | number | null;
path?: string | null;
publicAccess?: boolean | null;
serverSideEncryption?: ServerSideEncryption | null;
size?: number | null;
storageClass?: StorageClass | null;
tags?: KeyValuePair[] | null;
versionId?: string | null;
}

§Properties

§
bucketArn?: string | null
[src]

The Amazon Resource Name (ARN) of the bucket that contains the object.

§
eTag?: string | null
[src]

The entity tag (ETag) that identifies the affected version of the object. If the object was overwritten or changed after Amazon Macie produced the finding, this value might be different from the current ETag for the object.

§
extension?: string | null
[src]

The file name extension of the object. If the object doesn't have a file name extension, this value is "".

§
key?: string | null
[src]

The full key (name) that's assigned to the object.

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

The date and time, in UTC and extended ISO 8601 format, when the object was last modified.

§
path?: string | null
[src]

The path to the object, including the full key (name).

§
publicAccess?: boolean | null
[src]

Specifies whether the object is publicly accessible due to the combination of permissions settings that apply to the object.

§
serverSideEncryption?: ServerSideEncryption | null
[src]

The type of server-side encryption that's used to encrypt the object.

§
size?: number | null
[src]

The total storage size, in bytes, of the object.

§
storageClass?: StorageClass | null
[src]

The storage class of the object.

§
tags?: KeyValuePair[] | null
[src]

The tags that are associated with the object.

§
versionId?: string | null
[src]

The identifier for the affected version of the object.