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.
17502 17503 17504 17505 17506 17507 17508 |
# File 'lib/aws-sdk-glue/types.rb', line 17502 class Option < Struct.new( :value, :label, :description) SENSITIVE = [] include Aws::Structure end |