Class: Aws::LicenseManager::Types::IssuerDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::IssuerDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-licensemanager/types.rb
Overview
Details associated with the issuer of a license.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_fingerprint ⇒ String
Issuer key fingerprint.
-
#name ⇒ String
Issuer name.
-
#sign_key ⇒ String
Asymmetric KMS key from Key Management Service.
Instance Attribute Details
#key_fingerprint ⇒ String
Issuer key fingerprint.
1876 1877 1878 1879 1880 1881 1882 |
# File 'lib/aws-sdk-licensemanager/types.rb', line 1876 class IssuerDetails < Struct.new( :name, :sign_key, :key_fingerprint) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Issuer name.
1876 1877 1878 1879 1880 1881 1882 |
# File 'lib/aws-sdk-licensemanager/types.rb', line 1876 class IssuerDetails < Struct.new( :name, :sign_key, :key_fingerprint) SENSITIVE = [] include Aws::Structure end |
#sign_key ⇒ String
Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
1876 1877 1878 1879 1880 1881 1882 |
# File 'lib/aws-sdk-licensemanager/types.rb', line 1876 class IssuerDetails < Struct.new( :name, :sign_key, :key_fingerprint) SENSITIVE = [] include Aws::Structure end |