Interface CfnSessionMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSessionMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:16.008Z") @Stability(Stable) public interface CfnSessionMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnSessionPropsMixin.

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.*;
 CfnSessionMixinProps cfnSessionMixinProps = CfnSessionMixinProps.builder()
         .engineConfiguration(EngineConfigurationProperty.builder()
                 .additionalConfigs(Map.of(
                         "additionalConfigsKey", "additionalConfigs"))
                 .coordinatorDpuSize(123)
                 .defaultExecutorDpuSize(123)
                 .maxConcurrentDpus(123)
                 .sparkProperties(Map.of(
                         "sparkPropertiesKey", "sparkProperties"))
                 .build())
         .executionRole("executionRole")
         .workGroup("workGroup")
         .build();
 

See Also: