org.mongodb.awscdk.resources.mongodbatlas.ApiDeleteCopiedBackupsView 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.866Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.ApiDeleteCopiedBackupsView")
@software.amazon.jsii.Jsii.Proxy(ApiDeleteCopiedBackupsView.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface ApiDeleteCopiedBackupsView extends software.amazon.jsii.JsiiSerializable {
/**
* A label that identifies the cloud provider for the deleted copy setting whose backup copies you want to delete.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getCloudProvider() {
return null;
}
/**
* Target region for the deleted copy setting whose backup copies you want to delete.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getRegionName() {
return null;
}
/**
* Unique 24-hexadecimal digit string that identifies the replication object for a zone in a cluster.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getReplicationSpecId() {
return null;
}
/**
* @return a {@link Builder} of {@link ApiDeleteCopiedBackupsView}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ApiDeleteCopiedBackupsView}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String cloudProvider;
java.lang.String regionName;
java.lang.String replicationSpecId;
/**
* Sets the value of {@link ApiDeleteCopiedBackupsView#getCloudProvider}
* @param cloudProvider A label that identifies the cloud provider for the deleted copy setting whose backup copies you want to delete.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder cloudProvider(java.lang.String cloudProvider) {
this.cloudProvider = cloudProvider;
return this;
}
/**
* Sets the value of {@link ApiDeleteCopiedBackupsView#getRegionName}
* @param regionName Target region for the deleted copy setting whose backup copies you want to delete.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder regionName(java.lang.String regionName) {
this.regionName = regionName;
return this;
}
/**
* Sets the value of {@link ApiDeleteCopiedBackupsView#getReplicationSpecId}
* @param replicationSpecId Unique 24-hexadecimal digit string that identifies the replication object for a zone in a cluster.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder replicationSpecId(java.lang.String replicationSpecId) {
this.replicationSpecId = replicationSpecId;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ApiDeleteCopiedBackupsView}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public ApiDeleteCopiedBackupsView build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ApiDeleteCopiedBackupsView}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ApiDeleteCopiedBackupsView {
private final java.lang.String cloudProvider;
private final java.lang.String regionName;
private final java.lang.String replicationSpecId;
/**
* 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.cloudProvider = software.amazon.jsii.Kernel.get(this, "cloudProvider", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.regionName = software.amazon.jsii.Kernel.get(this, "regionName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.replicationSpecId = software.amazon.jsii.Kernel.get(this, "replicationSpecId", 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.cloudProvider = builder.cloudProvider;
this.regionName = builder.regionName;
this.replicationSpecId = builder.replicationSpecId;
}
@Override
public final java.lang.String getCloudProvider() {
return this.cloudProvider;
}
@Override
public final java.lang.String getRegionName() {
return this.regionName;
}
@Override
public final java.lang.String getReplicationSpecId() {
return this.replicationSpecId;
}
@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.getCloudProvider() != null) {
data.set("cloudProvider", om.valueToTree(this.getCloudProvider()));
}
if (this.getRegionName() != null) {
data.set("regionName", om.valueToTree(this.getRegionName()));
}
if (this.getReplicationSpecId() != null) {
data.set("replicationSpecId", om.valueToTree(this.getReplicationSpecId()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("awscdk-resources-mongodbatlas.ApiDeleteCopiedBackupsView"));
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;
ApiDeleteCopiedBackupsView.Jsii$Proxy that = (ApiDeleteCopiedBackupsView.Jsii$Proxy) o;
if (this.cloudProvider != null ? !this.cloudProvider.equals(that.cloudProvider) : that.cloudProvider != null) return false;
if (this.regionName != null ? !this.regionName.equals(that.regionName) : that.regionName != null) return false;
return this.replicationSpecId != null ? this.replicationSpecId.equals(that.replicationSpecId) : that.replicationSpecId == null;
}
@Override
public final int hashCode() {
int result = this.cloudProvider != null ? this.cloudProvider.hashCode() : 0;
result = 31 * result + (this.regionName != null ? this.regionName.hashCode() : 0);
result = 31 * result + (this.replicationSpecId != null ? this.replicationSpecId.hashCode() : 0);
return result;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy