org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicPrivateEndpointProps 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.873Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.AtlasBasicPrivateEndpointProps")
@software.amazon.jsii.Jsii.Proxy(AtlasBasicPrivateEndpointProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface AtlasBasicPrivateEndpointProps extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicProps getAtlasBasicProps();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull org.mongodb.awscdk.resources.mongodbatlas.PrivateEndpointProps getPrivateEndpointProps();
/**
* Default: us-east-1
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull java.lang.String getRegion();
/**
*/
@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 AtlasBasicPrivateEndpointProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link AtlasBasicPrivateEndpointProps}
*/
@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.AtlasBasicProps atlasBasicProps;
org.mongodb.awscdk.resources.mongodbatlas.PrivateEndpointProps privateEndpointProps;
java.lang.String region;
java.lang.String profile;
/**
* Sets the value of {@link AtlasBasicPrivateEndpointProps#getAtlasBasicProps}
* @param atlasBasicProps the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder atlasBasicProps(org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicProps atlasBasicProps) {
this.atlasBasicProps = atlasBasicProps;
return this;
}
/**
* Sets the value of {@link AtlasBasicPrivateEndpointProps#getPrivateEndpointProps}
* @param privateEndpointProps the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder privateEndpointProps(org.mongodb.awscdk.resources.mongodbatlas.PrivateEndpointProps privateEndpointProps) {
this.privateEndpointProps = privateEndpointProps;
return this;
}
/**
* Sets the value of {@link AtlasBasicPrivateEndpointProps#getRegion}
* @param region the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder region(java.lang.String region) {
this.region = region;
return this;
}
/**
* Sets the value of {@link AtlasBasicPrivateEndpointProps#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 AtlasBasicPrivateEndpointProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public AtlasBasicPrivateEndpointProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link AtlasBasicPrivateEndpointProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AtlasBasicPrivateEndpointProps {
private final org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicProps atlasBasicProps;
private final org.mongodb.awscdk.resources.mongodbatlas.PrivateEndpointProps privateEndpointProps;
private final java.lang.String region;
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.atlasBasicProps = software.amazon.jsii.Kernel.get(this, "atlasBasicProps", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicProps.class));
this.privateEndpointProps = software.amazon.jsii.Kernel.get(this, "privateEndpointProps", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.PrivateEndpointProps.class));
this.region = software.amazon.jsii.Kernel.get(this, "region", software.amazon.jsii.NativeType.forClass(java.lang.String.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.atlasBasicProps = java.util.Objects.requireNonNull(builder.atlasBasicProps, "atlasBasicProps is required");
this.privateEndpointProps = java.util.Objects.requireNonNull(builder.privateEndpointProps, "privateEndpointProps is required");
this.region = java.util.Objects.requireNonNull(builder.region, "region is required");
this.profile = builder.profile;
}
@Override
public final org.mongodb.awscdk.resources.mongodbatlas.AtlasBasicProps getAtlasBasicProps() {
return this.atlasBasicProps;
}
@Override
public final org.mongodb.awscdk.resources.mongodbatlas.PrivateEndpointProps getPrivateEndpointProps() {
return this.privateEndpointProps;
}
@Override
public final java.lang.String getRegion() {
return this.region;
}
@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("atlasBasicProps", om.valueToTree(this.getAtlasBasicProps()));
data.set("privateEndpointProps", om.valueToTree(this.getPrivateEndpointProps()));
data.set("region", om.valueToTree(this.getRegion()));
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.AtlasBasicPrivateEndpointProps"));
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;
AtlasBasicPrivateEndpointProps.Jsii$Proxy that = (AtlasBasicPrivateEndpointProps.Jsii$Proxy) o;
if (!atlasBasicProps.equals(that.atlasBasicProps)) return false;
if (!privateEndpointProps.equals(that.privateEndpointProps)) return false;
if (!region.equals(that.region)) return false;
return this.profile != null ? this.profile.equals(that.profile) : that.profile == null;
}
@Override
public final int hashCode() {
int result = this.atlasBasicProps.hashCode();
result = 31 * result + (this.privateEndpointProps.hashCode());
result = 31 * result + (this.region.hashCode());
result = 31 * result + (this.profile != null ? this.profile.hashCode() : 0);
return result;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy