Class: Aws::IoT::Types::CodeSigningCertificateChain

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb

Overview

Describes the certificate chain being used when code signing a file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_nameString

The name of the certificate.

Returns:

  • (String)


2099
2100
2101
2102
2103
2104
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2099

class CodeSigningCertificateChain < Struct.new(
  :certificate_name,
  :inline_document)
  SENSITIVE = []
  include Aws::Structure
end

#inline_documentString

A base64 encoded binary representation of the code signing certificate chain.

Returns:

  • (String)


2099
2100
2101
2102
2103
2104
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2099

class CodeSigningCertificateChain < Struct.new(
  :certificate_name,
  :inline_document)
  SENSITIVE = []
  include Aws::Structure
end