Class: Aws::LicenseManager::Types::Issuer
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::Issuer
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
Note:
When making an API call, you may pass Issuer data as a hash:
{
name: "String", # required
sign_key: "String",
}
Details about the issuer of a license.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Issuer name.
-
#sign_key ⇒ String
Asymmetric KMS key from Key Management Service.
Instance Attribute Details
#name ⇒ String
Issuer name.
2250 2251 2252 2253 2254 2255 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2250 class Issuer < Struct.new( :name, :sign_key) 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.
2250 2251 2252 2253 2254 2255 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 2250 class Issuer < Struct.new( :name, :sign_key) SENSITIVE = [] include Aws::Structure end |