interface EngineConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Athena.CfnSessionPropsMixin.EngineConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsathena#CfnSessionPropsMixin_EngineConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.athena.CfnSessionPropsMixin.EngineConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_athena.CfnSessionPropsMixin.EngineConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_athena » CfnSessionPropsMixin » EngineConfigurationProperty |
Contains engine data processing unit (DPU) configuration settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_athena as athena } from '@aws-cdk/cfn-property-mixins';
const engineConfigurationProperty: athena.CfnSessionPropsMixin.EngineConfigurationProperty = {
additionalConfigs: {
additionalConfigsKey: 'additionalConfigs',
},
coordinatorDpuSize: 123,
defaultExecutorDpuSize: 123,
maxConcurrentDpus: 123,
sparkProperties: {
sparkPropertiesKey: 'sparkProperties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | { [string]: string } | Contains additional notebook engine parameter mappings. |
| coordinator | number | The number of DPUs to use for the coordinator. |
| default | number | The default number of DPUs to use for executors. |
| max | number | The maximum number of DPUs that can run concurrently. |
| spark | IResolvable | { [string]: string } | Specifies custom jar files and Spark properties. |
additionalConfigs?
Type:
IResolvable | { [string]: string }
(optional)
Contains additional notebook engine parameter mappings.
coordinatorDpuSize?
Type:
number
(optional)
The number of DPUs to use for the coordinator.
defaultExecutorDpuSize?
Type:
number
(optional)
The default number of DPUs to use for executors.
maxConcurrentDpus?
Type:
number
(optional)
The maximum number of DPUs that can run concurrently.
sparkProperties?
Type:
IResolvable | { [string]: string }
(optional)
Specifies custom jar files and Spark properties.

.NET
Go
Java
Python
TypeScript