Class: Aws::Glue::Types::TransformConfigParameter
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::TransformConfigParameter
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies the parameters in the config file of the dynamic transform.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #is_optional  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies whether the parameter is optional or not in the config file of the dynamic transform. 
- 
  
    
      #list_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the list type of the parameter in the config file of the dynamic transform. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the name of the parameter in the config file of the dynamic transform. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the parameter type in the config file of the dynamic transform. 
- 
  
    
      #validation_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the validation message in the config file of the dynamic transform. 
- 
  
    
      #validation_rule  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the validation rule in the config file of the dynamic transform. 
- 
  
    
      #value  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the value of the parameter in the config file of the dynamic transform. 
Instance Attribute Details
#is_optional ⇒ Boolean
Specifies whether the parameter is optional or not in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end | 
#list_type ⇒ String
Specifies the list type of the parameter in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
Specifies the name of the parameter in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
Specifies the parameter type in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end | 
#validation_message ⇒ String
Specifies the validation message in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end | 
#validation_rule ⇒ String
Specifies the validation rule in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end | 
#value ⇒ Array<String>
Specifies the value of the parameter in the config file of the dynamic transform.
| 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 | # File 'lib/aws-sdk-glue/types.rb', line 25955 class TransformConfigParameter < Struct.new( :name, :type, :validation_rule, :validation_message, :value, :list_type, :is_optional) SENSITIVE = [] include Aws::Structure end |