com.pulumi.aws.licensemanager.outputs.GetReceivedLicenseIssuer Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.licensemanager.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetReceivedLicenseIssuer {
/**
* @return Issuer key fingerprint.
*
*/
private String keyFingerprint;
/**
* @return The key name.
*
*/
private String name;
/**
* @return 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.
*
*/
private String signKey;
private GetReceivedLicenseIssuer() {}
/**
* @return Issuer key fingerprint.
*
*/
public String keyFingerprint() {
return this.keyFingerprint;
}
/**
* @return The key name.
*
*/
public String name() {
return this.name;
}
/**
* @return 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.
*
*/
public String signKey() {
return this.signKey;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetReceivedLicenseIssuer defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String keyFingerprint;
private String name;
private String signKey;
public Builder() {}
public Builder(GetReceivedLicenseIssuer defaults) {
Objects.requireNonNull(defaults);
this.keyFingerprint = defaults.keyFingerprint;
this.name = defaults.name;
this.signKey = defaults.signKey;
}
@CustomType.Setter
public Builder keyFingerprint(String keyFingerprint) {
if (keyFingerprint == null) {
throw new MissingRequiredPropertyException("GetReceivedLicenseIssuer", "keyFingerprint");
}
this.keyFingerprint = keyFingerprint;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetReceivedLicenseIssuer", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder signKey(String signKey) {
if (signKey == null) {
throw new MissingRequiredPropertyException("GetReceivedLicenseIssuer", "signKey");
}
this.signKey = signKey;
return this;
}
public GetReceivedLicenseIssuer build() {
final var _resultValue = new GetReceivedLicenseIssuer();
_resultValue.keyFingerprint = keyFingerprint;
_resultValue.name = name;
_resultValue.signKey = signKey;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy