Class: Aws::Signer::Types::EncryptionAlgorithmOptions
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Signer::Types::EncryptionAlgorithmOptions
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-signer/types.rb
 
Overview
The encryption algorithm options that are available to a code-signing job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #allowed_values  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The set of accepted encryption algorithms that are allowed in a code-signing job.
 - 
  
    
      #default_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default encryption algorithm that is used by a code-signing job.
 
Instance Attribute Details
#allowed_values ⇒ Array<String>
The set of accepted encryption algorithms that are allowed in a code-signing job.
      300 301 302 303 304 305  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 300 class EncryptionAlgorithmOptions < Struct.new( :allowed_values, :default_value) SENSITIVE = [] include Aws::Structure end  | 
  
#default_value ⇒ String
The default encryption algorithm that is used by a code-signing job.
      300 301 302 303 304 305  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 300 class EncryptionAlgorithmOptions < Struct.new( :allowed_values, :default_value) SENSITIVE = [] include Aws::Structure end  |