Class: Aws::Glue::Types::CreateDataQualityRulesetRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::CreateDataQualityRulesetRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource. 
- 
  
    
      #data_quality_security_configuration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the security configuration created with the data quality encryption option. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A description of the data quality ruleset. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique name for the data quality ruleset. 
- 
  
    
      #ruleset  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A Data Quality Definition Language (DQDL) ruleset. 
- 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of tags applied to the data quality ruleset. 
- 
  
    
      #target_table  ⇒ Types::DataQualityTargetTable 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A target table associated with the data quality ruleset. 
Instance Attribute Details
#client_token ⇒ String
Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end | 
#data_quality_security_configuration ⇒ String
The name of the security configuration created with the data quality encryption option.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end | 
#description ⇒ String
A description of the data quality ruleset.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
A unique name for the data quality ruleset.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end | 
#ruleset ⇒ String
A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Hash<String,String>
A list of tags applied to the data quality ruleset.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end | 
#target_table ⇒ Types::DataQualityTargetTable
A target table associated with the data quality ruleset.
| 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 | # File 'lib/aws-sdk-glue/types.rb', line 5238 class CreateDataQualityRulesetRequest < Struct.new( :name, :description, :ruleset, :tags, :target_table, :data_quality_security_configuration, :client_token) SENSITIVE = [] include Aws::Structure end |