You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SigningConfigurationOverrides as input to an Aws::Client method, you can use a vanilla Hash:

{
  encryption_algorithm: "RSA", # accepts RSA, ECDSA
  hash_algorithm: "SHA1", # accepts SHA1, SHA256
}

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

Returned by:

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.

Possible values:

  • RSA
  • ECDSA

Returns:

  • (String)

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

#hash_algorithmString

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

Possible values:

  • SHA1
  • SHA256

Returns:

  • (String)

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