Interface CfnLicense.IssuerDataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLicense.IssuerDataProperty.Jsii$Proxy
- Enclosing class:
- CfnLicense
@Stability(Stable)
public static interface CfnLicense.IssuerDataProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.licensemanager.*; IssuerDataProperty issuerDataProperty = IssuerDataProperty.builder() .name("name") // the properties below are optional .signKey("signKey") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLicense.IssuerDataProperty
static final class
An implementation forCfnLicense.IssuerDataProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Issuer name. -
getSignKey
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.
-
builder
-