Class: Aws::Glue::Types::ConfigurationObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ConfigurationObject
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies the values that an admin sets for each job or session parameter configured in a Glue usage profile.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_values ⇒ Array<String>
A list of allowed values for the parameter.
-
#default_value ⇒ String
A default value for the parameter.
-
#max_value ⇒ String
A maximum allowed value for the parameter.
-
#min_value ⇒ String
A minimum allowed value for the parameter.
Instance Attribute Details
#allowed_values ⇒ Array<String>
A list of allowed values for the parameter.
3200 3201 3202 3203 3204 3205 3206 3207 |
# File 'lib/aws-sdk-glue/types.rb', line 3200 class ConfigurationObject < Struct.new( :default_value, :allowed_values, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#default_value ⇒ String
A default value for the parameter.
3200 3201 3202 3203 3204 3205 3206 3207 |
# File 'lib/aws-sdk-glue/types.rb', line 3200 class ConfigurationObject < Struct.new( :default_value, :allowed_values, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#max_value ⇒ String
A maximum allowed value for the parameter.
3200 3201 3202 3203 3204 3205 3206 3207 |
# File 'lib/aws-sdk-glue/types.rb', line 3200 class ConfigurationObject < Struct.new( :default_value, :allowed_values, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
A minimum allowed value for the parameter.
3200 3201 3202 3203 3204 3205 3206 3207 |
# File 'lib/aws-sdk-glue/types.rb', line 3200 class ConfigurationObject < Struct.new( :default_value, :allowed_values, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |