Class: Aws::Glue::Types::Option
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Option
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies an option value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
Specifies the description of the option.
-
#label ⇒ String
Specifies the label of the option.
-
#value ⇒ String
Specifies the value of the option.
Instance Attribute Details
#description ⇒ String
Specifies the description of the option.
17660 17661 17662 17663 17664 17665 17666 |
# File 'lib/aws-sdk-glue/types.rb', line 17660 class Option < Struct.new( :value, :label, :description) SENSITIVE = [] include Aws::Structure end |