org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of awscdk-resources-mongodbatlas Show documentation
Show all versions of awscdk-resources-mongodbatlas Show documentation
MongoDB Atlas CDK Construct Library for AWS CloudFormation Resources
package org.mongodb.awscdk.resources.mongodbatlas;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.101.0 (build b95fe5d)", date = "2024-07-30T09:54:28.874Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.AtlasBasicProps")
@software.amazon.jsii.Jsii.Proxy(AtlasBasicProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface AtlasBasicProps extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull org.mongodb.awscdk.resources.mongodbatlas.ClusterProps getClusterProps();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull org.mongodb.awscdk.resources.mongodbatlas.IpAccessListProps getIpAccessListProps();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull org.mongodb.awscdk.resources.mongodbatlas.ProjectProps getProjectProps();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.mongodb.awscdk.resources.mongodbatlas.DatabaseUserProps getDbUserProps() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getProfile() {
return null;
}
/**
* @return a {@link Builder} of {@link AtlasBasicProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link AtlasBasicProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
org.mongodb.awscdk.resources.mongodbatlas.ClusterProps clusterProps;
org.mongodb.awscdk.resources.mongodbatlas.IpAccessListProps ipAccessListProps;
org.mongodb.awscdk.resources.mongodbatlas.ProjectProps projectProps;
org.mongodb.awscdk.resources.mongodbatlas.DatabaseUserProps dbUserProps;
java.lang.String profile;
/**
* Sets the value of {@link AtlasBasicProps#getClusterProps}
* @param clusterProps the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder clusterProps(org.mongodb.awscdk.resources.mongodbatlas.ClusterProps clusterProps) {
this.clusterProps = clusterProps;
return this;
}
/**
* Sets the value of {@link AtlasBasicProps#getIpAccessListProps}
* @param ipAccessListProps the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder ipAccessListProps(org.mongodb.awscdk.resources.mongodbatlas.IpAccessListProps ipAccessListProps) {
this.ipAccessListProps = ipAccessListProps;
return this;
}
/**
* Sets the value of {@link AtlasBasicProps#getProjectProps}
* @param projectProps the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder projectProps(org.mongodb.awscdk.resources.mongodbatlas.ProjectProps projectProps) {
this.projectProps = projectProps;
return this;
}
/**
* Sets the value of {@link AtlasBasicProps#getDbUserProps}
* @param dbUserProps the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder dbUserProps(org.mongodb.awscdk.resources.mongodbatlas.DatabaseUserProps dbUserProps) {
this.dbUserProps = dbUserProps;
return this;
}
/**
* Sets the value of {@link AtlasBasicProps#getProfile}
* @param profile the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder profile(java.lang.String profile) {
this.profile = profile;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link AtlasBasicProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public AtlasBasicProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link AtlasBasicProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AtlasBasicProps {
private final org.mongodb.awscdk.resources.mongodbatlas.ClusterProps clusterProps;
private final org.mongodb.awscdk.resources.mongodbatlas.IpAccessListProps ipAccessListProps;
private final org.mongodb.awscdk.resources.mongodbatlas.ProjectProps projectProps;
private final org.mongodb.awscdk.resources.mongodbatlas.DatabaseUserProps dbUserProps;
private final java.lang.String profile;
/**
* 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.clusterProps = software.amazon.jsii.Kernel.get(this, "clusterProps", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.ClusterProps.class));
this.ipAccessListProps = software.amazon.jsii.Kernel.get(this, "ipAccessListProps", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.IpAccessListProps.class));
this.projectProps = software.amazon.jsii.Kernel.get(this, "projectProps", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.ProjectProps.class));
this.dbUserProps = software.amazon.jsii.Kernel.get(this, "dbUserProps", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.DatabaseUserProps.class));
this.profile = software.amazon.jsii.Kernel.get(this, "profile", 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.clusterProps = java.util.Objects.requireNonNull(builder.clusterProps, "clusterProps is required");
this.ipAccessListProps = java.util.Objects.requireNonNull(builder.ipAccessListProps, "ipAccessListProps is required");
this.projectProps = java.util.Objects.requireNonNull(builder.projectProps, "projectProps is required");
this.dbUserProps = builder.dbUserProps;
this.profile = builder.profile;
}
@Override
public final org.mongodb.awscdk.resources.mongodbatlas.ClusterProps getClusterProps() {
return this.clusterProps;
}
@Override
public final org.mongodb.awscdk.resources.mongodbatlas.IpAccessListProps getIpAccessListProps() {
return this.ipAccessListProps;
}
@Override
public final org.mongodb.awscdk.resources.mongodbatlas.ProjectProps getProjectProps() {
return this.projectProps;
}
@Override
public final org.mongodb.awscdk.resources.mongodbatlas.DatabaseUserProps getDbUserProps() {
return this.dbUserProps;
}
@Override
public final java.lang.String getProfile() {
return this.profile;
}
@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();
data.set("clusterProps", om.valueToTree(this.getClusterProps()));
data.set("ipAccessListProps", om.valueToTree(this.getIpAccessListProps()));
data.set("projectProps", om.valueToTree(this.getProjectProps()));
if (this.getDbUserProps() != null) {
data.set("dbUserProps", om.valueToTree(this.getDbUserProps()));
}
if (this.getProfile() != null) {
data.set("profile", om.valueToTree(this.getProfile()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("awscdk-resources-mongodbatlas.AtlasBasicProps"));
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;
AtlasBasicProps.Jsii$Proxy that = (AtlasBasicProps.Jsii$Proxy) o;
if (!clusterProps.equals(that.clusterProps)) return false;
if (!ipAccessListProps.equals(that.ipAccessListProps)) return false;
if (!projectProps.equals(that.projectProps)) return false;
if (this.dbUserProps != null ? !this.dbUserProps.equals(that.dbUserProps) : that.dbUserProps != null) return false;
return this.profile != null ? this.profile.equals(that.profile) : that.profile == null;
}
@Override
public final int hashCode() {
int result = this.clusterProps.hashCode();
result = 31 * result + (this.ipAccessListProps.hashCode());
result = 31 * result + (this.projectProps.hashCode());
result = 31 * result + (this.dbUserProps != null ? this.dbUserProps.hashCode() : 0);
result = 31 * result + (this.profile != null ? this.profile.hashCode() : 0);
return result;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy