Interface CfnSessionPropsMixin.EngineConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSessionPropsMixin.EngineConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnSessionPropsMixin
@Stability(Stable)
public static interface CfnSessionPropsMixin.EngineConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.athena.*;
EngineConfigurationProperty engineConfigurationProperty = EngineConfigurationProperty.builder()
.additionalConfigs(Map.of(
"additionalConfigsKey", "additionalConfigs"))
.coordinatorDpuSize(123)
.defaultExecutorDpuSize(123)
.maxConcurrentDpus(123)
.sparkProperties(Map.of(
"sparkPropertiesKey", "sparkProperties"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSessionPropsMixin.EngineConfigurationPropertystatic final classAn implementation forCfnSessionPropsMixin.EngineConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectContains additional notebook engine parameter mappings.default NumberThe number of DPUs to use for the coordinator.default NumberThe default number of DPUs to use for executors.default NumberThe maximum number of DPUs that can run concurrently.default ObjectSpecifies custom jar files and Spark properties.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalConfigs
Contains additional notebook engine parameter mappings.Returns union: either
IResolvableor Mapinvalid input: '<'String,String>- See Also:
-
getCoordinatorDpuSize
The number of DPUs to use for the coordinator.- See Also:
-
getDefaultExecutorDpuSize
The default number of DPUs to use for executors.- See Also:
-
getMaxConcurrentDpus
The maximum number of DPUs that can run concurrently.- See Also:
-
getSparkProperties
Specifies custom jar files and Spark properties.Returns union: either
IResolvableor Mapinvalid input: '<'String,String>- See Also:
-
builder
-