Class: Aws::Glue::Types::Option
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Option
- Defined in:
- gems/aws-sdk-glue/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.
19824 19825 19826 19827 19828 19829 19830 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19824 class Option < Struct.new( :value, :label, :description) SENSITIVE = [] include Aws::Structure end |