Class: Aws::Glue::Types::AllowedValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb

Overview

An object representing a value allowed for a property.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of the allowed value.

Returns:

  • (String)


156
157
158
159
160
161
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 156

class AllowedValue < Struct.new(
  :description,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value allowed for the property.

Returns:

  • (String)


156
157
158
159
160
161
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 156

class AllowedValue < Struct.new(
  :description,
  :value)
  SENSITIVE = []
  include Aws::Structure
end