@Stability(value=Stable)
public static interface CfnLicense.IssuerDataProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLicense.IssuerDataProperty.Builder
A builder for
CfnLicense.IssuerDataProperty |
static class |
CfnLicense.IssuerDataProperty.Jsii$Proxy
An implementation for
CfnLicense.IssuerDataProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLicense.IssuerDataProperty.Builder |
builder() |
String |
getName()
Issuer name.
|
default String |
getSignKey()
Asymmetric KMS key from AWS Key Management Service .
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getSignKey()
The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
@Stability(value=Stable) static CfnLicense.IssuerDataProperty.Builder builder()
Copyright © 2022. All rights reserved.