Class: Aws::Signer::Types::SigningConfigurationOverrides

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-signer/types.rb

Overview

A signing configuration that overrides the default encryption or hash algorithm of a signing job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_algorithmString

A specified override of the default encryption algorithm that is used in a code-signing job.

Returns:

  • (String)


1245
1246
1247
1248
1249
1250
# File 'lib/aws-sdk-signer/types.rb', line 1245

class SigningConfigurationOverrides < Struct.new(
  :encryption_algorithm,
  :hash_algorithm)
  SENSITIVE = []
  include Aws::Structure
end

#hash_algorithmString

A specified override of the default hash algorithm that is used in a code-signing job.

Returns:

  • (String)


1245
1246
1247
1248
1249
1250
# File 'lib/aws-sdk-signer/types.rb', line 1245

class SigningConfigurationOverrides < Struct.new(
  :encryption_algorithm,
  :hash_algorithm)
  SENSITIVE = []
  include Aws::Structure
end