Class: Aws::Signer::Types::EncryptionAlgorithmOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-signer/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

Instance Attribute Details

#allowed_valuesArray<String>

The set of accepted encryption algorithms that are allowed in a code-signing job.

Returns:

  • (Array<String>)


281
282
283
284
285
286
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 281

class EncryptionAlgorithmOptions < Struct.new(
  :allowed_values,
  :default_value)
  SENSITIVE = []
  include Aws::Structure
end

#default_valueString

The default encryption algorithm that is used by a code-signing job.

Returns:

  • (String)


281
282
283
284
285
286
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 281

class EncryptionAlgorithmOptions < Struct.new(
  :allowed_values,
  :default_value)
  SENSITIVE = []
  include Aws::Structure
end