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

Class: Aws::IoT::Types::CodeSigning

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

Overview

Note:

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

{
  aws_signer_job_id: "SigningJobId",
  start_signing_job_parameter: {
    signing_profile_parameter: {
      certificate_arn: "CertificateArn",
      platform: "Platform",
      certificate_path_on_device: "CertificatePathOnDevice",
    },
    signing_profile_name: "SigningProfileName",
    destination: {
      s3_destination: {
        bucket: "S3Bucket",
        prefix: "Prefix",
      },
    },
  },
  custom_code_signing: {
    signature: {
      inline_document: "data",
    },
    certificate_chain: {
      certificate_name: "CertificateName",
      inline_document: "InlineDocument",
    },
    hash_algorithm: "HashAlgorithm",
    signature_algorithm: "SignatureAlgorithm",
  },
}

Describes the method to use when code signing a file.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#aws_signer_job_idString

The ID of the AWSSignerJob which was created to sign the file.

Returns:

  • (String)

    The ID of the AWSSignerJob which was created to sign the file.

#custom_code_signingTypes::CustomCodeSigning

A custom method for code signing a file.

Returns:

#start_signing_job_parameterTypes::StartSigningJobParameter

Describes the code-signing job.

Returns: