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

ListBucketAnalyticsConfigurationsOutput

import type { ListBucketAnalyticsConfigurationsOutput } from "https://aws-api.deno.dev/v0.4/services/s3.ts?docs=full";
interface ListBucketAnalyticsConfigurationsOutput {
AnalyticsConfigurationList: AnalyticsConfiguration[];
ContinuationToken?: string | null;
IsTruncated?: boolean | null;
NextContinuationToken?: string | null;
}

§Properties

§
AnalyticsConfigurationList: AnalyticsConfiguration[]
[src]

The list of analytics configurations for a bucket.

§
ContinuationToken?: string | null
[src]

The marker that is used as a starting point for this analytics configuration list response. This value is present if it was sent in the request.

§
IsTruncated?: boolean | null
[src]

Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.

§
NextContinuationToken?: string | null
[src]

NextContinuationToken is sent when isTruncated is true, which indicates that there are more analytics configurations to list. The next request must include this NextContinuationToken. The token is obfuscated and is not a usable value.