interface CfnSessionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Athena.CfnSessionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsathena#CfnSessionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.athena.CfnSessionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_athena.CfnSessionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_athena » CfnSessionMixinProps |
Properties for CfnSessionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-session.html
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 cfnSessionMixinProps: athena.CfnSessionMixinProps = {
engineConfiguration: {
additionalConfigs: {
additionalConfigsKey: 'additionalConfigs',
},
coordinatorDpuSize: 123,
defaultExecutorDpuSize: 123,
maxConcurrentDpus: 123,
sparkProperties: {
sparkPropertiesKey: 'sparkProperties',
},
},
executionRole: 'executionRole',
workGroup: 'workGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| engine | IResolvable | Engine | Contains engine data processing unit (DPU) configuration settings. |
| execution | string | The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. |
| work | string | The workgroup to which the session belongs. |
engineConfiguration?
Type:
IResolvable | Engine
(optional)
Contains engine data processing unit (DPU) configuration settings.
executionRole?
Type:
string
(optional)
The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups.
workGroup?
Type:
string
(optional)
The workgroup to which the session belongs.

.NET
Go
Java
Python
TypeScript