interface ClassificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Athena.CfnWorkGroup.ClassificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsathena#CfnWorkGroup_ClassificationProperty |
Java | software.amazon.awscdk.services.athena.CfnWorkGroup.ClassificationProperty |
Python | aws_cdk.aws_athena.CfnWorkGroup.ClassificationProperty |
TypeScript | aws-cdk-lib » aws_athena » CfnWorkGroup » ClassificationProperty |
A classification refers to a set of specific configurations.
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-lib';
const classificationProperty: athena.CfnWorkGroup.ClassificationProperty = {
name: 'name',
properties: {
propertiesKey: 'properties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the configuration classification. |
| properties? | { [string]: string } | IResolvable | A set of properties specified within a configuration classification. |
name?
Type:
string
(optional)
The name of the configuration classification.
properties?
Type:
{ [string]: string } | IResolvable
(optional)
A set of properties specified within a configuration classification.

.NET
Go
Java
Python
TypeScript