interface ClassificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnWorkGroupPropsMixin.ClassificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnWorkGroupPropsMixin_ClassificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnWorkGroupPropsMixin.ClassificationProperty |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnWorkGroupPropsMixin.ClassificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » CfnWorkGroupPropsMixin » 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 { mixins as athena_mixins } from '@aws-cdk/mixins-preview/aws-athena';
const classificationProperty: athena_mixins.CfnWorkGroupPropsMixin.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