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
Any overrides that are applied to the signing configuration of a 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.
1488 1489 1490 1491 1492 1493 |
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1488 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.
1488 1489 1490 1491 1492 1493 |
# File 'gems/aws-sdk-signer/lib/aws-sdk-signer/types.rb', line 1488 class SigningPlatformOverrides < Struct.new( :signing_configuration, :signing_image_format) SENSITIVE = [] include Aws::Structure end |