Class: Aws::Glue::Types::ConfigurationObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ConfigurationObject
- Defined in:
- gems/aws-sdk-glue/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.
3595 3596 3597 3598 3599 3600 3601 3602 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3595 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.
3595 3596 3597 3598 3599 3600 3601 3602 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3595 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.
3595 3596 3597 3598 3599 3600 3601 3602 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3595 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.
3595 3596 3597 3598 3599 3600 3601 3602 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3595 class ConfigurationObject < Struct.new( :default_value, :allowed_values, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |