interface IssuerDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LicenseManager.CfnLicensePropsMixin.IssuerDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslicensemanager#CfnLicensePropsMixin_IssuerDataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.licensemanager.CfnLicensePropsMixin.IssuerDataProperty |
Python | aws_cdk.cfn_property_mixins.aws_licensemanager.CfnLicensePropsMixin.IssuerDataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_licensemanager » CfnLicensePropsMixin » 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 { aws_licensemanager as licensemanager } from '@aws-cdk/cfn-property-mixins';
const issuerDataProperty: licensemanager.CfnLicensePropsMixin.IssuerDataProperty = {
name: 'name',
signKey: 'signKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Issuer name. |
| sign | string | Asymmetric KMS key from AWS Key Management Service . |
name?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript