You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-athena): Add support for the managed query result in the workgroup APIs. The managed query result configuration enables users to store query results to Athena owned storage.
* <p>The ARN of an KMS key for encrypting managed query results.</p>
353
+
* @public
354
+
*/
355
+
KmsKey: string|undefined;
356
+
}
357
+
358
+
/**
359
+
* <p>
360
+
* The configuration for storing results in Athena owned storage, which includes whether this feature is enabled; whether encryption configuration, if any, is used for encrypting query results.
361
+
* </p>
362
+
* @public
363
+
*/
364
+
exportinterfaceManagedQueryResultsConfiguration{
365
+
/**
366
+
* <p>If set to true, allows you to store query results in Athena owned storage. If set to
367
+
* false, workgroup member stores query results in location specified under
368
+
* <code>ResultConfiguration$OutputLocation</code>. The default is false. A workgroup
369
+
* cannot have the <code>ResultConfiguration$OutputLocation</code> parameter when you set
370
+
* this field to true. </p>
371
+
* @public
372
+
*/
373
+
Enabled: boolean|undefined;
374
+
375
+
/**
376
+
* <p>If you encrypt query and calculation results in Athena owned storage, this field
377
+
* indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key
* <p>If set to "true", the settings for the workgroup override client-side settings. If set
1705
1761
* to "false", client-side settings are used. For more information, see <a href="https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html">Workgroup Settings Override Client-Side Settings</a>.</p>
0 commit comments