Class: Aws::IoT::Types::CodeSigningSignature
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::CodeSigningSignature
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass CodeSigningSignature data as a hash:
{
inline_document: "data",
}
Describes the signature for a file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#inline_document ⇒ String
A base64 encoded binary representation of the code signing signature.
Instance Attribute Details
#inline_document ⇒ String
A base64 encoded binary representation of the code signing signature.
2725 2726 2727 2728 2729 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 2725 class CodeSigningSignature < Struct.new( :inline_document) SENSITIVE = [] include Aws::Structure end |