You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT::Types::CustomCodeSigning

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CustomCodeSigning as input to an Aws::Client method, you can use a vanilla Hash:

{
  signature: {
    inline_document: "data",
  },
  certificate_chain: {
    certificate_name: "CertificateName",
    inline_document: "InlineDocument",
  },
  hash_algorithm: "HashAlgorithm",
  signature_algorithm: "SignatureAlgorithm",
}

Describes a custom method used to code sign a file.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_chainTypes::CodeSigningCertificateChain

The certificate chain.

Returns:

#hash_algorithmString

The hash algorithm used to code sign the file.

Returns:

  • (String)

    The hash algorithm used to code sign the file.

#signatureTypes::CodeSigningSignature

The signature for the file.

Returns:

#signature_algorithmString

The signature algorithm used to code sign the file.

Returns:

  • (String)

    The signature algorithm used to code sign the file.