Class: Aws::Athena::Types::Classification

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-athena/types.rb

Overview

A classification refers to a set of specific configurations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the configuration classification.

Returns:

  • (String)


499
500
501
502
503
504
# File 'lib/aws-sdk-athena/types.rb', line 499

class Classification < Struct.new(
  :name,
  :properties)
  SENSITIVE = []
  include Aws::Structure
end

#propertiesHash<String,String>

A set of properties specified within a configuration classification.

Returns:

  • (Hash<String,String>)


499
500
501
502
503
504
# File 'lib/aws-sdk-athena/types.rb', line 499

class Classification < Struct.new(
  :name,
  :properties)
  SENSITIVE = []
  include Aws::Structure
end