You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Signer::Types::SigningPlatformOverrides
- Inherits:
-
Struct
- Object
- Struct
- Aws::Signer::Types::SigningPlatformOverrides
- Defined in:
- (unknown)
Overview
When passing SigningPlatformOverrides as input to an Aws::Client method, you can use a vanilla Hash:
{
signing_configuration: {
encryption_algorithm: "RSA", # accepts RSA, ECDSA
hash_algorithm: "SHA1", # accepts SHA1, SHA256
},
signing_image_format: "JSON", # accepts JSON, JSONEmbedded, JSONDetached
}
Any overrides that are applied to the signing configuration of a code signing platform.
Returned by:
Instance Attribute Summary collapse
-
#signing_configuration ⇒ Types::SigningConfigurationOverrides
A signing configuration that overrides the default encryption or hash algorithm of a signing job.
-
#signing_image_format ⇒ String
A signed image is a JSON object.
Instance Attribute Details
#signing_configuration ⇒ Types::SigningConfigurationOverrides
A signing configuration that overrides the default encryption or hash algorithm of a signing job.
#signing_image_format ⇒ String
A signed image is a JSON object. When overriding the default signing
platform configuration, a customer can select either of two signing
formats, JSONEmbedded or JSONDetached. (A third format value,
JSON, is reserved for future use.) With JSONEmbedded, the signing
image has the payload embedded in it. With JSONDetached, the payload
is not be embedded in the signing image.
Possible values:
- JSON
- JSONEmbedded
- JSONDetached