interface IssuerDataProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.LicenseManager.CfnLicense.IssuerDataProperty | 
|  Java | software.amazon.awscdk.services.licensemanager.CfnLicense.IssuerDataProperty | 
|  Python | aws_cdk.aws_licensemanager.CfnLicense.IssuerDataProperty | 
|  TypeScript | @aws-cdk/aws-licensemanager»CfnLicense»IssuerDataProperty | 
Details associated with the issuer of a license.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as licensemanager from '@aws-cdk/aws-licensemanager';
const issuerDataProperty: licensemanager.CfnLicense.IssuerDataProperty = {
  name: 'name',
  // the properties below are optional
  signKey: 'signKey',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | Issuer name. | 
| sign | string | Asymmetric KMS key from AWS Key Management Service . | 
name
Type:
string
Issuer name.
signKey?
Type:
string
(optional)
Asymmetric KMS key from AWS Key Management Service .
The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
