Class: Aws::Signer::Types::SigningPlatformOverrides

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#signing_configurationTypes::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_formatString

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.

Returns:

  • (String)


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