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