com.pulumi.aws.licensemanager.inputs.GetReceivedLicensePlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetReceivedLicensePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetReceivedLicensePlainArgs Empty = new GetReceivedLicensePlainArgs();
/**
* The ARN of the received license you want data for.
*
*/
@Import(name="licenseArn", required=true)
private String licenseArn;
/**
* @return The ARN of the received license you want data for.
*
*/
public String licenseArn() {
return this.licenseArn;
}
private GetReceivedLicensePlainArgs() {}
private GetReceivedLicensePlainArgs(GetReceivedLicensePlainArgs $) {
this.licenseArn = $.licenseArn;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetReceivedLicensePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetReceivedLicensePlainArgs $;
public Builder() {
$ = new GetReceivedLicensePlainArgs();
}
public Builder(GetReceivedLicensePlainArgs defaults) {
$ = new GetReceivedLicensePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param licenseArn The ARN of the received license you want data for.
*
* @return builder
*
*/
public Builder licenseArn(String licenseArn) {
$.licenseArn = licenseArn;
return this;
}
public GetReceivedLicensePlainArgs build() {
if ($.licenseArn == null) {
throw new MissingRequiredPropertyException("GetReceivedLicensePlainArgs", "licenseArn");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy