com.pulumi.aws.lakeformation.outputs.GetResourceResult 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.lakeformation.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetResourceResult {
private String arn;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
/**
* @return Date and time the resource was last modified in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
*
*/
private String lastModified;
/**
* @return Role that the resource was registered with.
*
*/
private String roleArn;
private GetResourceResult() {}
public String arn() {
return this.arn;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
/**
* @return Date and time the resource was last modified in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
*
*/
public String lastModified() {
return this.lastModified;
}
/**
* @return Role that the resource was registered with.
*
*/
public String roleArn() {
return this.roleArn;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetResourceResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String arn;
private String id;
private String lastModified;
private String roleArn;
public Builder() {}
public Builder(GetResourceResult defaults) {
Objects.requireNonNull(defaults);
this.arn = defaults.arn;
this.id = defaults.id;
this.lastModified = defaults.lastModified;
this.roleArn = defaults.roleArn;
}
@CustomType.Setter
public Builder arn(String arn) {
if (arn == null) {
throw new MissingRequiredPropertyException("GetResourceResult", "arn");
}
this.arn = arn;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetResourceResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder lastModified(String lastModified) {
if (lastModified == null) {
throw new MissingRequiredPropertyException("GetResourceResult", "lastModified");
}
this.lastModified = lastModified;
return this;
}
@CustomType.Setter
public Builder roleArn(String roleArn) {
if (roleArn == null) {
throw new MissingRequiredPropertyException("GetResourceResult", "roleArn");
}
this.roleArn = roleArn;
return this;
}
public GetResourceResult build() {
final var _resultValue = new GetResourceResult();
_resultValue.arn = arn;
_resultValue.id = id;
_resultValue.lastModified = lastModified;
_resultValue.roleArn = roleArn;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy