Class: Aws::Signer::Types::SigningPlatformOverrides
- Inherits:
-
Struct
- Object
- Struct
- Aws::Signer::Types::SigningPlatformOverrides
- Defined in:
- gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb
Overview
When making an API call, you may pass SigningPlatformOverrides data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
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.
1555 1556 1557 1558 1559 1560 |
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1555 class SigningPlatformOverrides < Struct.new( :signing_configuration, :signing_image_format) SENSITIVE = [] include Aws::Structure end |
#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.
1555 1556 1557 1558 1559 1560 |
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1555 class SigningPlatformOverrides < Struct.new( :signing_configuration, :signing_image_format) SENSITIVE = [] include Aws::Structure end |