org.mongodb.awscdk.resources.mongodbatlas.Link Maven / Gradle / Ivy
Show all versions of awscdk-resources-mongodbatlas Show documentation
package org.mongodb.awscdk.resources.mongodbatlas;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.101.0 (build b95fe5d)", date = "2024-07-30T09:54:29.025Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.Link")
@software.amazon.jsii.Jsii.Proxy(Link.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface Link extends software.amazon.jsii.JsiiSerializable {
/**
* Uniform Resource Locator (URL) that points another API resource to which this response has some relationship.
*
* This URL often begins with https://mms.mongodb.com
.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getHref() {
return null;
}
/**
* Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource.
*
* This URL often begins with https://mms.mongodb.com
.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getRel() {
return null;
}
/**
* @return a {@link Builder} of {@link Link}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link Link}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String href;
java.lang.String rel;
/**
* Sets the value of {@link Link#getHref}
* @param href Uniform Resource Locator (URL) that points another API resource to which this response has some relationship.
* This URL often begins with https://mms.mongodb.com
.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder href(java.lang.String href) {
this.href = href;
return this;
}
/**
* Sets the value of {@link Link#getRel}
* @param rel Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource.
* This URL often begins with https://mms.mongodb.com
.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder rel(java.lang.String rel) {
this.rel = rel;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link Link}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public Link build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link Link}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements Link {
private final java.lang.String href;
private final java.lang.String rel;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.href = software.amazon.jsii.Kernel.get(this, "href", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.rel = software.amazon.jsii.Kernel.get(this, "rel", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.href = builder.href;
this.rel = builder.rel;
}
@Override
public final java.lang.String getHref() {
return this.href;
}
@Override
public final java.lang.String getRel() {
return this.rel;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getHref() != null) {
data.set("href", om.valueToTree(this.getHref()));
}
if (this.getRel() != null) {
data.set("rel", om.valueToTree(this.getRel()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("awscdk-resources-mongodbatlas.Link"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Link.Jsii$Proxy that = (Link.Jsii$Proxy) o;
if (this.href != null ? !this.href.equals(that.href) : that.href != null) return false;
return this.rel != null ? this.rel.equals(that.rel) : that.rel == null;
}
@Override
public final int hashCode() {
int result = this.href != null ? this.href.hashCode() : 0;
result = 31 * result + (this.rel != null ? this.rel.hashCode() : 0);
return result;
}
}
}