@aws-sdk/client-athena 3.348.0 → 3.349.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -48,6 +48,9 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB
|
|
|
48
48
|
* // AdditionalConfigs: { // ParametersMap
|
|
49
49
|
* // "<keys>": "STRING_VALUE",
|
|
50
50
|
* // },
|
|
51
|
+
* // SparkProperties: {
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
51
54
|
* // },
|
|
52
55
|
* // NotebookVersion: "STRING_VALUE",
|
|
53
56
|
* // SessionConfiguration: { // SessionConfiguration
|
|
@@ -41,6 +41,9 @@ export interface StartSessionCommandOutput extends StartSessionResponse, __Metad
|
|
|
41
41
|
* AdditionalConfigs: { // ParametersMap
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
+
* SparkProperties: {
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
44
47
|
* },
|
|
45
48
|
* NotebookVersion: "STRING_VALUE",
|
|
46
49
|
* SessionIdleTimeoutInMinutes: Number("int"),
|
|
@@ -1008,7 +1008,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
/**
|
|
1010
1010
|
* @public
|
|
1011
|
-
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena.</p>
|
|
1011
|
+
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena. This setting does not apply to Athena SQL workgroups.</p>
|
|
1012
1012
|
*/
|
|
1013
1013
|
export interface CustomerContentEncryptionConfiguration {
|
|
1014
1014
|
/**
|
|
@@ -1075,7 +1075,7 @@ export interface WorkGroupConfiguration {
|
|
|
1075
1075
|
*/
|
|
1076
1076
|
ExecutionRole?: string;
|
|
1077
1077
|
/**
|
|
1078
|
-
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena.</p>
|
|
1078
|
+
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena. This setting does not apply to Athena SQL workgroups.</p>
|
|
1079
1079
|
*/
|
|
1080
1080
|
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
|
1081
1081
|
/**
|
|
@@ -2097,6 +2097,10 @@ export interface EngineConfiguration {
|
|
|
2097
2097
|
* Athena notebook ID.</p>
|
|
2098
2098
|
*/
|
|
2099
2099
|
AdditionalConfigs?: Record<string, string>;
|
|
2100
|
+
/**
|
|
2101
|
+
* <p>Specifies custom jar files and Spark properties for use cases like cluster encryption, table formats, and general Spark tuning.</p>
|
|
2102
|
+
*/
|
|
2103
|
+
SparkProperties?: Record<string, string>;
|
|
2100
2104
|
}
|
|
2101
2105
|
/**
|
|
2102
2106
|
* @public
|
|
@@ -3970,7 +3974,7 @@ export interface WorkGroupConfigurationUpdates {
|
|
|
3970
3974
|
*/
|
|
3971
3975
|
EngineVersion?: EngineVersion;
|
|
3972
3976
|
/**
|
|
3973
|
-
* <p>Removes content encryption configuration
|
|
3977
|
+
* <p>Removes content encryption configuration from an Apache Spark-enabled Athena workgroup.</p>
|
|
3974
3978
|
*/
|
|
3975
3979
|
RemoveCustomerContentEncryptionConfiguration?: boolean;
|
|
3976
3980
|
/**
|
|
@@ -3982,7 +3986,7 @@ export interface WorkGroupConfigurationUpdates {
|
|
|
3982
3986
|
*/
|
|
3983
3987
|
ExecutionRole?: string;
|
|
3984
3988
|
/**
|
|
3985
|
-
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena.</p>
|
|
3989
|
+
* <p>Specifies the KMS key that is used to encrypt the user's data stores in Athena. This setting does not apply to Athena SQL workgroups.</p>
|
|
3986
3990
|
*/
|
|
3987
3991
|
CustomerContentEncryptionConfiguration?: CustomerContentEncryptionConfiguration;
|
|
3988
3992
|
/**
|
|
@@ -541,6 +541,7 @@ export interface EngineConfiguration {
|
|
|
541
541
|
MaxConcurrentDpus: number | undefined;
|
|
542
542
|
DefaultExecutorDpuSize?: number;
|
|
543
543
|
AdditionalConfigs?: Record<string, string>;
|
|
544
|
+
SparkProperties?: Record<string, string>;
|
|
544
545
|
}
|
|
545
546
|
export interface SessionConfiguration {
|
|
546
547
|
ExecutionRole?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-athena",
|
|
3
3
|
"description": "AWS SDK for JavaScript Athena Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.349.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|