Class CfnLicense.IssuerDataProperty
Details associated with the issuer of a license.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.LicenseManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLicense.IssuerDataProperty : CfnLicense.IIssuerDataProperty
Syntax (vb)
Public Class CfnLicense.IssuerDataProperty Implements CfnLicense.IIssuerDataProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LicenseManager;
var issuerDataProperty = new IssuerDataProperty {
Name = "name",
// the properties below are optional
SignKey = "signKey"
};
Synopsis
Constructors
| IssuerDataProperty() | Details associated with the issuer of a license. |
Properties
| Name | Issuer name. |
| SignKey | Asymmetric KMS key from AWS Key Management Service . |
Constructors
IssuerDataProperty()
Details associated with the issuer of a license.
public IssuerDataProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.LicenseManager;
var issuerDataProperty = new IssuerDataProperty {
Name = "name",
// the properties below are optional
SignKey = "signKey"
};
Properties
Name
Issuer name.
public string Name { get; set; }
Property Value
Remarks
SignKey
Asymmetric KMS key from AWS Key Management Service .
public string? SignKey { get; set; }
Property Value
Remarks
The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.