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

ResultConfigurationUpdates

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

The information about the updates in the query results, such as output location and encryption configuration for the query results.

interface ResultConfigurationUpdates {
EncryptionConfiguration?: EncryptionConfiguration | null;
OutputLocation?: string | null;
RemoveEncryptionConfiguration?: boolean | null;
RemoveOutputLocation?: boolean | null;
}

§Properties

§
EncryptionConfiguration?: EncryptionConfiguration | null
[src]

The encryption configuration for the query results.

§
OutputLocation?: string | null
[src]

The location in Amazon S3 where your query results are stored, such as s3://path/to/query/bucket/. For more information, see Query Results If workgroup settings override client-side settings, then the query uses the location for the query results and the encryption configuration that are specified for the workgroup. The "workgroup settings override" is specified in EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See "WorkGroupConfiguration$EnforceWorkGroupConfiguration".

§
RemoveEncryptionConfiguration?: boolean | null
[src]

If set to "true", indicates that the previously-specified encryption configuration (also known as the client-side setting) for queries in this workgroup should be ignored and set to null. If set to "false" or not set, and a value is present in the EncryptionConfiguration in ResultConfigurationUpdates (the client-side setting), the EncryptionConfiguration in the workgroup's ResultConfiguration will be updated with the new value. For more information, see Workgroup Settings Override Client-Side Settings.

§
RemoveOutputLocation?: boolean | null
[src]

If set to "true", indicates that the previously-specified query results location (also known as a client-side setting) for queries in this workgroup should be ignored and set to null. If set to "false" or not set, and a value is present in the OutputLocation in ResultConfigurationUpdates (the client-side setting), the OutputLocation in the workgroup's ResultConfiguration will be updated with the new value. For more information, see Workgroup Settings Override Client-Side Settings.