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

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

2158
2159
2160
2161
2162
2163
# File 'lib/aws-sdk-iot/types.rb', line 2158

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)

2158
2159
2160
2161
2162
2163
# File 'lib/aws-sdk-iot/types.rb', line 2158

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