interface IssuerDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LicenseManager.Mixins.CfnLicensePropsMixin.IssuerDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslicensemanager/mixins#CfnLicensePropsMixin_IssuerDataProperty |
Java | software.amazon.awscdk.mixins.preview.services.licensemanager.mixins.CfnLicensePropsMixin.IssuerDataProperty |
Python | aws_cdk.mixins_preview.aws_licensemanager.mixins.CfnLicensePropsMixin.IssuerDataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_licensemanager » mixins » 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 { mixins as licensemanager_mixins } from '@aws-cdk/mixins-preview/aws-licensemanager';
const issuerDataProperty: licensemanager_mixins.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