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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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.



1469
1470
1471
1472
1473
1474
# File 'lib/aws-sdk-signer/types.rb', line 1469

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)


1469
1470
1471
1472
1473
1474
# File 'lib/aws-sdk-signer/types.rb', line 1469

class SigningPlatformOverrides < Struct.new(
  :signing_configuration,
  :signing_image_format)
  SENSITIVE = []
  include Aws::Structure
end